/usr/share/SBMLToolbox/Test/test-data/species.xml is in sbmltoolbox 4.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1">
<model id="species">
<listOfFunctionDefinitions>
<functionDefinition id="f">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<lambda>
<bvar>
<ci> x </ci>
</bvar>
<bvar>
<ci> y </ci>
</bvar>
<apply>
<times/>
<ci> x </ci>
<ci> y </ci>
</apply>
</lambda>
</math>
</functionDefinition>
</listOfFunctionDefinitions>
<listOfUnitDefinitions>
<unitDefinition id="MyUnit">
<listOfUnits>
<unit kind="litre" exponent="2"/>
<unit kind="mole" exponent="-1"/>
<unit kind="second" exponent="-1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition id="perTime">
<listOfUnits>
<unit kind="litre"/>
<unit kind="second" exponent="-1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment id="c" size="1"/>
</listOfCompartments>
<listOfSpecies>
<species id="S1" compartment="c" initialAmount="1"/>
<species id="S2" compartment="c" initialAmount="2"/>
<species id="S3" compartment="c" initialAmount="1"/>
<species id="S4" compartment="c" initialAmount="1"/>
<species id="s1" compartment="c" initialAmount="0"/>
<species id="s2" compartment="c" initialAmount="0"/>
</listOfSpecies>
<listOfReactions>
<reaction id="R1" reversible="false">
<listOfReactants>
<speciesReference species="S1"/>
<speciesReference species="S2"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="S3"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> kf </ci>
<ci> S1 </ci>
<ci> S2 </ci>
</apply>
</math>
<listOfParameters>
<parameter id="kf" value="750000000000000" units="MyUnit"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="R2" reversible="false">
<listOfReactants>
<speciesReference species="S3"/>
<speciesReference species="S4"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="S1"/>
<speciesReference species="S2"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> kr </ci>
<ci> S3 </ci>
<ci> S4 </ci>
</apply>
</math>
<listOfParameters>
<parameter id="kr" value="250000000000000" units="MyUnit"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="reaction_3" reversible="false">
<listOfReactants>
<speciesReference species="S1"/>
<speciesReference species="S2"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="S2"/>
</listOfProducts>
<listOfModifiers>
<modifierSpeciesReference species="S4"/>
</listOfModifiers>
</reaction>
<reaction id="reaction_1" reversible="false">
<listOfReactants>
<speciesReference species="s1"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="s2"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<ci> f </ci>
<ci> s1 </ci>
<ci> kr </ci>
</apply>
</math>
<listOfParameters>
<parameter id="kr" value="2" units="perTime"/>
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
|