MATLAB_SBML_STRUCTURE_FUNCTIONS\TRIGGER
The functions allow users to create and work with the SBML Trigger structure.
Function are:
Trigger = Trigger_create(level(optional), version(optional) )
Takes
- level, an integer representing an SBML level (optional)
- version, an integer representing an SBML version (optional)
Returns
- a MATLAB_SBML Trigger structure of the appropriate level and version
NOTE: the optional level and version preserve backwards compatibility
a missing version argument will default to L1V2; L2V4 or L3V1
missing both arguments will default to L3V1
initialValue = Trigger_getInitialValue(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the value of the initialValue attribute
math = Trigger_getMath(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the value of the math attribute
metaid = Trigger_getMetaid(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the value of the metaid attribute
persistent = Trigger_getPersistent(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the value of the persistent attribute
sboTerm = Trigger_getSBOTerm(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the value of the sboTerm attribute
value = Trigger_isSetMath(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- value =
- 1 if the math attribute is set
- 0 otherwise
value = Trigger_isSetMetaid(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- value =
- 1 if the metaid attribute is set
- 0 otherwise
value = Trigger_isSetSBOTerm(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- value =
- 1 if the sboTerm attribute is set
- 0 otherwise
SBMLTrigger = Trigger_setInitialValue(SBMLTrigger, initialValue)
Takes
- SBMLTrigger, an SBML Trigger structure
- initialValue, an integer (0/1) representing the value of initialValue to be set
Returns
- the SBML Trigger structure with the new value for the initialValue attribute
SBMLTrigger = Trigger_setMath(SBMLTrigger, math)
Takes
- SBMLTrigger, an SBML Trigger structure
- math; string representing the math expression math to be set
Returns
- the SBML Trigger structure with the new value for the math attribute
SBMLTrigger = Trigger_setMetaid(SBMLTrigger, metaid)
Takes
- SBMLTrigger, an SBML Trigger structure
- metaid; a string representing the metaid to be set
Returns
- the SBML Trigger structure with the new value for the metaid attribute
SBMLTrigger = Trigger_setPersistent(SBMLTrigger, persistent)
Takes
- SBMLTrigger, an SBML Trigger structure
- persistent, an integer (0/1) representing the value of persistent to be set
Returns
- the SBML Trigger structure with the new value for the persistent attribute
SBMLTrigger = Trigger_setSBOTerm(SBMLTrigger, sboTerm)
Takes
- SBMLTrigger, an SBML Trigger structure
- sboTerm, an integer representing the sboTerm to be set
Returns
- the SBML Trigger structure with the new value for the sboTerm attribute
SBMLTrigger = Trigger_unsetMath(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the SBML Trigger structure with the math attribute unset
SBMLTrigger = Trigger_unsetMetaid(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the SBML Trigger structure with the metaid attribute unset
SBMLTrigger = Trigger_unsetSBOTerm(SBMLTrigger)
Takes
- SBMLTrigger, an SBML Trigger structure
Returns
- the SBML Trigger structure with the sboTerm attribute unset