libSBML Python API
5.18.0
|
The MultiCompartmentPlugin object is used to extend the standard SBML Compartment base object with an optional 'compartmentType' attribute, a required 'isType' Boolean attribute, and a child ListOfCompartmentReferences. The 'isType' attribute flags whether this Compartment should be treated as a standard SBML Compartment (if False
), or as a more generic rule-based 'type' of Compartment (if True
). A compartment 'type' is a template (in the sense of prototype) for all Compartment objects referencing it (via 'compartmentType' attributes). A Species object directly referencing a compartment type is not a 'fully defined' species, but rather a 'template' species. If the value of the 'isType' attribute is False
, the Compartment object is a 'not-a-type' compartment, and it is similar to a SBML core Compartment except it can reference a compartment type and can have a ListOfCompartmentReferences child. Each child CompartmentReference in the ListOfCompartmentReferences defines a subcompartment of the parent Compartment. The 'compartmentType' attribute identifies this Compartment as the CompartmentType defined elsewhere in the Model. If the 'compartmentType' attribute is set, the 'isType' attribute must be True
.
Public Member Functions | |
def | __init__ (self, args) |
This method has multiple variants; they differ in the arguments they accept. More... | |
def | addCompartmentReference (self, compartmentReference) |
Adds a copy of the given CompartmentReference object to the ListOfCompartmentReferences. More... | |
def | clone (self) |
Creates and returns a deep copy of this MultiCompartmentPlugin object. More... | |
def | createCompartmentReference (self) |
Creates a new CompartmentReference object and adds it to the ListOfCompartmentReferences. More... | |
def | getCompartmentReference (self, args) |
This method has multiple variants; they differ in the arguments they accept. More... | |
def | getCompartmentType (self) |
Returns the value of the 'compartmentType' attribute of this compartment. More... | |
def | getElementByMetaId (self, metaid) |
Return the first child object found with a given meta identifier. More... | |
def | getElementBySId (self, id) |
Return the first child object found with a given identifier. More... | |
def | getElementNamespace (self) |
Returns the namespace URI of the package to which this plugin object belongs. More... | |
def | getIsType (self) |
Returns the value of the 'isType' attribute. More... | |
def | getLevel (self) |
Returns the SBML Level of the package extension of this plugin object. More... | |
def | getListOfAllElements (self, filter=None) |
Returns an SBaseList of all child SBase objects, including those nested to an arbitrary depth. More... | |
def | getListOfCompartmentReferences (self, args) |
Returns the ListOfCompartmentReferences object. More... | |
def | getNumCompartmentReferences (self) |
Returns the number of CompartmentReference objects in the ListOfCompartmentReferences. More... | |
def | getPackageName (self) |
Returns the short-form name of the package to which this plugin object belongs. More... | |
def | getPackageVersion (self) |
Returns the package version of the package extension of this plugin object. More... | |
def | getParentSBMLObject (self, args) |
Returns the parent object to which this plugin object is connected. More... | |
def | getPrefix (self) |
Returns the XML namespace prefix of the package to which this plugin object belongs. More... | |
def | getSBMLDocument (self, args) |
Returns the SBMLDocument object containing this object instance. More... | |
def | getURI (self) |
Returns the XML namespace URI for the package to which this object belongs. More... | |
def | getVersion (self) |
Returns the Version within the SBML Level of the package extension of this plugin object. More... | |
def | hasRequiredElements (self) |
Returns True if this object has all the required elements. More... | |
def | isSetCompartmentType (self) |
Returns True if this compartment's 'compartmentType' attribute has been set. More... | |
def | isSetIsType (self) |
Returns True if this compartment's 'isType' attribute has been set. More... | |
def | isValidTypeForList (self, item) |
def | removeCompartmentReference (self, args) |
This method has multiple variants; they differ in the arguments they accept. More... | |
def | renameMetaIdRefs (self, oldid, newid) |
Replaces all uses of a given meta identifier attribute value with another value. More... | |
def | renameSIdRefs (self, oldid, newid) |
Replaces all uses of a given SIdRef type attribute value with another value. More... | |
def | renameUnitSIdRefs (self, oldid, newid) |
Replaces all uses of a given UnitSIdRef type attribute value with another value. More... | |
def | setCompartmentType (self, compartmentType) |
Sets the value of the 'compartmentType' attribute on this compartment. More... | |
def | setElementNamespace (self, uri) |
Sets the XML namespace to which this object belongs. More... | |
def | setIsType (self, isType) |
Sets the value of the 'isType' attribute. More... | |
def | unsetCompartmentType (self) |
Unsets the value of the 'compartmentType' attribute. More... | |
def | unsetIsType (self) |
Unsets the value of the 'isType' attribute. More... | |
def libsbml.MultiCompartmentPlugin.__init__ | ( | self, | |
args | |||
) |
This method has multiple variants; they differ in the arguments they accept.
__init__(string uri, string prefix, MultiPkgNamespaces multins) MultiCompartmentPlugin __init__(MultiCompartmentPlugin orig) MultiCompartmentPlugin
Each variant is described separately below.
MultiCompartmentPlugin(string uri, string prefix, MultiPkgNamespaces multins)
Creates a new MultiCompartmentPlugin object.
'http://www.sbml.org/sbml/level3/version1/core'
. Individual SBML Level 3 packages define their own XML namespaces; for example, all elements belonging to the SBML Level 3 Layout Version 1 package must be placed in the XML namespace 'http://www.sbml.org/sbml/level3/version1/layout/version1/'
.uri | the URI of the SBML Level 3 package implemented by this libSBML package extension. |
prefix | the XML namespace prefix being used for the package. |
multins | the namespaces object for the package. |
MultiCompartmentPlugin(MultiCompartmentPlugin orig)
Copy constructor for MultiCompartmentPlugin.
orig | the MultiCompartmentPlugin instance to copy. |
def libsbml.MultiCompartmentPlugin.addCompartmentReference | ( | self, | |
compartmentReference | |||
) |
Adds a copy of the given CompartmentReference object to the ListOfCompartmentReferences.
addCompartmentReference(CompartmentReference compartmentReference) int
compartmentReference | the CompartmentReference object to add. |
def libsbml.MultiCompartmentPlugin.clone | ( | self | ) |
Creates and returns a deep copy of this MultiCompartmentPlugin object.
clone() MultiCompartmentPlugin
def libsbml.MultiCompartmentPlugin.createCompartmentReference | ( | self | ) |
Creates a new CompartmentReference object and adds it to the ListOfCompartmentReferences.
createCompartmentReference() CompartmentReference
def libsbml.MultiCompartmentPlugin.getCompartmentReference | ( | self, | |
args | |||
) |
This method has multiple variants; they differ in the arguments they accept.
getCompartmentReference(long n) CompartmentReference getCompartmentReference(string sid) CompartmentReference
Each variant is described separately below.
getCompartmentReference(long n)
Returns the nth CompartmentReference object from the ListOfCompartmentReferences.
n | the index number of the CompartmentReference to get. |
None
if the index n
is out of range.getCompartmentReference(string sid)
Returns the CompartmentReference with the given identifier sid
.
sid | the identifier of the CompartmentReference object to get from the ListOfCompartmentReferences. |
None
if no such CompartmentReference exists. def libsbml.MultiCompartmentPlugin.getCompartmentType | ( | self | ) |
Returns the value of the 'compartmentType' attribute of this compartment.
getCompartmentType() string
|
inherited |
Return the first child object found with a given meta identifier.
getElementByMetaId(string metaid) SBase
This method searches all the subobjects under this one, compares their meta identifiers to metaid
, and returns the first one that machines.
metaid | string, the metaid of the object to find. |
metaid
.
|
inherited |
Return the first child object found with a given identifier.
getElementBySId(string id) SBase
This method searches all the subobjects under this one, compares their identifiers to id
, and returns the first one that machines.
Normally, SId
type identifier values are unique across a model in SBML. However, in some circumstances they may not be, such as if a model is invalid because of multiple objects having the same identifier.
id | string representing the identifier of the object to find. |
id
.
|
inherited |
Returns the namespace URI of the package to which this plugin object belongs.
getElementNamespace() string
def libsbml.MultiCompartmentPlugin.getIsType | ( | self | ) |
Returns the value of the 'isType' attribute.
getIsType() bool
|
inherited |
Returns the SBML Level of the package extension of this plugin object.
getLevel() long
|
inherited |
Returns an SBaseList of all child SBase objects, including those nested to an arbitrary depth.
getListOfAllElements(ElementFilter filter) SBaseList getListOfAllElements() SBaseList
def libsbml.MultiCompartmentPlugin.getListOfCompartmentReferences | ( | self, | |
args | |||
) |
Returns the ListOfCompartmentReferences object.
getListOfCompartmentReferences() ListOfCompartmentReferences
def libsbml.MultiCompartmentPlugin.getNumCompartmentReferences | ( | self | ) |
Returns the number of CompartmentReference objects in the ListOfCompartmentReferences.
getNumCompartmentReferences() long
|
inherited |
Returns the short-form name of the package to which this plugin object belongs.
getPackageName() string
|
inherited |
Returns the package version of the package extension of this plugin object.
getPackageVersion() long
|
inherited |
Returns the parent object to which this plugin object is connected.
getParentSBMLObject() SBase
|
inherited |
Returns the XML namespace prefix of the package to which this plugin object belongs.
getPrefix() string
|
inherited |
Returns the SBMLDocument object containing this object instance.
getSBMLDocument() SBMLDocument
This method allows the caller to obtain the SBMLDocument for the current object.
|
inherited |
Returns the XML namespace URI for the package to which this object belongs.
getURI() string
'http://www.sbml.org/sbml/level3/version1/core'
. Individual SBML Level 3 packages define their own XML namespaces; for example, all elements belonging to the SBML Level 3 Layout Version 1 package must be placed in the XML namespace 'http://www.sbml.org/sbml/level3/version1/layout/version1/'
.This method first looks into the SBMLNamespaces object possessed by the parent SBMLDocument object of the current object. If this cannot be found, this method returns the result of getElementNamespace().
|
inherited |
Returns the Version within the SBML Level of the package extension of this plugin object.
getVersion() long
def libsbml.MultiCompartmentPlugin.hasRequiredElements | ( | self | ) |
Returns True
if this object has all the required elements.
hasRequiredElements() bool
True
if this object has all the elements required by the package specification; otherwise, False
will be returned. def libsbml.MultiCompartmentPlugin.isSetCompartmentType | ( | self | ) |
Returns True
if this compartment's 'compartmentType' attribute has been set.
isSetCompartmentType() bool
True
if the 'compartmentType' attribute has been set; otherwise, False
is returned. def libsbml.MultiCompartmentPlugin.isSetIsType | ( | self | ) |
Returns True
if this compartment's 'isType' attribute has been set.
isSetIsType() bool
True
if the 'isType' attribute has been set; otherwise, False
is returned.
|
inherited |
isValidTypeForList(SBase item) bool
def libsbml.MultiCompartmentPlugin.removeCompartmentReference | ( | self, | |
args | |||
) |
This method has multiple variants; they differ in the arguments they accept.
removeCompartmentReference(long n) CompartmentReference removeCompartmentReference(string sid) CompartmentReference
Each variant is described separately below.
removeCompartmentReference(long n)
Removes the nth CompartmentReference object from the ListOfCompartmentReferences.
n | the index of the CompartmentReference to remove. |
None
if the given index n
is out of range. Note that the caller owns the returned object and is responsible for deleting it.removeCompartmentReference(string sid)
Removes the CompartmentReference object with the given identifier from the ListOfCompartmentReferences.
sid | the id of the CompartmentReference to remove. |
None
if no such CompartmentReference exists. Note that the caller owns the returned object and is responsible for deleting it.
|
inherited |
Replaces all uses of a given meta identifier attribute value with another value.
renameMetaIdRefs(string oldid, string newid)
ID
; the SBML object attribute itself is typically named metaid
. All attributes that hold values referring to values of type ID
are of the XML data type IDREF
. They are also sometimes informally referred to as 'metaid refs', in analogy to the SBML-defined type SIdRef
.This method works by looking at all meta-identifier attribute values, comparing the identifiers to the value of oldid
. If any matches are found, the matching identifiers are replaced with newid
. The method does not descend into child elements.
oldid | the old identifier. |
newid | the new identifier. |
|
inherited |
Replaces all uses of a given SIdRef
type attribute value with another value.
renameSIdRefs(string oldid, string newid)
SId
. In SBML Level 3, an explicit data type called SIdRef
was introduced for attribute values that refer to SId
values; in previous Levels of SBML, this data type did not exist and attributes were simply described to as 'referring to an identifier', but the effective data type was the same as SIdRef
in Level 3. These and other methods of libSBML refer to the type SIdRef
for all Levels of SBML, even if the corresponding SBML specification did not explicitly name the data type.This method works by looking at all attributes and (if appropriate) mathematical formulas in MathML content, comparing the referenced identifiers to the value of oldid
. If any matches are found, the matching values are replaced with newid
. The method does not descend into child elements.
oldid | the old identifier. |
newid | the new identifier. |
|
inherited |
Replaces all uses of a given UnitSIdRef
type attribute value with another value.
renameUnitSIdRefs(string oldid, string newid)
UnitSId
. In SBML Level 3, an explicit data type called UnitSIdRef
was introduced for attribute values that refer to UnitSId
values; in previous Levels of SBML, this data type did not exist and attributes were simply described to as 'referring to a unit identifier', but the effective data type was the same as UnitSIdRef
in Level 3. These and other methods of libSBML refer to the type UnitSIdRef
for all Levels of SBML, even if the corresponding SBML specification did not explicitly name the data type.This method works by looking at all unit identifier attribute values (including, if appropriate, inside mathematical formulas), comparing the referenced unit identifiers to the value of oldid
. If any matches are found, the matching values are replaced with newid
. The method does not descend into child elements.
oldid | the old identifier. |
newid | the new identifier. |
def libsbml.MultiCompartmentPlugin.setCompartmentType | ( | self, | |
compartmentType | |||
) |
Sets the value of the 'compartmentType' attribute on this compartment.
setCompartmentType(string compartmentType) int
compartmentType | the new value for the attribute. |
|
inherited |
Sets the XML namespace to which this object belongs.
setElementNamespace(string uri) int
'http://www.sbml.org/sbml/level3/version1/core'
. Individual SBML Level 3 packages define their own XML namespaces; for example, all elements belonging to the SBML Level 3 Layout Version 1 package must be placed in the XML namespace 'http://www.sbml.org/sbml/level3/version1/layout/version1/'
.uri | the URI to assign to this object. |
def libsbml.MultiCompartmentPlugin.setIsType | ( | self, | |
isType | |||
) |
Sets the value of the 'isType' attribute.
setIsType(bool isType) int
isType | the new value of the attribute. |
def libsbml.MultiCompartmentPlugin.unsetCompartmentType | ( | self | ) |
Unsets the value of the 'compartmentType' attribute.
unsetCompartmentType() int
def libsbml.MultiCompartmentPlugin.unsetIsType | ( | self | ) |
Unsets the value of the 'isType' attribute.
unsetIsType() int