File tree 1 file changed +7
-9
lines changed
docs/example_models/journal_models
1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 6
6
Phos_2 .not_phos , Phos_2 .phos_1 , Phos_2 .phos_2
7
7
8
8
# A and B can be linked
9
- A = Link1 * Link2
9
+ A = Link1 * Link2
10
10
B = New (Link1 )
11
11
# C can be phosporolized twice
12
- C = Phos_2 * Link2
12
+ C = Phos_2 * Link2
13
13
14
14
# Rev stands for reversible reaction
15
- Rev [A .nl_1 + B .nl_1 >> A .l_1 + B .l_1 ][1e-4 , lambda r : 0.1 * r ]
15
+ Rev [A .nl_1 + B .nl_1 >> A .l_1 + B .l_1 ][1e-4 , lambda r : 0.1 * r ]
16
16
17
17
# A binds to C
18
- A .nl_2 .l_1 + C .nl_2 .not_phos >> A .l_2 .l_1 + C .l_2 .not_phos [1e-4 ]
18
+ A .nl_2 .l_1 + C .nl_2 .not_phos >> A .l_2 .l_1 + C .l_2 .not_phos [1e-4 ]
19
19
20
20
# C is phosphoralized releases A
21
- C .l_2 .not_phos + A .l_2 .l_1 >> C .nl_2 .phos_1 + A .nl_2 .l_1 [lambda r : 1 * r ]
21
+ C .l_2 .not_phos + A .l_2 .l_1 >> C .nl_2 .phos_1 + A .nl_2 .l_1 [lambda r : 1 * r ]
22
22
23
23
# C phosporalized binds to unbound A
24
- A .l_2 .nl_1 + C .nl_2 .phos_1 >> A .l_2 .nl_1 + C .l_2 .phos_1 [1e-4 ]
24
+ A .l_2 .nl_1 + C .nl_2 .phos_1 >> A .l_2 .nl_1 + C .l_2 .phos_1 [1e-4 ]
25
25
26
26
# Final C site is modified
27
- A .l_2 .nl_1 + C .l_2 .phos_1 >> A .nl_2 .nl_1 + C .nl_2 .phos_2 [lambda r : r ]
27
+ A .l_2 .nl_1 + C .l_2 .phos_1 >> A .nl_2 .nl_1 + C .nl_2 .phos_2 [lambda r : r ]
28
28
29
29
# initial conditions
30
30
A (1000 ), B (1000 ), C (10000 )
31
31
S = Simulation (A | B | C )
32
32
print (S .compile ())
33
-
34
-
You can’t perform that action at this time.
0 commit comments