forked from BuildACell/bioCRNpyler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCRN.xml
80 lines (80 loc) · 3.16 KB
/
CRN.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" level="3" version="1">
<model substanceUnits="mole" timeUnits="second" volumeUnits="litre" areaUnits="square_metre" lengthUnits="metre" extentUnits="mole">
<listOfUnitDefinitions>
<unitDefinition id="square_metre">
<listOfUnits>
<unit kind="metre" exponent="2" scale="0" multiplier="1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment id="default" spatialDimensions="3" size="1e-06" constant="true"/>
</listOfCompartments>
<listOfSpecies>
<species id="dna_G" name="dna_G" compartment="default" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/>
<species id="protein_A" name="protein_A" compartment="default" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/>
<species id="protein_X" name="protein_X" compartment="default" initialConcentration="0" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"/>
</listOfSpecies>
<listOfReactions>
<reaction id="r0" reversible="false" fast="false">
<annotation>
<PropensityType> type=proportionalhillnegative k=1.0 K=10.0 n=2 s1=protein_A d=dna_G</PropensityType>
</annotation>
<listOfReactants>
<speciesReference species="dna_G" stoichiometry="1" constant="false"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="dna_G" constant="false"/>
<speciesReference species="protein_X" constant="false"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<divide/>
<apply>
<times/>
<ci> k </ci>
<ci> dna_G </ci>
</apply>
<apply>
<plus/>
<apply>
<power/>
<ci> protein_A </ci>
<ci> n </ci>
</apply>
<ci> K </ci>
</apply>
</apply>
</math>
<listOfLocalParameters>
<localParameter id="k" value="1"/>
<localParameter id="n" value="2"/>
<localParameter id="K" value="10"/>
</listOfLocalParameters>
</kineticLaw>
</reaction>
<reaction id="r1" reversible="false" fast="false">
<annotation>
<PropensityType> type=massaction k=0.1</PropensityType>
</annotation>
<listOfReactants>
<speciesReference species="protein_X" stoichiometry="1" constant="false"/>
</listOfReactants>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> k </ci>
<ci> protein_X </ci>
</apply>
</math>
<listOfLocalParameters>
<localParameter id="k" value="0.1"/>
</listOfLocalParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>