libSBML C# API  5.18.0
printAnnotation.cs

Prints the annotation strings for each element in a given model.

/**
* @file printAnnotation.cpp
* @brief Prints annotation strings for each element
* @author Akiya Jouraku
*
* <!--------------------------------------------------------------------------
* This sample program is distributed under a different license than the rest
* of libSBML. This program uses the open-source MIT license, as follows:
*
* Copyright (c) 2013-2018 by the California Institute of Technology
* (California, USA), the European Bioinformatics Institute (EMBL-EBI, UK)
* and the University of Heidelberg (Germany), with support from the National
* Institutes of Health (USA) under grant R01GM070923. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Neither the name of the California Institute of Technology (Caltech), nor
* of the European Bioinformatics Institute (EMBL-EBI), nor of the University
* of Heidelberg, nor the names of any contributors, may be used to endorse
* or promote products derived from this software without specific prior
* written permission.
* ------------------------------------------------------------------------ -->
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using libsbmlcs;
public class PrintAnnotation
{
private static void printAnnotation(SBase sb)
{
string id = "";
if (sb.isSetId())
{
id = sb.getId();
}
printAnnotation(sb, id);
}
private static void printAnnotation(SBase sb, string id)
{
if (!sb.isSetAnnotation()) return;
Console.Write("----- " + sb.getElementName() + " (" + id
+ ") annotation -----" + Environment.NewLine);
Console.Write(sb.getAnnotationString() + Environment.NewLine);
Console.Write(Environment.NewLine);
}
public static int Main(string[] args)
{
if (args.Length != 1)
{
Console.Write(Environment.NewLine + "Usage: printAnnotation filename" + Environment.NewLine + Environment.NewLine);
return 1;
}
int i, j;
string filename = args[0];
SBMLDocument document;
document = libsbml.readSBML(filename);
int errors = (int)document.getNumErrors();
Console.Write(Environment.NewLine);
Console.Write("filename: " + filename + Environment.NewLine);
Console.Write(Environment.NewLine);
if (errors > 0)
{
document.printErrors();
return errors;
}
/* Model */
Model m = document.getModel();
printAnnotation(m);
for (i = 0; i < m.getNumReactions(); i++)
{
Reaction re = m.getReaction(i);
printAnnotation(re);
/* SpeciesReference (Reacatant) */
for (j = 0; j < re.getNumReactants(); j++)
{
SpeciesReference rt = re.getReactant(j);
if (rt.isSetAnnotation()) Console.Write(" ");
printAnnotation(rt, (rt.isSetSpecies() ? rt.getSpecies() : ""));
}
/* SpeciesReference (Product) */
for (j = 0; j < re.getNumProducts(); j++)
{
SpeciesReference rt = re.getProduct(j);
if (rt.isSetAnnotation()) Console.Write(" ");
printAnnotation(rt, (rt.isSetSpecies() ? rt.getSpecies() : ""));
}
/* ModifierSpeciesReference (Modifiers) */
for (j = 0; j < re.getNumModifiers(); j++)
{
ModifierSpeciesReference md = re.getModifier(j);
if (md.isSetAnnotation()) Console.Write(" ");
printAnnotation(md, (md.isSetSpecies() ? md.getSpecies() : ""));
}
/* KineticLaw */
if (re.isSetKineticLaw())
{
KineticLaw kl = re.getKineticLaw();
if (kl.isSetAnnotation()) Console.Write(" ");
printAnnotation(kl);
/* Parameter */
for (j = 0; j < kl.getNumParameters(); j++)
{
Parameter pa = kl.getParameter(j);
if (pa.isSetAnnotation()) Console.Write(" ");
printAnnotation(pa);
}
}
}
/* Species */
for (i = 0; i < m.getNumSpecies(); i++)
{
Species sp = m.getSpecies(i);
printAnnotation(sp);
}
/* Compartments */
for (i = 0; i < m.getNumCompartments(); i++)
{
Compartment sp = m.getCompartment(i);
printAnnotation(sp);
}
/* FunctionDefinition */
for (i = 0; i < m.getNumFunctionDefinitions(); i++)
{
FunctionDefinition sp = m.getFunctionDefinition(i);
printAnnotation(sp);
}
/* UnitDefinition */
for (i = 0; i < m.getNumUnitDefinitions(); i++)
{
UnitDefinition sp = m.getUnitDefinition(i);
printAnnotation(sp);
}
/* Parameter */
for (i = 0; i < m.getNumParameters(); i++)
{
Parameter sp = m.getParameter(i);
printAnnotation(sp);
}
/* Rule */
for (i = 0; i < m.getNumRules(); i++)
{
Rule sp = m.getRule(i);
printAnnotation(sp);
}
/* InitialAssignment */
for (i = 0; i < m.getNumInitialAssignments(); i++)
{
InitialAssignment sp = m.getInitialAssignment(i);
printAnnotation(sp);
}
/* Event */
for (i = 0; i < m.getNumEvents(); i++)
{
Event sp = m.getEvent(i);
printAnnotation(sp);
/* Trigger */
if (sp.isSetTrigger())
{
Trigger tg = sp.getTrigger();
if (tg.isSetAnnotation()) Console.Write(" ");
printAnnotation(tg);
}
/* Delay */
if (sp.isSetDelay())
{
Delay dl = sp.getDelay();
if (dl.isSetAnnotation()) Console.Write(" ");
printAnnotation(dl);
}
/* EventAssignment */
for (j = 0; j < sp.getNumEventAssignments(); j++)
{
EventAssignment ea = sp.getEventAssignment(j);
if (ea.isSetAnnotation()) Console.Write(" ");
printAnnotation(ea);
}
}
/* SpeciesType */
for (i = 0; i < m.getNumSpeciesTypes(); i++)
{
SpeciesType sp = m.getSpeciesType(i);
printAnnotation(sp);
}
/* Constraints */
for (i = 0; i < m.getNumConstraints(); i++)
{
Constraint sp = m.getConstraint(i);
printAnnotation(sp);
}
return errors;
}
}