Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Oct 15, 2024
1 parent 7d0e85c commit 48b2a62
Showing 1 changed file with 42 additions and 4 deletions.
46 changes: 42 additions & 4 deletions tests/fixtures/sbml-list-of-species-lvl-2.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,39 @@
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<sbml xmlns="http://www.sbml.org/sbml/level2/version4" level="2" version="4">
<model id="Ciliberto2003_Morphogenesis" name="Ciliberto2003_Morphogenesis_Checkpoint">
<listOfUnitDefinitions>
<unitDefinition id="volume" name="volume">
<listOfUnits>
<unit kind="litre" exponent="1" scale="-3" multiplier="1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition id="time" name="time">
<listOfUnits>
<unit kind="second" exponent="1" scale="0" multiplier="1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition id="substance" name="substance">
<listOfUnits>
<unit kind="mole" exponent="1" scale="-9" multiplier="1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition id="unit_0" name="mg">
<listOfUnits>
<unit kind="gram" exponent="1" scale="-3" multiplier="1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition id="millilitre" name="ml">
<listOfUnits>
<unit kind="litre" exponent="1" scale="-3" multiplier="1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition id="molsPerSecond" name="mols/s">
<listOfUnits>
<unit kind="mole" exponent="1" scale="-9" multiplier="1"/>
<unit kind="second" exponent="-1" scale="0" multiplier="1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment id="compartment" size="1"/>
</listOfCompartments>
Expand All @@ -21,21 +54,26 @@
<listOfReactions>
<reaction metaid="COPASI127" id="lumen" name="01. StomachLumen -&gt; IntestineLumen" reversible="false" fast="false">
<listOfReactants>
<speciesReference species="Trim" stoichiometry="1" constant="true"/>
<speciesReference species="Clb" stoichiometry="1"/>
<speciesReference species="Sic" stoichiometry="1"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="Clb" stoichiometry="1" constant="true"/>
<speciesReference species="Trim" stoichiometry="1"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> k1 </ci>
<ci> Trim </ci>
<apply>
<divide/>
<ci> Clb </ci>
<ci> Sic </ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="k1" name="k1" value="350"/>
<parameter id="k1" name="k1" value="350" units="molsPerSecond"/>
</listOfParameters>
</kineticLaw>
</reaction>
Expand Down

0 comments on commit 48b2a62

Please sign in to comment.