Adds evidence codes to a species 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_2 <input-filename> <output-filename>" << endl
<< " Adds controlled vocabulary term to a species" << 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 species.\n Cannot add CV terms\n";
}
else
{
delete cv1;
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
resource_att.
add(
"rdf:resource",
"http://biomodels.net/biology-qualifiers/occursIn");
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
resource_att.
add(
"rdf:resource",
"urn:miriam:obo.go:GO%3A0005764");
"http://biomodels.net/biology-qualifiers/",
"bqbiol");
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
resource_att.
add(
"rdf:resource",
"urn:miriam:obo.eco:ECO%3A0000004");
resource_att.
add(
"rdf:resource",
"urn:miriam:pubmed:7017716");
li_token =
XMLToken(li_triple, resource_att);
xmlns.
add(
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
xmlns.
add(
"http://purl.org/dc/elements/1.1/",
"dc");
xmlns.
add(
"http://purl.org/dc/terms/",
"dcterms");
xmlns.
add(
"http://www.w3.org/2001/vcard-rdf/3.0#",
"vCard");
xmlns.
add(
"http://biomodels.net/biology-qualifiers/",
"bqbiol");
xmlns.
add(
"http://biomodels.net/model-qualifiers/",
"bqmodel");
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdf");
}
}
delete d;
return errors;
}
Definition of a CVTerm class for adding annotations to a Model.
@ BQB_OCCURS_IN
Definition: CVTerm.h:445
@ 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
unsigned int getNumSpecies() const
Get the number of Species objects in this Model.
Definition: Model.cpp:3123
const Species * getSpecies(unsigned int n) const
Get the nth Species object in this Model.
Definition: Model.cpp:2564
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
virtual int appendAnnotation(const XMLNode *annotation)
Appends the given annotation to the "annotation" subelement of this object.
Definition: SBase.cpp:1486
const std::string & getMetaId() const
Returns the value of the "metaid" attribute of this SBML object.
Definition: SBase.cpp:693
Definition: Species.h:429
Definition: XMLAttributes.h:257
int add(const std::string &name, const std::string &value, const std::string namespaceURI="", const std::string prefix="")
Adds an attribute to this list of attributes.
Definition: XMLAttributes.cpp:140
int clear()
Removes all attributes in this XMLAttributes object.
Definition: XMLAttributes.cpp:255
Definition: XMLNamespaces.h:90
int add(const std::string &uri, const std::string prefix="")
Appends an XML namespace prefix and URI pair to this list of namespace declarations.
Definition: XMLNamespaces.cpp:119
Definition: XMLNode.h:178
int addChild(const XMLNode &node)
Adds a copy of node as a child of this XMLNode.
Definition: XMLNode.cpp:243
Definition: XMLToken.h:147
int setEnd()
Declares that this token represents an XML element end tag.
Definition: XMLToken.cpp:1176
Definition: XMLTriple.h:94