FBC_PACKAGE\MATLAB_SBML_STRUCTURES\FLUXOBJECTIVE
The functions allow users to create and work with the SBML FBC FluxObjective structure.
Function are:
FluxObjective = FluxObjective_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 FluxObjective structure of the appropriate level, version and pkgVersion
coefficient = FluxObjective_getCoefficient(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the value of the fbc_coefficient attribute
metaid = FluxObjective_getMetaid(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the value of the metaid attribute
reaction = FluxObjective_getReaction(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the value of the fbc_reaction attribute
sboTerm = FluxObjective_getSBOTerm(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the value of the sboTerm attribute
coefficient = FluxObjective_isSetCoefficient(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- value =
- 1 if the fbc_coefficient attribute is set
- 0 otherwise
metaid = FluxObjective_isSetMetaid(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- value =
- 1 if the metaid attribute is set
- 0 otherwise
reaction = FluxObjective_isSetReaction(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- value =
- 1 if the fbc_reaction attribute is set
- 0 otherwise
sboTerm = FluxObjective_isSetSBOTerm(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- value =
- 1 if the sboTerm attribute is set
- 0 otherwise
SBMLFluxObjective = FluxObjective_setCoefficient(SBMLFluxObjective, coefficient)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
- coefficient, a number representing the fbc_coefficient to be set
Returns
- the SBML FBC FluxObjective structure with the new value for the fbc_coefficient attribute
SBMLFluxObjective = FluxObjective_setMetaid(SBMLFluxObjective, metaid)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
- metaid, a string representing the metaid to be set
Returns
- the SBML FBC FluxObjective structure with the new value for the metaid attribute
SBMLFluxObjective = FluxObjective_setReaction(SBMLFluxObjective, reaction)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
- reaction, a string representing the fbc_reaction to be set
Returns
- the SBML FBC FluxObjective structure with the new value for the fbc_reaction attribute
SBMLFluxObjective = FluxObjective_setSBOTerm(SBMLFluxObjective, sboTerm)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
- sboTerm, a number representing the sboTerm to be set
Returns
- the SBML FBC FluxObjective structure with the new value for the sboTerm attribute
SBMLFluxObjective = FluxObjective_unsetCoefficient(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the SBML FBC FluxObjective structure with the fbc_coefficient attribute unset
SBMLFluxObjective = FluxObjective_unsetMetaid(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the SBML FBC FluxObjective structure with the metaid attribute unset
SBMLFluxObjective = FluxObjective_unsetReaction(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the SBML FBC FluxObjective structure with the fbc_reaction attribute unset
SBMLFluxObjective = FluxObjective_unsetSBOTerm(SBMLFluxObjective)
Takes
- SBMLFluxObjective, an SBML FluxObjective structure
Returns
- the SBML FBC FluxObjective structure with the sboTerm attribute unset