/usr/share/SBMLToolbox/Test/test-data/testNegativeLocalParameter.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 | <?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1">
<model id="Model_1" name="Michaelis-Menten Equations">
<listOfCompartments>
<compartment id="cell" name="cell" size="1"/>
</listOfCompartments>
<listOfSpecies>
<species id="E" name="E" compartment="cell" initialConcentration="10"/>
<species id="ES" name="ES" compartment="cell" initialConcentration="0"/>
<species id="S" name="S" compartment="cell" initialConcentration="15"/>
<species id="P" name="P" compartment="cell" initialConcentration="0"/>
</listOfSpecies>
<listOfReactions>
<reaction id="R1" name="R1">
<listOfReactants>
<speciesReference species="E"/>
<speciesReference species="S"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="ES"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> cell </ci>
<apply>
<minus/>
<apply>
<times/>
<ci> k1 </ci>
<ci> E </ci>
<ci> S </ci>
</apply>
<apply>
<times/>
<ci> k2 </ci>
<ci> ES </ci>
</apply>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="k1" value="1"/>
<parameter id="k2" value="1"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="R2" name="R2" reversible="false">
<listOfReactants>
<speciesReference species="ES"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="E"/>
<speciesReference species="P"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> cell </ci>
<ci> k3 </ci>
<ci> ES </ci>
</apply>
</math>
<listOfParameters>
<parameter id="k3" value="1"/>
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
|