bio-plates 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,41 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "BioPlates" do
4
+ context "reading data from a supplied CSV file" do
5
+ it "reads data and checks for suitable headings" do
6
+ expect{BioPlates.read("spec/fixtures/4x96.csv")}.not_to raise_error
7
+ expect{BioPlates.read("spec/fixtures/rowname-error.csv")}.to raise_error(RuntimeError)
8
+ end
9
+
10
+ it "adds leading zeroes to Column strings" do
11
+ p = BioPlates.read("spec/fixtures/4x96.csv")
12
+ expect(p.first[1].wells.first.column).to eq "01"
13
+ end
14
+
15
+ it "converts Well to Row and Column if required" do
16
+ p = BioPlates.read("spec/fixtures/emptyrowcol.csv")
17
+ expect(p.first[1].wells.first.row).to eq "A"
18
+ expect(p.first[1].wells.first.column).to eq "01"
19
+ end
20
+
21
+ end
22
+
23
+ context "When fewer than four plates are supplied" do
24
+ p96 = BioPlates.read("spec/fixtures/4x96.csv")
25
+ twoplates = {"Plate1" => p96["Plate1"].dup,"Plate2" => p96["Plate2"].dup}
26
+ it "warns and re-uses previous plates" do
27
+ expect(BioPlates).to receive(:warn)
28
+ expect(BioPlates.quadrants(twoplates).wells.last.annotation[:drug]).to eq "si-last-p2"
29
+ end
30
+ end
31
+
32
+ context "When four 96-well plates are supplied" do
33
+ p96 = BioPlates.read("spec/fixtures/4x96.csv")
34
+ p384 = BioPlates.read("spec/fixtures/384.csv")
35
+ p384.first[1].wells.map(&:index!)
36
+ it "Forms a new 384-well BioPlates::Plate object with correct well annotations" do
37
+ expect(BioPlates.quadrants(p96).wells.map{|w| w.well}).to eq p384.first[1].wells.map{|w| w.well}
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1 @@
1
+ Plate,Well,Row,Column,Drug,Conc,Junk,siRNA
@@ -0,0 +1,385 @@
1
+ Plate,Well,Row,Column,drug,Conc
2
+ Plate1,,A,1,si1,5
3
+ Plate1,,A,2,si2,5
4
+ Plate1,,A,3,si3,5
5
+ Plate1,,A,4,si4,5
6
+ Plate1,,A,5,si5,5
7
+ Plate1,,A,6,si6,5
8
+ Plate1,,A,7,si7,5
9
+ Plate1,,A,8,si8,5
10
+ Plate1,,A,9,si9,5
11
+ Plate1,,A,10,si10,5
12
+ Plate1,,A,11,si11,5
13
+ Plate1,,A,12,si12,5
14
+ Plate1,,B,1,si1,5
15
+ Plate1,,B,2,si2,5
16
+ Plate1,,B,3,si3,5
17
+ Plate1,,B,4,si4,5
18
+ Plate1,,B,5,si5,5
19
+ Plate1,,B,6,si6,5
20
+ Plate1,,B,7,si7,5
21
+ Plate1,,B,8,si8,5
22
+ Plate1,,B,9,si9,5
23
+ Plate1,,B,10,si10,5
24
+ Plate1,,B,11,si11,5
25
+ Plate1,,B,12,si12,5
26
+ Plate1,,C,1,si1,5
27
+ Plate1,,C,2,si2,5
28
+ Plate1,,C,3,si3,5
29
+ Plate1,,C,4,si4,5
30
+ Plate1,,C,5,si5,5
31
+ Plate1,,C,6,si6,5
32
+ Plate1,,C,7,si7,5
33
+ Plate1,,C,8,si8,5
34
+ Plate1,,C,9,si9,5
35
+ Plate1,,C,10,si10,5
36
+ Plate1,,C,11,si11,5
37
+ Plate1,,C,12,si12,5
38
+ Plate1,,D,1,si1,5
39
+ Plate1,,D,2,si2,5
40
+ Plate1,,D,3,si3,5
41
+ Plate1,,D,4,si4,5
42
+ Plate1,,D,5,si5,5
43
+ Plate1,,D,6,si6,5
44
+ Plate1,,D,7,si7,5
45
+ Plate1,,D,8,si8,5
46
+ Plate1,,D,9,si9,5
47
+ Plate1,,D,10,si10,5
48
+ Plate1,,D,11,si11,5
49
+ Plate1,,D,12,si12,5
50
+ Plate1,,E,1,si1,5
51
+ Plate1,,E,2,si2,5
52
+ Plate1,,E,3,si3,5
53
+ Plate1,,E,4,si4,5
54
+ Plate1,,E,5,si5,5
55
+ Plate1,,E,6,si6,5
56
+ Plate1,,E,7,si7,5
57
+ Plate1,,E,8,si8,5
58
+ Plate1,,E,9,si9,5
59
+ Plate1,,E,10,si10,5
60
+ Plate1,,E,11,si11,5
61
+ Plate1,,E,12,si12,5
62
+ Plate1,,F,1,si1,5
63
+ Plate1,,F,2,si2,5
64
+ Plate1,,F,3,si3,5
65
+ Plate1,,F,4,si4,5
66
+ Plate1,,F,5,si5,5
67
+ Plate1,,F,6,si6,5
68
+ Plate1,,F,7,si7,5
69
+ Plate1,,F,8,si8,5
70
+ Plate1,,F,9,si9,5
71
+ Plate1,,F,10,si10,5
72
+ Plate1,,F,11,si11,5
73
+ Plate1,,F,12,si12,5
74
+ Plate1,,G,1,si1,5
75
+ Plate1,,G,2,si2,5
76
+ Plate1,,G,3,si3,5
77
+ Plate1,,G,4,si4,5
78
+ Plate1,,G,5,si5,5
79
+ Plate1,,G,6,si6,5
80
+ Plate1,,G,7,si7,5
81
+ Plate1,,G,8,si8,5
82
+ Plate1,,G,9,si9,5
83
+ Plate1,,G,10,si10,5
84
+ Plate1,,G,11,si11,5
85
+ Plate1,,G,12,si12,5
86
+ Plate1,,H,1,si1,5
87
+ Plate1,,H,2,si2,5
88
+ Plate1,,H,3,si3,5
89
+ Plate1,,H,4,si4,5
90
+ Plate1,,H,5,si5,5
91
+ Plate1,,H,6,si6,5
92
+ Plate1,,H,7,si7,5
93
+ Plate1,,H,8,si8,5
94
+ Plate1,,H,9,si9,5
95
+ Plate1,,H,10,si10,5
96
+ Plate1,,H,11,si11,5
97
+ Plate1,,H,12,si12,5
98
+ Plate2,,A,1,si1,5
99
+ Plate2,,A,2,si2,5
100
+ Plate2,,A,3,si3,5
101
+ Plate2,,A,4,si4,5
102
+ Plate2,,A,5,si5,5
103
+ Plate2,,A,6,si6,5
104
+ Plate2,,A,7,si7,5
105
+ Plate2,,A,8,si8,5
106
+ Plate2,,A,9,si9,5
107
+ Plate2,,A,10,si10,5
108
+ Plate2,,A,11,si11,5
109
+ Plate2,,A,12,si12,5
110
+ Plate2,,B,1,si1,5
111
+ Plate2,,B,2,si2,5
112
+ Plate2,,B,3,si3,5
113
+ Plate2,,B,4,si4,5
114
+ Plate2,,B,5,si5,5
115
+ Plate2,,B,6,si6,5
116
+ Plate2,,B,7,si7,5
117
+ Plate2,,B,8,si8,5
118
+ Plate2,,B,9,si9,5
119
+ Plate2,,B,10,si10,5
120
+ Plate2,,B,11,si11,5
121
+ Plate2,,B,12,si12,5
122
+ Plate2,,C,1,si1,5
123
+ Plate2,,C,2,si2,5
124
+ Plate2,,C,3,si3,5
125
+ Plate2,,C,4,si4,5
126
+ Plate2,,C,5,si5,5
127
+ Plate2,,C,6,si6,5
128
+ Plate2,,C,7,si7,5
129
+ Plate2,,C,8,si8,5
130
+ Plate2,,C,9,si9,5
131
+ Plate2,,C,10,si10,5
132
+ Plate2,,C,11,si11,5
133
+ Plate2,,C,12,si12,5
134
+ Plate2,,D,1,si1,5
135
+ Plate2,,D,2,si2,5
136
+ Plate2,,D,3,si3,5
137
+ Plate2,,D,4,si4,5
138
+ Plate2,,D,5,si5,5
139
+ Plate2,,D,6,si6,5
140
+ Plate2,,D,7,si7,5
141
+ Plate2,,D,8,si8,5
142
+ Plate2,,D,9,si9,5
143
+ Plate2,,D,10,si10,5
144
+ Plate2,,D,11,si11,5
145
+ Plate2,,D,12,si12,5
146
+ Plate2,,E,1,si1,5
147
+ Plate2,,E,2,si2,5
148
+ Plate2,,E,3,si3,5
149
+ Plate2,,E,4,si4,5
150
+ Plate2,,E,5,si5,5
151
+ Plate2,,E,6,si6,5
152
+ Plate2,,E,7,si7,5
153
+ Plate2,,E,8,si8,5
154
+ Plate2,,E,9,si9,5
155
+ Plate2,,E,10,si10,5
156
+ Plate2,,E,11,si11,5
157
+ Plate2,,E,12,si12,5
158
+ Plate2,,F,1,si1,5
159
+ Plate2,,F,2,si2,5
160
+ Plate2,,F,3,si3,5
161
+ Plate2,,F,4,si4,5
162
+ Plate2,,F,5,si5,5
163
+ Plate2,,F,6,si6,5
164
+ Plate2,,F,7,si7,5
165
+ Plate2,,F,8,si8,5
166
+ Plate2,,F,9,si9,5
167
+ Plate2,,F,10,si10,5
168
+ Plate2,,F,11,si11,5
169
+ Plate2,,F,12,si12,5
170
+ Plate2,,G,1,si1,5
171
+ Plate2,,G,2,si2,5
172
+ Plate2,,G,3,si3,5
173
+ Plate2,,G,4,si4,5
174
+ Plate2,,G,5,si5,5
175
+ Plate2,,G,6,si6,5
176
+ Plate2,,G,7,si7,5
177
+ Plate2,,G,8,si8,5
178
+ Plate2,,G,9,si9,5
179
+ Plate2,,G,10,si10,5
180
+ Plate2,,G,11,si11,5
181
+ Plate2,,G,12,si12,5
182
+ Plate2,,H,1,si1,5
183
+ Plate2,,H,2,si2,5
184
+ Plate2,,H,3,si3,5
185
+ Plate2,,H,4,si4,5
186
+ Plate2,,H,5,si5,5
187
+ Plate2,,H,6,si6,5
188
+ Plate2,,H,7,si7,5
189
+ Plate2,,H,8,si8,5
190
+ Plate2,,H,9,si9,5
191
+ Plate2,,H,10,si10,5
192
+ Plate2,,H,11,si11,5
193
+ Plate2,,H,12,si-last-p2,5
194
+ Plate3,,A,1,si1,5
195
+ Plate3,,A,2,si2,5
196
+ Plate3,,A,3,si3,5
197
+ Plate3,,A,4,si4,5
198
+ Plate3,,A,5,si5,5
199
+ Plate3,,A,6,si6,5
200
+ Plate3,,A,7,si7,5
201
+ Plate3,,A,8,si8,5
202
+ Plate3,,A,9,si9,5
203
+ Plate3,,A,10,si10,5
204
+ Plate3,,A,11,si11,5
205
+ Plate3,,A,12,si12,5
206
+ Plate3,,B,1,si1,5
207
+ Plate3,,B,2,si2,5
208
+ Plate3,,B,3,si3,5
209
+ Plate3,,B,4,si4,5
210
+ Plate3,,B,5,si5,5
211
+ Plate3,,B,6,si6,5
212
+ Plate3,,B,7,si7,5
213
+ Plate3,,B,8,si8,5
214
+ Plate3,,B,9,si9,5
215
+ Plate3,,B,10,si10,5
216
+ Plate3,,B,11,si11,5
217
+ Plate3,,B,12,si12,5
218
+ Plate3,,C,1,si1,5
219
+ Plate3,,C,2,si2,5
220
+ Plate3,,C,3,si3,5
221
+ Plate3,,C,4,si4,5
222
+ Plate3,,C,5,si5,5
223
+ Plate3,,C,6,si6,5
224
+ Plate3,,C,7,si7,5
225
+ Plate3,,C,8,si8,5
226
+ Plate3,,C,9,si9,5
227
+ Plate3,,C,10,si10,5
228
+ Plate3,,C,11,si11,5
229
+ Plate3,,C,12,si12,5
230
+ Plate3,,D,1,si1,5
231
+ Plate3,,D,2,si2,5
232
+ Plate3,,D,3,si3,5
233
+ Plate3,,D,4,si4,5
234
+ Plate3,,D,5,si5,5
235
+ Plate3,,D,6,si6,5
236
+ Plate3,,D,7,si7,5
237
+ Plate3,,D,8,si8,5
238
+ Plate3,,D,9,si9,5
239
+ Plate3,,D,10,si10,5
240
+ Plate3,,D,11,si11,5
241
+ Plate3,,D,12,si12,5
242
+ Plate3,,E,1,si1,5
243
+ Plate3,,E,2,si2,5
244
+ Plate3,,E,3,si3,5
245
+ Plate3,,E,4,si4,5
246
+ Plate3,,E,5,si5,5
247
+ Plate3,,E,6,si6,5
248
+ Plate3,,E,7,si7,5
249
+ Plate3,,E,8,si8,5
250
+ Plate3,,E,9,si9,5
251
+ Plate3,,E,10,si10,5
252
+ Plate3,,E,11,si11,5
253
+ Plate3,,E,12,si12,5
254
+ Plate3,,F,1,si1,5
255
+ Plate3,,F,2,si2,5
256
+ Plate3,,F,3,si3,5
257
+ Plate3,,F,4,si4,5
258
+ Plate3,,F,5,si5,5
259
+ Plate3,,F,6,si6,5
260
+ Plate3,,F,7,si7,5
261
+ Plate3,,F,8,si8,5
262
+ Plate3,,F,9,si9,5
263
+ Plate3,,F,10,si10,5
264
+ Plate3,,F,11,si11,5
265
+ Plate3,,F,12,si12,5
266
+ Plate3,,G,1,si1,5
267
+ Plate3,,G,2,si2,5
268
+ Plate3,,G,3,si3,5
269
+ Plate3,,G,4,si4,5
270
+ Plate3,,G,5,si5,5
271
+ Plate3,,G,6,si6,5
272
+ Plate3,,G,7,si7,5
273
+ Plate3,,G,8,si8,5
274
+ Plate3,,G,9,si9,5
275
+ Plate3,,G,10,si10,5
276
+ Plate3,,G,11,si11,5
277
+ Plate3,,G,12,si12,5
278
+ Plate3,,H,1,si1,5
279
+ Plate3,,H,2,si2,5
280
+ Plate3,,H,3,si3,5
281
+ Plate3,,H,4,si4,5
282
+ Plate3,,H,5,si5,5
283
+ Plate3,,H,6,si6,5
284
+ Plate3,,H,7,si7,5
285
+ Plate3,,H,8,si8,5
286
+ Plate3,,H,9,si9,5
287
+ Plate3,,H,10,si10,5
288
+ Plate3,,H,11,si11,5
289
+ Plate3,,H,12,si12,5
290
+ Plate4,,A,1,si1,5
291
+ Plate4,,A,2,si2,5
292
+ Plate4,,A,3,si3,5
293
+ Plate4,,A,4,si4,5
294
+ Plate4,,A,5,si5,5
295
+ Plate4,,A,6,si6,5
296
+ Plate4,,A,7,si7,5
297
+ Plate4,,A,8,si8,5
298
+ Plate4,,A,9,si9,5
299
+ Plate4,,A,10,si10,5
300
+ Plate4,,A,11,si11,5
301
+ Plate4,,A,12,si12,5
302
+ Plate4,,B,1,si1,5
303
+ Plate4,,B,2,si2,5
304
+ Plate4,,B,3,si3,5
305
+ Plate4,,B,4,si4,5
306
+ Plate4,,B,5,si5,5
307
+ Plate4,,B,6,si6,5
308
+ Plate4,,B,7,si7,5
309
+ Plate4,,B,8,si8,5
310
+ Plate4,,B,9,si9,5
311
+ Plate4,,B,10,si10,5
312
+ Plate4,,B,11,si11,5
313
+ Plate4,,B,12,si12,5
314
+ Plate4,,C,1,si1,5
315
+ Plate4,,C,2,si2,5
316
+ Plate4,,C,3,si3,5
317
+ Plate4,,C,4,si4,5
318
+ Plate4,,C,5,si5,5
319
+ Plate4,,C,6,si6,5
320
+ Plate4,,C,7,si7,5
321
+ Plate4,,C,8,si8,5
322
+ Plate4,,C,9,si9,5
323
+ Plate4,,C,10,si10,5
324
+ Plate4,,C,11,si11,5
325
+ Plate4,,C,12,si12,5
326
+ Plate4,,D,1,si1,5
327
+ Plate4,,D,2,si2,5
328
+ Plate4,,D,3,si3,5
329
+ Plate4,,D,4,si4,5
330
+ Plate4,,D,5,si5,5
331
+ Plate4,,D,6,si6,5
332
+ Plate4,,D,7,si7,5
333
+ Plate4,,D,8,si8,5
334
+ Plate4,,D,9,si9,5
335
+ Plate4,,D,10,si10,5
336
+ Plate4,,D,11,si11,5
337
+ Plate4,,D,12,si12,5
338
+ Plate4,,E,1,si1,5
339
+ Plate4,,E,2,si2,5
340
+ Plate4,,E,3,si3,5
341
+ Plate4,,E,4,si4,5
342
+ Plate4,,E,5,si5,5
343
+ Plate4,,E,6,si6,5
344
+ Plate4,,E,7,si7,5
345
+ Plate4,,E,8,si8,5
346
+ Plate4,,E,9,si9,5
347
+ Plate4,,E,10,si10,5
348
+ Plate4,,E,11,si11,5
349
+ Plate4,,E,12,si12,5
350
+ Plate4,,F,1,si1,5
351
+ Plate4,,F,2,si2,5
352
+ Plate4,,F,3,si3,5
353
+ Plate4,,F,4,si4,5
354
+ Plate4,,F,5,si5,5
355
+ Plate4,,F,6,si6,5
356
+ Plate4,,F,7,si7,5
357
+ Plate4,,F,8,si8,5
358
+ Plate4,,F,9,si9,5
359
+ Plate4,,F,10,si10,5
360
+ Plate4,,F,11,si11,5
361
+ Plate4,,F,12,si12,5
362
+ Plate4,,G,1,si1,5
363
+ Plate4,,G,2,si2,5
364
+ Plate4,,G,3,si3,5
365
+ Plate4,,G,4,si4,5
366
+ Plate4,,G,5,si5,5
367
+ Plate4,,G,6,si6,5
368
+ Plate4,,G,7,si7,5
369
+ Plate4,,G,8,si8,5
370
+ Plate4,,G,9,si9,5
371
+ Plate4,,G,10,si10,5
372
+ Plate4,,G,11,si11,5
373
+ Plate4,,G,12,si12,5
374
+ Plate4,,H,1,si1,5
375
+ Plate4,,H,2,si2,5
376
+ Plate4,,H,3,si3,5
377
+ Plate4,,H,4,si4,5
378
+ Plate4,,H,5,si5,5
379
+ Plate4,,H,6,si6,5
380
+ Plate4,,H,7,si7,5
381
+ Plate4,,H,8,si8,5
382
+ Plate4,,H,9,si9,5
383
+ Plate4,,H,10,si10,5
384
+ Plate4,,H,11,si11,5
385
+ Plate4,,H,12,si12,5
@@ -0,0 +1,385 @@
1
+ Row,Column,Plate,gene,Well
2
+ A,1,1,FUBP1,A01
3
+ A,2,1,FUBP1,A02
4
+ A,3,1,FUBP1,A03
5
+ A,4,1,FUBP1,A04
6
+ A,5,1,FUBP1,A05
7
+ A,6,1,FUBP1,A06
8
+ A,7,1,FUBP1,A07
9
+ A,8,1,FUBP1,A08
10
+ A,9,1,FUBP1,A09
11
+ A,10,1,FUBP1,A10
12
+ A,11,1,FUBP1,A11
13
+ A,12,1,FUBP1,A12
14
+ B,1,1,PDHA1,B01
15
+ B,2,1,PDHA1,B02
16
+ B,3,1,PDHA1,B03
17
+ B,4,1,PDHA1,B04
18
+ B,5,1,PDHA1,B05
19
+ B,6,1,PDHA1,B06
20
+ B,7,1,PDHA1,B07
21
+ B,8,1,PDHA1,B08
22
+ B,9,1,PDHA1,B09
23
+ B,10,1,PDHA1,B10
24
+ B,11,1,PDHA1,B11
25
+ B,12,1,PDHA1,B12
26
+ C,1,1,RBBP7,C01
27
+ C,2,1,RBBP7,C02
28
+ C,3,1,RBBP7,C03
29
+ C,4,1,RBBP7,C04
30
+ C,5,1,RBBP7,C05
31
+ C,6,1,RBBP7,C06
32
+ C,7,1,RBBP7,C07
33
+ C,8,1,RBBP7,C08
34
+ C,9,1,RBBP7,C09
35
+ C,10,1,RBBP7,C10
36
+ C,11,1,RBBP7,C11
37
+ C,12,1,RBBP7,C12
38
+ D,1,1,MGEA5,D01
39
+ D,2,1,MGEA5,D02
40
+ D,3,1,MGEA5,D03
41
+ D,4,1,MGEA5,D04
42
+ D,5,1,MGEA5,D05
43
+ D,6,1,MGEA5,D06
44
+ D,7,1,MGEA5,D07
45
+ D,8,1,MGEA5,D08
46
+ D,9,1,MGEA5,D09
47
+ D,10,1,MGEA5,D10
48
+ D,11,1,MGEA5,D11
49
+ D,12,1,MGEA5,D12
50
+ E,1,1,TLE4,E01
51
+ E,2,1,TLE4,E02
52
+ E,3,1,TLE4,E03
53
+ E,4,1,TLE4,E04
54
+ E,5,1,TLE4,E05
55
+ E,6,1,TLE4,E06
56
+ E,7,1,TLE4,E07
57
+ E,8,1,TLE4,E08
58
+ E,9,1,TLE4,E09
59
+ E,10,1,TLE4,E10
60
+ E,11,1,TLE4,E11
61
+ E,12,1,TLE4,E12
62
+ F,1,1,HIP1,F01
63
+ F,2,1,HIP1,F02
64
+ F,3,1,HIP1,F03
65
+ F,4,1,HIP1,F04
66
+ F,5,1,HIP1,F05
67
+ F,6,1,HIP1,F06
68
+ F,7,1,HIP1,F07
69
+ F,8,1,HIP1,F08
70
+ F,9,1,HIP1,F09
71
+ F,10,1,HIP1,F10
72
+ F,11,1,HIP1,F11
73
+ F,12,1,HIP1,F12
74
+ G,1,1,KLF6,G01
75
+ G,2,1,KLF6,G02
76
+ G,3,1,KLF6,G03
77
+ G,4,1,KLF6,G04
78
+ G,5,1,KLF6,G05
79
+ G,6,1,KLF6,G06
80
+ G,7,1,KLF6,G07
81
+ G,8,1,KLF6,G08
82
+ G,9,1,KLF6,G09
83
+ G,10,1,KLF6,G10
84
+ G,11,1,KLF6,G11
85
+ G,12,1,KLF6,G12
86
+ H,1,1,DENND5B,H01
87
+ H,2,1,DENND5B,H02
88
+ H,3,1,DENND5B,H03
89
+ H,4,1,DENND5B,H04
90
+ H,5,1,DENND5B,H05
91
+ H,6,1,DENND5B,H06
92
+ H,7,1,DENND5B,H07
93
+ H,8,1,DENND5B,H08
94
+ H,9,1,DENND5B,H09
95
+ H,10,1,DENND5B,H10
96
+ H,11,1,DENND5B,H11
97
+ H,12,1,DENND5B,H12
98
+ A,1,2,siCON1,A01
99
+ A,2,2,siCON1,A02
100
+ A,3,2,siCON1,A03
101
+ A,4,2,siCON1,A04
102
+ A,5,2,siCON1,A05
103
+ A,6,2,siCON1,A06
104
+ A,7,2,siCON1,A07
105
+ A,8,2,siCON1,A08
106
+ A,9,2,siCON1,A09
107
+ A,10,2,siCON1,A10
108
+ A,11,2,siCON1,A11
109
+ A,12,2,siCON1,A12
110
+ B,1,2,siCON1,B01
111
+ B,2,2,siCON1,B02
112
+ B,3,2,siCON1,B03
113
+ B,4,2,siCON1,B04
114
+ B,5,2,siCON1,B05
115
+ B,6,2,siCON1,B06
116
+ B,7,2,siCON1,B07
117
+ B,8,2,siCON1,B08
118
+ B,9,2,siCON1,B09
119
+ B,10,2,siCON1,B10
120
+ B,11,2,siCON1,B11
121
+ B,12,2,siCON1,B12
122
+ C,1,2,BRCA1,C01
123
+ C,2,2,BRCA1,C02
124
+ C,3,2,BRCA1,C03
125
+ C,4,2,BRCA1,C04
126
+ C,5,2,BRCA1,C05
127
+ C,6,2,BRCA1,C06
128
+ C,7,2,BRCA1,C07
129
+ C,8,2,BRCA1,C08
130
+ C,9,2,BRCA1,C09
131
+ C,10,2,BRCA1,C10
132
+ C,11,2,BRCA1,C11
133
+ C,12,2,BRCA1,C12
134
+ D,1,2,MPG,D01
135
+ D,2,2,MPG,D02
136
+ D,3,2,MPG,D03
137
+ D,4,2,MPG,D04
138
+ D,5,2,MPG,D05
139
+ D,6,2,MPG,D06
140
+ D,7,2,MPG,D07
141
+ D,8,2,MPG,D08
142
+ D,9,2,MPG,D09
143
+ D,10,2,MPG,D10
144
+ D,11,2,MPG,D11
145
+ D,12,2,MPG,D12
146
+ E,1,2,Allstar,E01
147
+ E,2,2,Allstar,E02
148
+ E,3,2,Allstar,E03
149
+ E,4,2,Allstar,E04
150
+ E,5,2,Allstar,E05
151
+ E,6,2,Allstar,E06
152
+ E,7,2,Allstar,E07
153
+ E,8,2,Allstar,E08
154
+ E,9,2,Allstar,E09
155
+ E,10,2,Allstar,E10
156
+ E,11,2,Allstar,E11
157
+ E,12,2,Allstar,E12
158
+ F,1,2,Allstar,F01
159
+ F,2,2,Allstar,F02
160
+ F,3,2,Allstar,F03
161
+ F,4,2,Allstar,F04
162
+ F,5,2,Allstar,F05
163
+ F,6,2,Allstar,F06
164
+ F,7,2,Allstar,F07
165
+ F,8,2,Allstar,F08
166
+ F,9,2,Allstar,F09
167
+ F,10,2,Allstar,F10
168
+ F,11,2,Allstar,F11
169
+ F,12,2,Allstar,F12
170
+ G,1,2,PLK1,G01
171
+ G,2,2,PLK1,G02
172
+ G,3,2,PLK1,G03
173
+ G,4,2,PLK1,G04
174
+ G,5,2,PLK1,G05
175
+ G,6,2,PLK1,G06
176
+ G,7,2,PLK1,G07
177
+ G,8,2,PLK1,G08
178
+ G,9,2,PLK1,G09
179
+ G,10,2,PLK1,G10
180
+ G,11,2,PLK1,G11
181
+ G,12,2,PLK1,G12
182
+ H,1,2,PLK1,H01
183
+ H,2,2,PLK1,H02
184
+ H,3,2,PLK1,H03
185
+ H,4,2,PLK1,H04
186
+ H,5,2,PLK1,H05
187
+ H,6,2,PLK1,H06
188
+ H,7,2,PLK1,H07
189
+ H,8,2,PLK1,H08
190
+ H,9,2,PLK1,H09
191
+ H,10,2,PLK1,H10
192
+ H,11,2,PLK1,H11
193
+ H,12,2,PLK1,H12
194
+ A,1,3,DNAH2,A01
195
+ A,2,3,DNAH2,A02
196
+ A,3,3,DNAH2,A03
197
+ A,4,3,DNAH2,A04
198
+ A,5,3,DNAH2,A05
199
+ A,6,3,DNAH2,A06
200
+ A,7,3,DNAH2,A07
201
+ A,8,3,DNAH2,A08
202
+ A,9,3,DNAH2,A09
203
+ A,10,3,DNAH2,A10
204
+ A,11,3,DNAH2,A11
205
+ A,12,3,DNAH2,A12
206
+ B,1,3,TTL,B01
207
+ B,2,3,TTL,B02
208
+ B,3,3,TTL,B03
209
+ B,4,3,TTL,B04
210
+ B,5,3,TTL,B05
211
+ B,6,3,TTL,B06
212
+ B,7,3,TTL,B07
213
+ B,8,3,TTL,B08
214
+ B,9,3,TTL,B09
215
+ B,10,3,TTL,B10
216
+ B,11,3,TTL,B11
217
+ B,12,3,TTL,B12
218
+ C,1,3,TBK1,C01
219
+ C,2,3,TBK1,C02
220
+ C,3,3,TBK1,C03
221
+ C,4,3,TBK1,C04
222
+ C,5,3,TBK1,C05
223
+ C,6,3,TBK1,C06
224
+ C,7,3,TBK1,C07
225
+ C,8,3,TBK1,C08
226
+ C,9,3,TBK1,C09
227
+ C,10,3,TBK1,C10
228
+ C,11,3,TBK1,C11
229
+ C,12,3,TBK1,C12
230
+ D,1,3,PSMC3IP,D01
231
+ D,2,3,PSMC3IP,D02
232
+ D,3,3,PSMC3IP,D03
233
+ D,4,3,PSMC3IP,D04
234
+ D,5,3,PSMC3IP,D05
235
+ D,6,3,PSMC3IP,D06
236
+ D,7,3,PSMC3IP,D07
237
+ D,8,3,PSMC3IP,D08
238
+ D,9,3,PSMC3IP,D09
239
+ D,10,3,PSMC3IP,D10
240
+ D,11,3,PSMC3IP,D11
241
+ D,12,3,PSMC3IP,D12
242
+ E,1,3,PTPN2,E01
243
+ E,2,3,PTPN2,E02
244
+ E,3,3,PTPN2,E03
245
+ E,4,3,PTPN2,E04
246
+ E,5,3,PTPN2,E05
247
+ E,6,3,PTPN2,E06
248
+ E,7,3,PTPN2,E07
249
+ E,8,3,PTPN2,E08
250
+ E,9,3,PTPN2,E09
251
+ E,10,3,PTPN2,E10
252
+ E,11,3,PTPN2,E11
253
+ E,12,3,PTPN2,E12
254
+ F,1,3,HIRA,F01
255
+ F,2,3,HIRA,F02
256
+ F,3,3,HIRA,F03
257
+ F,4,3,HIRA,F04
258
+ F,5,3,HIRA,F05
259
+ F,6,3,HIRA,F06
260
+ F,7,3,HIRA,F07
261
+ F,8,3,HIRA,F08
262
+ F,9,3,HIRA,F09
263
+ F,10,3,HIRA,F10
264
+ F,11,3,HIRA,F11
265
+ F,12,3,HIRA,F12
266
+ G,1,3,COPS7A,G01
267
+ G,2,3,COPS7A,G02
268
+ G,3,3,COPS7A,G03
269
+ G,4,3,COPS7A,G04
270
+ G,5,3,COPS7A,G05
271
+ G,6,3,COPS7A,G06
272
+ G,7,3,COPS7A,G07
273
+ G,8,3,COPS7A,G08
274
+ G,9,3,COPS7A,G09
275
+ G,10,3,COPS7A,G10
276
+ G,11,3,COPS7A,G11
277
+ G,12,3,COPS7A,G12
278
+ H,1,3,RIC8,H01
279
+ H,2,3,RIC8,H02
280
+ H,3,3,RIC8,H03
281
+ H,4,3,RIC8,H04
282
+ H,5,3,RIC8,H05
283
+ H,6,3,RIC8,H06
284
+ H,7,3,RIC8,H07
285
+ H,8,3,RIC8,H08
286
+ H,9,3,RIC8,H09
287
+ H,10,3,RIC8,H10
288
+ H,11,3,RIC8,H11
289
+ H,12,3,RIC8,H12
290
+ A,1,4,siCON1,A01
291
+ A,2,4,siCON1,A02
292
+ A,3,4,siCON1,A03
293
+ A,4,4,siCON1,A04
294
+ A,5,4,siCON1,A05
295
+ A,6,4,siCON1,A06
296
+ A,7,4,siCON1,A07
297
+ A,8,4,siCON1,A08
298
+ A,9,4,siCON1,A09
299
+ A,10,4,siCON1,A10
300
+ A,11,4,siCON1,A11
301
+ A,12,4,siCON1,A12
302
+ B,1,4,siCON1,B01
303
+ B,2,4,siCON1,B02
304
+ B,3,4,siCON1,B03
305
+ B,4,4,siCON1,B04
306
+ B,5,4,siCON1,B05
307
+ B,6,4,siCON1,B06
308
+ B,7,4,siCON1,B07
309
+ B,8,4,siCON1,B08
310
+ B,9,4,siCON1,B09
311
+ B,10,4,siCON1,B10
312
+ B,11,4,siCON1,B11
313
+ B,12,4,siCON1,B12
314
+ C,1,4,BRCA2,C01
315
+ C,2,4,BRCA2,C02
316
+ C,3,4,BRCA2,C03
317
+ C,4,4,BRCA2,C04
318
+ C,5,4,BRCA2,C05
319
+ C,6,4,BRCA2,C06
320
+ C,7,4,BRCA2,C07
321
+ C,8,4,BRCA2,C08
322
+ C,9,4,BRCA2,C09
323
+ C,10,4,BRCA2,C10
324
+ C,11,4,BRCA2,C11
325
+ C,12,4,BRCA2,C12
326
+ D,1,4,TDG,D01
327
+ D,2,4,TDG,D02
328
+ D,3,4,TDG,D03
329
+ D,4,4,TDG,D04
330
+ D,5,4,TDG,D05
331
+ D,6,4,TDG,D06
332
+ D,7,4,TDG,D07
333
+ D,8,4,TDG,D08
334
+ D,9,4,TDG,D09
335
+ D,10,4,TDG,D10
336
+ D,11,4,TDG,D11
337
+ D,12,4,TDG,D12
338
+ E,1,4,Allstar,E01
339
+ E,2,4,Allstar,E02
340
+ E,3,4,Allstar,E03
341
+ E,4,4,Allstar,E04
342
+ E,5,4,Allstar,E05
343
+ E,6,4,Allstar,E06
344
+ E,7,4,Allstar,E07
345
+ E,8,4,Allstar,E08
346
+ E,9,4,Allstar,E09
347
+ E,10,4,Allstar,E10
348
+ E,11,4,Allstar,E11
349
+ E,12,4,Allstar,E12
350
+ F,1,4,Allstar,F01
351
+ F,2,4,Allstar,F02
352
+ F,3,4,Allstar,F03
353
+ F,4,4,Allstar,F04
354
+ F,5,4,Allstar,F05
355
+ F,6,4,Allstar,F06
356
+ F,7,4,Allstar,F07
357
+ F,8,4,Allstar,F08
358
+ F,9,4,Allstar,F09
359
+ F,10,4,Allstar,F10
360
+ F,11,4,Allstar,F11
361
+ F,12,4,Allstar,F12
362
+ G,1,4,PLK1,G01
363
+ G,2,4,PLK1,G02
364
+ G,3,4,PLK1,G03
365
+ G,4,4,PLK1,G04
366
+ G,5,4,PLK1,G05
367
+ G,6,4,PLK1,G06
368
+ G,7,4,PLK1,G07
369
+ G,8,4,PLK1,G08
370
+ G,9,4,PLK1,G09
371
+ G,10,4,PLK1,G10
372
+ G,11,4,PLK1,G11
373
+ G,12,4,PLK1,G12
374
+ H,1,4,PLK1,H01
375
+ H,2,4,PLK1,H02
376
+ H,3,4,PLK1,H03
377
+ H,4,4,PLK1,H04
378
+ H,5,4,PLK1,H05
379
+ H,6,4,PLK1,H06
380
+ H,7,4,PLK1,H07
381
+ H,8,4,PLK1,H08
382
+ H,9,4,PLK1,H09
383
+ H,10,4,PLK1,H10
384
+ H,11,4,PLK1,H11
385
+ H,12,4,PLK1,H12