-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
And remove some superfluous files. More to follow later. No relevant changes to the models, just converting them to antimony and creating SBML models on the fly.
- Loading branch information
Showing
23 changed files
with
275 additions
and
1,025 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,65 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<sbml xmlns="http://www.sbml.org/sbml/level2/version4" level="2" version="4"> | ||
<model id="conversion_reaction_0" name="Conversion Reaction 0"> | ||
|
||
<listOfUnitDefinitions> | ||
<unitDefinition id="volume" name="volume"> | ||
<listOfUnits> | ||
<unit kind="litre" exponent="1" scale="-3" multiplier="1"/> | ||
</listOfUnits> | ||
</unitDefinition> | ||
<unitDefinition id="substance" name="substance"> | ||
<listOfUnits> | ||
<unit kind="mole" exponent="1" scale="-3" multiplier="1"/> | ||
</listOfUnits> | ||
</unitDefinition> | ||
</listOfUnitDefinitions> | ||
|
||
<!-- Created by libAntimony version v2.14.0 with libSBML version 5.20.2. --> | ||
<sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" level="3" version="2"> | ||
<model metaid="petab_test_0011" id="petab_test_0011"> | ||
<listOfCompartments> | ||
<compartment id="compartment" name="compartment" spatialDimensions="3" size="1" constant="true"> | ||
</compartment> | ||
<compartment id="compartment_" spatialDimensions="3" size="1" constant="true"/> | ||
</listOfCompartments> | ||
|
||
<listOfSpecies> | ||
<species id="A" name="A" compartment="compartment" initialConcentration="1" boundaryCondition="false" constant="false"> | ||
</species> | ||
<species id="B" name="B" compartment="compartment" initialConcentration="1" boundaryCondition="false" constant="false"> | ||
</species> | ||
<species id="A" compartment="compartment_" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
<species id="B" compartment="compartment_" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
</listOfSpecies> | ||
|
||
<listOfParameters> | ||
<parameter id="a0" name="a0" value="1" constant="true"> | ||
</parameter> | ||
<parameter id="b0" name="b0" value="1" constant="true"> | ||
</parameter> | ||
<parameter id="k1" name="k1" value="0" constant="true"> | ||
</parameter> | ||
<parameter id="k2" name="k2" value="0" constant="true"> | ||
</parameter> | ||
<parameter id="offset_A" name="offset_A" value="0" constant="true"> | ||
</parameter> | ||
<parameter id="k1" value="0" constant="true"/> | ||
<parameter id="k2" value="0" constant="true"/> | ||
<parameter id="a0" value="1" constant="true"/> | ||
<parameter id="b0" value="1" constant="true"/> | ||
<parameter id="offset_A" value="0" constant="true"/> | ||
</listOfParameters> | ||
|
||
<listOfInitialAssignments> | ||
<initialAssignment symbol="A"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<ci> a0 </ci> | ||
</math> | ||
</initialAssignment> | ||
<initialAssignment symbol="B"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<ci> b0 </ci> | ||
</math> | ||
</initialAssignment> | ||
</listOfInitialAssignments> | ||
|
||
<listOfReactions> | ||
<reaction id="fwd" name="fwd" reversible="false"> | ||
<reaction id="fwd" reversible="false"> | ||
<listOfReactants> | ||
<speciesReference species="A" stoichiometry="1"/> | ||
<speciesReference species="A" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="B" stoichiometry="1"/> | ||
<speciesReference species="B" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> compartment </ci> | ||
<ci> compartment_ </ci> | ||
<ci> k1 </ci> | ||
<ci> A </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
<reaction id="rev" name="rev" reversible="false"> | ||
<reaction id="rev" reversible="false"> | ||
<listOfReactants> | ||
<speciesReference species="B" stoichiometry="1"/> | ||
<speciesReference species="B" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="A" stoichiometry="1"/> | ||
<speciesReference species="A" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> compartment </ci> | ||
<ci> compartment_ </ci> | ||
<ci> k2 </ci> | ||
<ci> B </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
</listOfReactions> | ||
|
||
</model> | ||
</sbml> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,63 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<sbml xmlns="http://www.sbml.org/sbml/level2/version4" level="2" version="4"> | ||
<model id="conversion_reaction_0" name="Conversion Reaction 0"> | ||
|
||
<listOfUnitDefinitions> | ||
<unitDefinition id="volume" name="volume"> | ||
<listOfUnits> | ||
<unit kind="litre" exponent="1" scale="-3" multiplier="1"/> | ||
</listOfUnits> | ||
</unitDefinition> | ||
<unitDefinition id="substance" name="substance"> | ||
<listOfUnits> | ||
<unit kind="mole" exponent="1" scale="-3" multiplier="1"/> | ||
</listOfUnits> | ||
</unitDefinition> | ||
</listOfUnitDefinitions> | ||
|
||
<!-- Created by libAntimony version v2.14.0 with libSBML version 5.20.2. --> | ||
<sbml xmlns="http://www.sbml.org/sbml/level3/version2/core" level="3" version="2"> | ||
<model metaid="petab_test_0011" id="petab_test_0011"> | ||
<listOfCompartments> | ||
<compartment id="compartment" name="compartment" spatialDimensions="3" size="1" constant="true"> | ||
</compartment> | ||
<compartment id="compartment_" spatialDimensions="3" size="1" constant="true"/> | ||
</listOfCompartments> | ||
|
||
<listOfSpecies> | ||
<species id="A" name="A" compartment="compartment" initialConcentration="1" boundaryCondition="false" constant="false"> | ||
</species> | ||
<species id="B" name="B" compartment="compartment" initialConcentration="1" boundaryCondition="false" constant="false"> | ||
</species> | ||
<species id="A" compartment="compartment_" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
<species id="B" compartment="compartment_" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/> | ||
</listOfSpecies> | ||
|
||
<listOfParameters> | ||
<parameter id="a0" name="a0" value="1" constant="true"> | ||
</parameter> | ||
<parameter id="k1" name="k1" value="0" constant="true"> | ||
</parameter> | ||
<parameter id="k2" name="k2" value="0" constant="true"> | ||
</parameter> | ||
<parameter id="k1" value="0" constant="true"/> | ||
<parameter id="k2" value="0" constant="true"/> | ||
<parameter id="a0" value="1" constant="true"/> | ||
</listOfParameters> | ||
|
||
<listOfInitialAssignments> | ||
<initialAssignment symbol="A"> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<ci> a0 </ci> | ||
</math> | ||
</initialAssignment> | ||
</listOfInitialAssignments> | ||
|
||
<listOfReactions> | ||
<reaction id="fwd" name="fwd" reversible="false"> | ||
<reaction id="fwd" reversible="false"> | ||
<listOfReactants> | ||
<speciesReference species="A" stoichiometry="1"/> | ||
<speciesReference species="A" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="B" stoichiometry="1"/> | ||
<speciesReference species="B" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> compartment </ci> | ||
<ci> compartment_ </ci> | ||
<ci> k1 </ci> | ||
<ci> A </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
<reaction id="rev" name="rev" reversible="false"> | ||
<reaction id="rev" reversible="false"> | ||
<listOfReactants> | ||
<speciesReference species="B" stoichiometry="1"/> | ||
<speciesReference species="B" stoichiometry="1" constant="true"/> | ||
</listOfReactants> | ||
<listOfProducts> | ||
<speciesReference species="A" stoichiometry="1"/> | ||
<speciesReference species="A" stoichiometry="1" constant="true"/> | ||
</listOfProducts> | ||
<kineticLaw> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML"> | ||
<apply> | ||
<times/> | ||
<ci> compartment </ci> | ||
<ci> compartment_ </ci> | ||
<ci> k2 </ci> | ||
<ci> B </ci> | ||
</apply> | ||
</math> | ||
</kineticLaw> | ||
</reaction> | ||
</listOfReactions> | ||
|
||
</model> | ||
</sbml> |
Oops, something went wrong.