Adds controlled vocabulary terms to a reaction in a model.
#include <iostream>
using namespace std;
LIBSBML_CPP_NAMESPACE_USE
int
main (int argc, char *argv[])
{
unsigned int errors, n;
if (argc != 3)
{
cout << endl
<< " usage: addingEvidenceCodes_1 <input-filename> <output-filename>" << endl
<< " Adds controlled vocabulary term to a reaction" << endl
<< endl;
return 2;
}
if (errors > 0)
{
cout << "Read Error(s):" << endl;
cout << "Correct the above and re-run." << endl;
}
else
{
if (n <= 0)
{
cout << "Model has no reactions.\n Cannot add CV terms\n";
}
else
{
delete cv1;
delete cv2;
}
}
delete d;
return errors;
}
Definition of a CVTerm class for adding annotations to a Model.
@ BQB_IS
Definition: CVTerm.h:402
@ BQB_IS_DESCRIBED_BY
Definition: CVTerm.h:429
@ BIOLOGICAL_QUALIFIER
Definition: CVTerm.h:332
SBMLDocument_t * readSBML(const char *filename)
Reads an SBML document from the given file.
Include all SBML types in a single header file.
int writeSBML(const SBMLDocument_t *d, const char *filename)
Writes the given SBML document d to the file named by filename.
int setBiologicalQualifierType(BiolQualifierType_t type)
Sets the BiolQualifierType_t value of this CVTerm object.
Definition: CVTerm.cpp:301
int addResource(const std::string &resource)
Adds a resource reference to this CVTerm object.
Definition: CVTerm.cpp:452
const Reaction * getReaction(unsigned int n) const
Get the nth Reaction object in this Model.
Definition: Model.cpp:2925
unsigned int getNumReactions() const
Get the number of Reaction objects in this Model.
Definition: Model.cpp:3192
Definition: Reaction.h:224
Definition: SBMLDocument.h:349
unsigned int getNumErrors() const
Returns the number of errors or warnings encountered during parsing, consistency checking,...
Definition: SBMLDocument.cpp:1163
void printErrors(std::ostream &stream=std::cerr) const
Prints all the errors or warnings encountered trying to parse, check, or translate this SBML document...
Definition: SBMLDocument.cpp:1186
const Model * getModel() const
Returns the Model object stored in this SBMLDocument.
Definition: SBMLDocument.cpp:350
int setMetaId(const std::string &metaid)
Sets the value of the meta-identifier attribute of this SBML object.
Definition: SBase.cpp:1199
bool isSetMetaId() const
Predicate returning true if this object's "metaid" attribute is set.
Definition: SBase.cpp:1099
int addCVTerm(CVTerm *term, bool newBag=false)
Adds a copy of the given CVTerm object to this SBML object.
Definition: SBase.cpp:2805