FBC_PACKAGE\MATLAB_SBML_STRUCTURES\FBCMODEL
The functions allow users to create and work with the FBC elements
and attributes of an SBML FBC Model structure.
Function are:
SBMLFBCModel = FBCModel_addFluxBound(SBMLFBCModel, SBMLFluxBound)
Takes
- SBMLFBCModel, an SBML FBCModel structure
- SBMLFluxBound, an SBML FluxBound structure
Returns
- the SBML FBCModel structure with the SBML FluxBound structure added
SBMLFBCModel = FBCModel_addObjective(SBMLFBCModel, SBMLObjective)
Takes
- SBMLFBCModel, an SBML FBCModel structure
- SBMLObjective, an SBML Objective structure
Returns
- the SBML FBCModel structure with the SBML Objective structure added
FBCModel = FBCModel_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 FBCModel structure of the appropriate level, version and pkgVersion
SBMLFBCModel = FBCModel_createFluxBound(SBMLFBCModel)
Takes
- FBCModel, an SBML FBCModel structure
Returns
- the SBML FBCModel structure with a new SBML FluxBound structure added
SBMLFBCModel = FBCModel_createObjective(SBMLFBCModel)
Takes
- FBCModel, an SBML FBCModel structure
Returns
- the SBML FBCModel structure with a new SBML Objective structure added
activeObjective = FBCModel_getActiveObjective(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- the value of the fbc_activeObjective attribute
fluxBound = FBCModel_getFluxBound(SBMLFBCModel, index)
Takes
- SBMLFBCModel, an SBML FBCModel structure
- index, an integer representing the index of SBML FluxBound structure
Returns
- the SBML FluxBound structure at the indexed position
fluxBound = FBCModel_getListOfFluxBounds(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- an array of the fluxBound structures
objective = FBCModel_getListOfObjectives(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- an array of the objective structures
num = FBCModel_getNumFluxBounds(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- the number of SBML FluxBound structures present in the FBCModel
num = FBCModel_getNumObjectives(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- the number of SBML Objective structures present in the FBCModel
objective = FBCModel_getObjective(SBMLFBCModel, index)
Takes
- SBMLFBCModel, an SBML FBCModel structure
- index, an integer representing the index of SBML Objective structure
Returns
- the SBML Objective structure at the indexed position
activeObjective = FBCModel_isSetActiveObjective(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- value =
- 1 if the fbc_activeObjective attribute is set
- 0 otherwise
SBMLFBCModel = FBCModel_setActiveObjective(SBMLFBCModel, activeObjective)
Takes
- SBMLFBCModel, an SBML FBCModel structure
- activeObjective, a string representing the fbc_activeObjective to be set
Returns
- the SBML FBC FBCModel structure with the new value for the fbc_activeObjective attribute
SBMLFBCModel = FBCModel_unsetActiveObjective(SBMLFBCModel)
Takes
- SBMLFBCModel, an SBML FBCModel structure
Returns
- the SBML FBC FBCModel structure with the fbc_activeObjective attribute unset