-
Notifications
You must be signed in to change notification settings - Fork 8
/
rebeccamycin.js
191 lines (187 loc) · 2.67 KB
/
rebeccamycin.js
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// <rebFH operon> then <rebOD operon> then <rebCP operon> then <rebT operon>
let rebeccamycinAglyconBiosynthesisGeneCluster =
'PT7_a then RiboJ then rebF then rebH then ECK120033736 then ' +
'PT7_b then RiboJ10 then rebO then rebD then ECK120029600 then ' +
'PT7_c then RiboJ51 then rebC then rebP then ECK120033737 then ' +
'PT7_d then AraJ then rebT then galK then rmlA then L3S2P55';
// <rebG TU> then <rebODCPM operon> then <rebRFUH operon> then <rebT TU>
let rebeccamycinBiosynthesisGeneCluster =
'p1 then rebG then t1 then ' +
'p2 then rebO then rebD then rebC then rebP then rebM then t2 then ' +
'p3 then rebR then rebF then rebU then rebH then t3 then ' +
'p4 then rebT then t4';
let rebeccamycinGOLDBAR = `(${rebeccamycinAglyconBiosynthesisGeneCluster}) merge (${rebeccamycinBiosynthesisGeneCluster})`;
let biosynthesisCategories = {
"PT7_a":{
"promoter": [
"PT7_WTa",
"PT7_3a",
"PT7_1a"
]
},
"PT7_b":{
"promoter": [
"PT7_WTb",
"PT7_3b",
"PT7_1b"
]
},
"PT7_c":{
"promoter": [
"PT7_WTc",
"PT7_1c"
]
},
"PT7_d":{
"promoter": [
"PT7_WTd",
"PT7_3d",
"PT7_1d"
]
},
"p1":{
"promoter": [
"p1"
]
},
"p2":{
"promoter": [
"p2"
]
},
"p3":{
"promoter": [
"p3"
]
},
"p4":{
"promoter": [
"p4"
]
},
"RiboJ":{
"ribozyme": [
"RiboJ"
]
},
"RiboJ10":{
"ribozyme": [
"RiboJ10"
]
},
"RiboJ51":{
"ribozyme": [
"RiboJ51"
]
},
"AraJ":{
"ribozyme": [
"AraJ"
]
},
"rebG":{
"cds": [
"rebG"
]
},
"rebU":{
"cds": [
"rebU"
]
},
"rebR":{
"cds": [
"rebR"
]
},
"rebF":{
"cds": [
"rebF"
]
},
"rebH":{
"cds": [
"rebH"
]
},
"rebO":{
"cds": [
"rebO"
]
},
"rebD":{
"cds": [
"rebD"
]
},
"rebC":{
"cds": [
"rebC"
]
},
"rebP":{
"cds": [
"rebP"
]
},
"rebM":{
"cds": [
"rebM"
]
},
"rebT":{
"cds": [
"rebT"
]
},
"galK":{
"cds": [
"galK"
]
},
"rmlA":{
"cds": [
"rmlA"
]
},
"ECK120033736":{
"terminator": [
"ECK120033736"
]
},
"ECK120029600":{
"terminator": [
"ECK120029600"
]
},
"ECK120033737":{
"terminator": [
"ECK120033737"
]
},
"L3S2P55":{
"terminator": [
"L3S2P55"
]
},
"t1":{
"terminator": [
"t1"
]
},
"t2":{
"terminator": [
"t2"
]
},
"t3":{
"terminator": [
"t3"
]
},
"t4":{
"terminator": [
"t4"
]
}
};