FBC_PACKAGE\MATLAB_SBML_STRUCTURES\FBCSPECIES
The functions allow users to create and work with the FBC elements
and attributes of an SBML FBC Species structure.
Function are:
FBCSpecies = FBCSpecies_create(level, version, pkgVersion)
Takes
- level, an integer representing an SBML level
- version, an integer representing an SBML version
- pkgVersion, an integer representing an SBML package version
Returns
- a MATLAB_SBML FBC FBCSpecies structure of the appropriate level, version and pkgVersion
charge = FBCSpecies_getCharge(SBMLFBCSpecies)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
Returns
- the value of the fbc_charge attribute
chemicalFormula = FBCSpecies_getChemicalFormula(SBMLFBCSpecies)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
Returns
- the value of the fbc_chemicalFormula attribute
charge = FBCSpecies_isSetCharge(SBMLFBCSpecies)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
Returns
- value =
- 1 if the fbc_charge attribute is set
- 0 otherwise
chemicalFormula = FBCSpecies_isSetChemicalFormula(SBMLFBCSpecies)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
Returns
- value =
- 1 if the fbc_chemicalFormula attribute is set
- 0 otherwise
SBMLFBCSpecies = FBCSpecies_setCharge(SBMLFBCSpecies, charge)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
- charge, a number representing the fbc_charge to be set
Returns
- the SBML FBC FBCSpecies structure with the new value for the fbc_charge attribute
SBMLFBCSpecies = FBCSpecies_setChemicalFormula(SBMLFBCSpecies, chemicalFormula)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
- chemicalFormula, a string representing the fbc_chemicalFormula to be set
Returns
- the SBML FBC FBCSpecies structure with the new value for the fbc_chemicalFormula attribute
SBMLFBCSpecies = FBCSpecies_unsetCharge(SBMLFBCSpecies)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
Returns
- the SBML FBC FBCSpecies structure with the fbc_charge attribute unset
SBMLFBCSpecies = FBCSpecies_unsetChemicalFormula(SBMLFBCSpecies)
Takes
- SBMLFBCSpecies, an SBML FBCSpecies structure
Returns
- the SBML FBC FBCSpecies structure with the fbc_chemicalFormula attribute unset