Mercurial > repos > sybila > ebcsgen_simulation
comparison test-data/repressilator.bcsl.model @ 0:179d32e79968 draft
planemo upload for repository https://github.com/sybila/galaxytools/tree/master/tools/ebcsgen commit 33b83dc8c71401922b087400fa1f4080e9abe170
author | sybila |
---|---|
date | Tue, 04 Oct 2022 13:15:48 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:179d32e79968 |
---|---|
1 #! rules | |
2 X()::rep => @ k1*[X()::rep] | |
3 Y()::rep => @ k2*[Y()::rep] | |
4 Z()::rep => @ k1*[Z()::rep] | |
5 => X()::rep @ 5**4/(5**4+[Z()::rep]**4) | |
6 => Y()::rep @ 5**4/(5**4+[X()::rep]**4) | |
7 => Z()::rep @ 5**4/(5**4+[Y()::rep]**4) | |
8 | |
9 #! inits | |
10 1 X()::rep | |
11 1 Y()::rep | |
12 | |
13 #! definitions | |
14 k1 = 0.05 | |
15 k2 = 0.12 |