-
Notifications
You must be signed in to change notification settings - Fork 1
/
recombinant-50A5-50random.json
56 lines (56 loc) · 1.36 KB
/
recombinant-50A5-50random.json
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
{
"variables": {
"length": 100,
"root to AB rate": 0.1,
"mutant rate": 0.05,
"mutant count": 9
},
"sequences": [
{
"id": "root",
"length": "%(length)d"
},
{
"id": "A",
"from id": "root",
"length": "%(length)d",
"mutation rate": "%(root to AB rate)f"
},
{
"from id": "A",
"id prefix": "A-mutant-",
"length": "%(length)d",
"count": "%(mutant count)d",
"mutation rate": "%(mutant rate)f",
"ratchet": true
},
{
"id": "B",
"from id": "root",
"length": "%(length)d",
"mutation rate": "%(root to AB rate)f"
},
{
"from id": "B",
"id prefix": "B-mutant-",
"length": "%(length)d",
"count": "%(mutant count)d",
"mutation rate": "%(mutant rate)f",
"ratchet": true
},
{
"id": "recombinant",
"sections": [
{
"from id": "A-mutant-5",
"start": 1,
"length": 50
},
{
"start": 51,
"length": 50
}
]
}
]
}