MATLAB_SBML_STRUCTURE_FUNCTIONS\PRIORITY

The functions allow users to create and work with the SBML Priority structure.

Function are:


Priority = Priority_create(level(optional), version(optional) )

Takes

  1. level, an integer representing an SBML level (optional)
  2. version, an integer representing an SBML version (optional)

Returns

  1. a MATLAB_SBML Priority 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


math = Priority_getMath(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. the value of the math attribute

metaid = Priority_getMetaid(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. the value of the metaid attribute

sboTerm = Priority_getSBOTerm(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. the value of the sboTerm attribute

value = Priority_isSetMath(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. value =

value = Priority_isSetMetaid(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. value =

value = Priority_isSetSBOTerm(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. value =

SBMLPriority = Priority_setMath(SBMLPriority, math)

Takes

  1. SBMLPriority, an SBML Priority structure
  2. math; string representing the math expression math to be set

Returns

  1. the SBML Priority structure with the new value for the math attribute

SBMLPriority = Priority_setMetaid(SBMLPriority, metaid)

Takes

  1. SBMLPriority, an SBML Priority structure
  2. metaid; a string representing the metaid to be set

Returns

  1. the SBML Priority structure with the new value for the metaid attribute

SBMLPriority = Priority_setSBOTerm(SBMLPriority, sboTerm)

Takes

  1. SBMLPriority, an SBML Priority structure
  2. sboTerm, an integer representing the sboTerm to be set

Returns

  1. the SBML Priority structure with the new value for the sboTerm attribute

SBMLPriority = Priority_unsetMath(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. the SBML Priority structure with the math attribute unset

SBMLPriority = Priority_unsetMetaid(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. the SBML Priority structure with the metaid attribute unset

SBMLPriority = Priority_unsetSBOTerm(SBMLPriority)

Takes

  1. SBMLPriority, an SBML Priority structure

Returns

  1. the SBML Priority structure with the sboTerm attribute unset