1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
#!/usr/bin/python3
##
## @file createSampleModel.py
## @brief Creates a simple SBML model and prints it to stdout.
## @author Michael Hucka
##
## <!--------------------------------------------------------------------------
## This sample program is distributed under a different license than the rest
## of libSBML. This program uses the open-source MIT license, as follows:
##
## Copyright (c) 2013-2018 by the California Institute of Technology
## (California, USA), the European Bioinformatics Institute (EMBL-EBI, UK)
## and the University of Heidelberg (Germany), with support from the National
## Institutes of Health (USA) under grant R01GM070923. All rights reserved.
##
## Permission is hereby granted, free of charge, to any person obtaining a
## copy of this software and associated documentation files (the "Software"),
## to deal in the Software without restriction, including without limitation
## the rights to use, copy, modify, merge, publish, distribute, sublicense,
## and/or sell copies of the Software, and to permit persons to whom the
## Software is furnished to do so, subject to the following conditions:
##
## The above copyright notice and this permission notice shall be included in
## all copies or substantial portions of the Software.
##
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
## THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
## FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
## DEALINGS IN THE SOFTWARE.
##
## Neither the name of the California Institute of Technology (Caltech), nor
## of the European Bioinformatics Institute (EMBL-EBI), nor of the University
## of Heidelberg, nor the names of any contributors, may be used to endorse
## or promote products derived from this software without specific prior
## written permission.
## ------------------------------------------------------------------------ -->
##
import sys
from libsbml import *
def check(value, message):
"""If 'value' is None, prints an error message constructed using
'message' and then exits with status code 1. If 'value' is an integer,
it assumes it is a libSBML return status code. If the code value is
LIBSBML_OPERATION_SUCCESS, returns without further action; if it is not,
prints an error message constructed using 'message' along with text from
libSBML explaining the meaning of the code, and exits with status code 1.
"""
if value is None:
raise SystemExit('LibSBML returned a null value trying to ' + message + '.')
elif type(value) is int:
if value == LIBSBML_OPERATION_SUCCESS:
return
else:
err_msg = 'Error encountered trying to ' + message + '.' \
+ 'LibSBML returned error code ' + str(value) + ': "' \
+ OperationReturnValue_toString(value).strip() + '"'
raise SystemExit(err_msg)
else:
return
def create_model():
"""Returns a simple but complete SBML Level 3 model for illustration."""
# Create an empty SBMLDocument object. It's a good idea to check for
# possible errors. Even when the parameter values are hardwired like
# this, it is still possible for a failure to occur (e.g., if the
# operating system runs out of memory).
try:
document = SBMLDocument(3, 1)
except ValueError:
raise SystemExit('Could not create SBMLDocument object')
# Create the basic Model object inside the SBMLDocument object. To
# produce a model with complete units for the reaction rates, we need
# to set the 'timeUnits' and 'extentUnits' attributes on Model. We
# set 'substanceUnits' too, for good measure, though it's not strictly
# necessary here because we also set the units for individual species
# in their definitions.
model = document.createModel()
check(model, 'create model')
check(model.setTimeUnits("second"), 'set model-wide time units')
check(model.setExtentUnits("mole"), 'set model units of extent')
check(model.setSubstanceUnits('mole'), 'set model substance units')
# Create a unit definition we will need later. Note that SBML Unit
# objects must have all four attributes 'kind', 'exponent', 'scale'
# and 'multiplier' defined.
per_second = model.createUnitDefinition()
check(per_second, 'create unit definition')
check(per_second.setId('per_second'), 'set unit definition id')
unit = per_second.createUnit()
check(unit, 'create unit on per_second')
check(unit.setKind(UNIT_KIND_SECOND), 'set unit kind')
check(unit.setExponent(-1), 'set unit exponent')
check(unit.setScale(0), 'set unit scale')
check(unit.setMultiplier(1), 'set unit multiplier')
# Create a compartment inside this model, and set the required
# attributes for an SBML compartment in SBML Level 3.
c1 = model.createCompartment()
check(c1, 'create compartment')
check(c1.setId('c1'), 'set compartment id')
check(c1.setConstant(True), 'set compartment "constant"')
check(c1.setSize(1), 'set compartment "size"')
check(c1.setSpatialDimensions(3), 'set compartment dimensions')
check(c1.setUnits('litre'), 'set compartment size units')
# Create two species inside this model, set the required attributes
# for each species in SBML Level 3 (which are the 'id', 'compartment',
# 'constant', 'hasOnlySubstanceUnits', and 'boundaryCondition'
# attributes), and initialize the amount of the species along with the
# units of the amount.
s1 = model.createSpecies()
check(s1, 'create species s1')
check(s1.setId('s1'), 'set species s1 id')
check(s1.setCompartment('c1'), 'set species s1 compartment')
check(s1.setConstant(False), 'set "constant" attribute on s1')
check(s1.setInitialAmount(5), 'set initial amount for s1')
check(s1.setSubstanceUnits('mole'), 'set substance units for s1')
check(s1.setBoundaryCondition(False), 'set "boundaryCondition" on s1')
check(s1.setHasOnlySubstanceUnits(False), 'set "hasOnlySubstanceUnits" on s1')
s2 = model.createSpecies()
check(s2, 'create species s2')
check(s2.setId('s2'), 'set species s2 id')
check(s2.setCompartment('c1'), 'set species s2 compartment')
check(s2.setConstant(False), 'set "constant" attribute on s2')
check(s2.setInitialAmount(0), 'set initial amount for s2')
check(s2.setSubstanceUnits('mole'), 'set substance units for s2')
check(s2.setBoundaryCondition(False), 'set "boundaryCondition" on s2')
check(s2.setHasOnlySubstanceUnits(False), 'set "hasOnlySubstanceUnits" on s2')
# Create a parameter object inside this model, set the required
# attributes 'id' and 'constant' for a parameter in SBML Level 3, and
# initialize the parameter with a value along with its units.
k = model.createParameter()
check(k, 'create parameter k')
check(k.setId('k'), 'set parameter k id')
check(k.setConstant(True), 'set parameter k "constant"')
check(k.setValue(1), 'set parameter k value')
check(k.setUnits('per_second'), 'set parameter k units')
# Create a reaction inside this model, set the reactants and products,
# and set the reaction rate expression (the SBML "kinetic law"). We
# set the minimum required attributes for all of these objects. The
# units of the reaction rate are determined from the 'timeUnits' and
# 'extentUnits' attributes on the Model object.
r1 = model.createReaction()
check(r1, 'create reaction')
check(r1.setId('r1'), 'set reaction id')
check(r1.setReversible(False), 'set reaction reversibility flag')
check(r1.setFast(False), 'set reaction "fast" attribute')
species_ref1 = r1.createReactant()
check(species_ref1, 'create reactant')
check(species_ref1.setSpecies('s1'), 'assign reactant species')
check(species_ref1.setConstant(True), 'set "constant" on species ref 1')
species_ref2 = r1.createProduct()
check(species_ref2, 'create product')
check(species_ref2.setSpecies('s2'), 'assign product species')
check(species_ref2.setConstant(True), 'set "constant" on species ref 2')
math_ast = parseL3Formula('k * s1 * c1')
check(math_ast, 'create AST for rate expression')
kinetic_law = r1.createKineticLaw()
check(kinetic_law, 'create kinetic law')
check(kinetic_law.setMath(math_ast), 'set math on kinetic law')
# And we're done creating the basic model.
# Now return a text string containing the model in XML format.
return writeSBMLToString(document)
if __name__ == '__main__':
print(create_model())
|