@datagrok/proteomics 1.0.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/CHANGELOG.md +52 -3
  2. package/CLAUDE.md +178 -0
  3. package/README.md +195 -3
  4. package/detectors.js +152 -9
  5. package/dist/package-test.js +1 -1744
  6. package/dist/package-test.js.map +1 -1
  7. package/dist/package.js +1 -146
  8. package/dist/package.js.map +1 -1
  9. package/docs/personas-and-capabilities.md +165 -0
  10. package/files/demo/README.md +264 -0
  11. package/files/demo/cptac-spike-in.txt +1571 -0
  12. package/files/demo/enrichment-demo.csv +120 -0
  13. package/files/demo/fragpipe-smoke-test.tsv +11 -0
  14. package/files/demo/proteinGroups.txt +28 -0
  15. package/files/demo/spectronaut-hye-candidates.tsv +94 -0
  16. package/files/demo/spectronaut-hye-demo.tsv +8761 -0
  17. package/files/demo/spectronaut-hye-mix.tsv +8761 -0
  18. package/files/demo/spectronaut-hye-precursor-golden.json +938 -0
  19. package/files/demo/spectronaut-hye-precursor-golden.tsv +235 -0
  20. package/files/demo/spectronaut-hye-precursor.tsv +493 -0
  21. package/images/enrichment-crosslink.png +0 -0
  22. package/images/enrichment-term-selected.png +0 -0
  23. package/images/hero.png +0 -0
  24. package/images/pipeline.svg +80 -0
  25. package/package.json +87 -63
  26. package/scripts/deqms_de.R +60 -0
  27. package/scripts/limma_de.R +42 -0
  28. package/scripts/vsn_normalize.R +19 -0
  29. package/src/analysis/differential-expression.ts +450 -0
  30. package/src/analysis/enrichment-export.ts +101 -0
  31. package/src/analysis/enrichment.ts +602 -0
  32. package/src/analysis/experiment-setup.ts +199 -0
  33. package/src/analysis/imputation.ts +407 -0
  34. package/src/analysis/log2-scale.ts +139 -0
  35. package/src/analysis/normalization.ts +255 -0
  36. package/src/analysis/pca.ts +254 -0
  37. package/src/analysis/spc-storage.ts +515 -0
  38. package/src/analysis/spc.ts +544 -0
  39. package/src/analysis/subcellular-location.ts +431 -0
  40. package/src/demo/enrichment-demo.ts +94 -0
  41. package/src/demo/proteomics-demo.ts +123 -0
  42. package/src/global.d.ts +15 -0
  43. package/src/menu.ts +133 -0
  44. package/src/package-api.ts +136 -14
  45. package/src/package-test.ts +45 -20
  46. package/src/package.g.ts +161 -0
  47. package/src/package.ts +1029 -17
  48. package/src/panels/protein-focus.ts +63 -0
  49. package/src/panels/published-analysis-panel.ts +151 -0
  50. package/src/panels/uniprot-panel.ts +349 -0
  51. package/src/parsers/fragpipe-parser.ts +200 -0
  52. package/src/parsers/generic-parser.ts +197 -0
  53. package/src/parsers/maxquant-parser.ts +162 -0
  54. package/src/parsers/shared-utils.ts +163 -0
  55. package/src/parsers/spectronaut-candidates-parser.ts +307 -0
  56. package/src/parsers/spectronaut-parser.ts +604 -0
  57. package/src/publishing/assert-published-shape.ts +260 -0
  58. package/src/publishing/post-open-recovery.ts +104 -0
  59. package/src/publishing/publish-project.ts +515 -0
  60. package/src/publishing/publish-settings.ts +59 -0
  61. package/src/publishing/publish-state.ts +316 -0
  62. package/src/publishing/share-dialog.ts +171 -0
  63. package/src/publishing/trim-dataframe.ts +247 -0
  64. package/src/tests/analysis.ts +658 -0
  65. package/src/tests/enrichment-export.ts +61 -0
  66. package/src/tests/enrichment-visualization.ts +340 -0
  67. package/src/tests/enrichment.ts +224 -0
  68. package/src/tests/fragpipe-e2e.ts +74 -0
  69. package/src/tests/fragpipe-parser.ts +147 -0
  70. package/src/tests/gene-label-resolver.ts +387 -0
  71. package/src/tests/generic-parser.ts +152 -0
  72. package/src/tests/group-mean-correlation.ts +139 -0
  73. package/src/tests/log2-scale.ts +93 -0
  74. package/src/tests/organisms.ts +56 -0
  75. package/src/tests/parsers.ts +182 -0
  76. package/src/tests/publish-roundtrip.ts +584 -0
  77. package/src/tests/publish-spike.ts +377 -0
  78. package/src/tests/qc-dashboard.ts +210 -0
  79. package/src/tests/smart-pathway-filter.ts +193 -0
  80. package/src/tests/spc-formula-lines-spike.ts +129 -0
  81. package/src/tests/spc.ts +640 -0
  82. package/src/tests/spectronaut-candidates-e2e.ts +140 -0
  83. package/src/tests/spectronaut-candidates-parser.ts +398 -0
  84. package/src/tests/spectronaut-parser.ts +668 -0
  85. package/src/tests/subcellular-location.ts +361 -0
  86. package/src/tests/uniprot-panel.ts +202 -0
  87. package/src/tests/volcano.ts +603 -0
  88. package/src/utils/column-detection.ts +28 -0
  89. package/src/utils/gene-label-resolver.ts +443 -0
  90. package/src/utils/organisms.ts +82 -0
  91. package/src/utils/proteomics-types.ts +30 -0
  92. package/src/viewers/enrichment-viewers.ts +274 -0
  93. package/src/viewers/group-mean-correlation.ts +218 -0
  94. package/src/viewers/heatmap.ts +168 -0
  95. package/src/viewers/pca-plot.ts +169 -0
  96. package/src/viewers/qc-computations.ts +266 -0
  97. package/src/viewers/qc-dashboard.ts +176 -0
  98. package/src/viewers/spc-dashboard.ts +755 -0
  99. package/src/viewers/volcano.ts +690 -0
  100. package/test-console-output-1.log +2055 -0
  101. package/test-record-1.mp4 +0 -0
  102. package/tools/derive-precursor-golden-sidecar.mjs +81 -0
  103. package/tools/generate-enrichment-fixture.sh +160 -0
  104. package/tools/generate-spectronaut-candidates-fixture.mjs +212 -0
  105. package/tools/generate-spectronaut-precursor-fixture.mjs +128 -0
  106. package/tools/spectronaut-aggregate.sh +46 -0
  107. package/tools/spectronaut-aggregate.sql +80 -0
  108. package/tsconfig.json +18 -71
  109. package/webpack.config.js +86 -45
  110. package/.eslintignore +0 -1
  111. package/.eslintrc.json +0 -56
  112. package/LICENSE +0 -674
  113. package/package.png +0 -0
  114. package/scripts/number_antibody.py +0 -190
  115. package/scripts/number_antibody_abnumber.py +0 -177
  116. package/scripts/number_antibody_anarci.py +0 -200
@@ -0,0 +1,938 @@
1
+ {
2
+ "P00001CondB_3": {
3
+ "quantity": 1001,
4
+ "qvalue": 0.001
5
+ },
6
+ "P00002CondA_2": {
7
+ "quantity": 1002,
8
+ "qvalue": 0.001
9
+ },
10
+ "P00002CondB_1": {
11
+ "quantity": 1002,
12
+ "qvalue": 0.001
13
+ },
14
+ "P00003CondB_3": {
15
+ "quantity": 1003,
16
+ "qvalue": 0.001
17
+ },
18
+ "P00005CondB_3": {
19
+ "quantity": 1005,
20
+ "qvalue": 0.001
21
+ },
22
+ "P00006CondB_1": {
23
+ "quantity": 1006,
24
+ "qvalue": 0.001
25
+ },
26
+ "P00007CondA_3": {
27
+ "quantity": 1007,
28
+ "qvalue": 0.001
29
+ },
30
+ "P00008CondA_1": {
31
+ "quantity": 1008,
32
+ "qvalue": 0.001
33
+ },
34
+ "P00008CondB_2": {
35
+ "quantity": 1008,
36
+ "qvalue": 0.001
37
+ },
38
+ "P00010CondB_2": {
39
+ "quantity": 1010,
40
+ "qvalue": 0.001
41
+ },
42
+ "P00014CondA_1": {
43
+ "quantity": 1014,
44
+ "qvalue": 0.001
45
+ },
46
+ "P00014CondB_3": {
47
+ "quantity": 1014,
48
+ "qvalue": 0.001
49
+ },
50
+ "P00015CondB_1": {
51
+ "quantity": 1015,
52
+ "qvalue": 0.001
53
+ },
54
+ "P00016CondA_1": {
55
+ "quantity": 1016,
56
+ "qvalue": 0.001
57
+ },
58
+ "P00018CondA_3": {
59
+ "quantity": 1018,
60
+ "qvalue": 0.001
61
+ },
62
+ "P00018CondB_2": {
63
+ "quantity": 1018,
64
+ "qvalue": 0.001
65
+ },
66
+ "P00019CondB_3": {
67
+ "quantity": 1019,
68
+ "qvalue": 0.001
69
+ },
70
+ "P00020CondB_3": {
71
+ "quantity": 1020,
72
+ "qvalue": 0.001
73
+ },
74
+ "P00022CondA_1": {
75
+ "quantity": 1022,
76
+ "qvalue": 0.001
77
+ },
78
+ "P00023CondB_1": {
79
+ "quantity": 1023,
80
+ "qvalue": 0.001
81
+ },
82
+ "P00025CondA_2": {
83
+ "quantity": 1025,
84
+ "qvalue": 0.001
85
+ },
86
+ "P00026CondA_3": {
87
+ "quantity": 1026,
88
+ "qvalue": 0.001
89
+ },
90
+ "P00027CondA_2": {
91
+ "quantity": 1027,
92
+ "qvalue": 0.001
93
+ },
94
+ "P00030CondB_2": {
95
+ "quantity": 1030,
96
+ "qvalue": 0.001
97
+ },
98
+ "P00031CondA_2": {
99
+ "quantity": 1031,
100
+ "qvalue": 0.001
101
+ },
102
+ "P00032CondA_3": {
103
+ "quantity": 1032,
104
+ "qvalue": 0.001
105
+ },
106
+ "P00035CondA_3": {
107
+ "quantity": 1035,
108
+ "qvalue": 0.001
109
+ },
110
+ "P70002CondA_3": {
111
+ "quantity": 6500,
112
+ "qvalue": 0
113
+ },
114
+ "P00000CondA_2": {
115
+ "quantity": 1000,
116
+ "qvalue": 0.001
117
+ },
118
+ "P00000CondB_3": {
119
+ "quantity": 1000,
120
+ "qvalue": 0.001
121
+ },
122
+ "P00001CondA_3": {
123
+ "quantity": 1001,
124
+ "qvalue": 0.001
125
+ },
126
+ "P00004CondA_3": {
127
+ "quantity": 1004,
128
+ "qvalue": 0.001
129
+ },
130
+ "P00004CondB_3": {
131
+ "quantity": 1004,
132
+ "qvalue": 0.001
133
+ },
134
+ "P00005CondA_1": {
135
+ "quantity": 1005,
136
+ "qvalue": 0.001
137
+ },
138
+ "P00006CondA_3": {
139
+ "quantity": 1006,
140
+ "qvalue": 0.001
141
+ },
142
+ "P00007CondB_1": {
143
+ "quantity": 1007,
144
+ "qvalue": 0.001
145
+ },
146
+ "P00009CondA_2": {
147
+ "quantity": 1009,
148
+ "qvalue": 0.001
149
+ },
150
+ "P00009CondB_3": {
151
+ "quantity": 1009,
152
+ "qvalue": 0.001
153
+ },
154
+ "P00010CondA_3": {
155
+ "quantity": 1010,
156
+ "qvalue": 0.001
157
+ },
158
+ "P00011CondA_3": {
159
+ "quantity": 1011,
160
+ "qvalue": 0.001
161
+ },
162
+ "P00011CondB_3": {
163
+ "quantity": 1011,
164
+ "qvalue": 0.001
165
+ },
166
+ "P00012CondA_1": {
167
+ "quantity": 1012,
168
+ "qvalue": 0.001
169
+ },
170
+ "P00013CondA_2": {
171
+ "quantity": 1013,
172
+ "qvalue": 0.001
173
+ },
174
+ "P00013CondB_3": {
175
+ "quantity": 1013,
176
+ "qvalue": 0.001
177
+ },
178
+ "P00016CondB_2": {
179
+ "quantity": 1016,
180
+ "qvalue": 0.001
181
+ },
182
+ "P00019CondA_3": {
183
+ "quantity": 1019,
184
+ "qvalue": 0.001
185
+ },
186
+ "P00020CondA_1": {
187
+ "quantity": 1020,
188
+ "qvalue": 0.001
189
+ },
190
+ "P00021CondB_2": {
191
+ "quantity": 1021,
192
+ "qvalue": 0.001
193
+ },
194
+ "P00023CondA_2": {
195
+ "quantity": 1023,
196
+ "qvalue": 0.001
197
+ },
198
+ "P00026CondB_3": {
199
+ "quantity": 1026,
200
+ "qvalue": 0.001
201
+ },
202
+ "P00027CondB_2": {
203
+ "quantity": 1027,
204
+ "qvalue": 0.001
205
+ },
206
+ "P00029CondA_3": {
207
+ "quantity": 1029,
208
+ "qvalue": 0.001
209
+ },
210
+ "P00029CondB_2": {
211
+ "quantity": 1029,
212
+ "qvalue": 0.001
213
+ },
214
+ "P00033CondA_1": {
215
+ "quantity": 1033,
216
+ "qvalue": 0.001
217
+ },
218
+ "P00033CondB_3": {
219
+ "quantity": 1033,
220
+ "qvalue": 0.001
221
+ },
222
+ "P00034CondB_3": {
223
+ "quantity": 1034,
224
+ "qvalue": 0.001
225
+ },
226
+ "P70001CondA_1": {
227
+ "quantity": 7000,
228
+ "qvalue": 0.002
229
+ },
230
+ "P70002CondB_3": {
231
+ "quantity": 6500,
232
+ "qvalue": 0
233
+ },
234
+ "P70003CondA_2": {
235
+ "quantity": 6600,
236
+ "qvalue": 0
237
+ },
238
+ "P00001CondB_1": {
239
+ "quantity": 1001,
240
+ "qvalue": 0.001
241
+ },
242
+ "P00002CondB_3": {
243
+ "quantity": 1002,
244
+ "qvalue": 0.001
245
+ },
246
+ "P00003CondB_1": {
247
+ "quantity": 1003,
248
+ "qvalue": 0.001
249
+ },
250
+ "P00005CondB_1": {
251
+ "quantity": 1005,
252
+ "qvalue": 0.001
253
+ },
254
+ "P00006CondB_3": {
255
+ "quantity": 1006,
256
+ "qvalue": 0.001
257
+ },
258
+ "P00007CondA_1": {
259
+ "quantity": 1007,
260
+ "qvalue": 0.001
261
+ },
262
+ "P00008CondA_3": {
263
+ "quantity": 1008,
264
+ "qvalue": 0.001
265
+ },
266
+ "P00014CondA_3": {
267
+ "quantity": 1014,
268
+ "qvalue": 0.001
269
+ },
270
+ "P00014CondB_1": {
271
+ "quantity": 1014,
272
+ "qvalue": 0.001
273
+ },
274
+ "P00015CondA_2": {
275
+ "quantity": 1015,
276
+ "qvalue": 0.001
277
+ },
278
+ "P00015CondB_3": {
279
+ "quantity": 1015,
280
+ "qvalue": 0.001
281
+ },
282
+ "P00016CondA_3": {
283
+ "quantity": 1016,
284
+ "qvalue": 0.001
285
+ },
286
+ "P00017CondA_2": {
287
+ "quantity": 1017,
288
+ "qvalue": 0.001
289
+ },
290
+ "P00017CondB_2": {
291
+ "quantity": 1017,
292
+ "qvalue": 0.001
293
+ },
294
+ "P00018CondA_1": {
295
+ "quantity": 1018,
296
+ "qvalue": 0.001
297
+ },
298
+ "P00019CondB_1": {
299
+ "quantity": 1019,
300
+ "qvalue": 0.001
301
+ },
302
+ "P00020CondB_1": {
303
+ "quantity": 1020,
304
+ "qvalue": 0.001
305
+ },
306
+ "P00022CondA_3": {
307
+ "quantity": 1022,
308
+ "qvalue": 0.001
309
+ },
310
+ "P00022CondB_2": {
311
+ "quantity": 1022,
312
+ "qvalue": 0.001
313
+ },
314
+ "P00023CondB_3": {
315
+ "quantity": 1023,
316
+ "qvalue": 0.001
317
+ },
318
+ "P00024CondA_2": {
319
+ "quantity": 1024,
320
+ "qvalue": 0.001
321
+ },
322
+ "P00026CondA_1": {
323
+ "quantity": 1026,
324
+ "qvalue": 0.001
325
+ },
326
+ "P00028CondA_2": {
327
+ "quantity": 1028,
328
+ "qvalue": 0.001
329
+ },
330
+ "P00028CondB_2": {
331
+ "quantity": 1028,
332
+ "qvalue": 0.001
333
+ },
334
+ "P00032CondA_1": {
335
+ "quantity": 1032,
336
+ "qvalue": 0.001
337
+ },
338
+ "P00032CondB_2": {
339
+ "quantity": 1032,
340
+ "qvalue": 0.001
341
+ },
342
+ "P00034CondA_2": {
343
+ "quantity": 1034,
344
+ "qvalue": 0.001
345
+ },
346
+ "P00035CondA_1": {
347
+ "quantity": 1035,
348
+ "qvalue": 0.001
349
+ },
350
+ "P00035CondB_2": {
351
+ "quantity": 1035,
352
+ "qvalue": 0.001
353
+ },
354
+ "P70002CondA_1": {
355
+ "quantity": 6500,
356
+ "qvalue": 0
357
+ },
358
+ "P70003CondB_2": {
359
+ "quantity": 6600,
360
+ "qvalue": 0
361
+ },
362
+ "P00001CondB_2": {
363
+ "quantity": 1001,
364
+ "qvalue": 0.001
365
+ },
366
+ "P00002CondA_3": {
367
+ "quantity": 1002,
368
+ "qvalue": 0.001
369
+ },
370
+ "P00003CondB_2": {
371
+ "quantity": 1003,
372
+ "qvalue": 0.001
373
+ },
374
+ "P00005CondB_2": {
375
+ "quantity": 1005,
376
+ "qvalue": 0.001
377
+ },
378
+ "P00007CondA_2": {
379
+ "quantity": 1007,
380
+ "qvalue": 0.001
381
+ },
382
+ "P00008CondB_3": {
383
+ "quantity": 1008,
384
+ "qvalue": 0.001
385
+ },
386
+ "P00010CondB_3": {
387
+ "quantity": 1010,
388
+ "qvalue": 0.001
389
+ },
390
+ "P00014CondB_2": {
391
+ "quantity": 1014,
392
+ "qvalue": 0.001
393
+ },
394
+ "P00015CondA_1": {
395
+ "quantity": 1015,
396
+ "qvalue": 0.001
397
+ },
398
+ "P00017CondA_1": {
399
+ "quantity": 1017,
400
+ "qvalue": 0.001
401
+ },
402
+ "P00017CondB_1": {
403
+ "quantity": 1017,
404
+ "qvalue": 0.001
405
+ },
406
+ "P00018CondA_2": {
407
+ "quantity": 1018,
408
+ "qvalue": 0.001
409
+ },
410
+ "P00018CondB_3": {
411
+ "quantity": 1018,
412
+ "qvalue": 0.001
413
+ },
414
+ "P00019CondB_2": {
415
+ "quantity": 1019,
416
+ "qvalue": 0.001
417
+ },
418
+ "P00020CondB_2": {
419
+ "quantity": 1020,
420
+ "qvalue": 0.001
421
+ },
422
+ "P00022CondB_1": {
423
+ "quantity": 1022,
424
+ "qvalue": 0.001
425
+ },
426
+ "P00024CondA_1": {
427
+ "quantity": 1024,
428
+ "qvalue": 0.001
429
+ },
430
+ "P00025CondA_3": {
431
+ "quantity": 1025,
432
+ "qvalue": 0.001
433
+ },
434
+ "P00026CondA_2": {
435
+ "quantity": 1026,
436
+ "qvalue": 0.001
437
+ },
438
+ "P00027CondA_3": {
439
+ "quantity": 1027,
440
+ "qvalue": 0.001
441
+ },
442
+ "P00028CondA_1": {
443
+ "quantity": 1028,
444
+ "qvalue": 0.001
445
+ },
446
+ "P00028CondB_1": {
447
+ "quantity": 1028,
448
+ "qvalue": 0.001
449
+ },
450
+ "P00030CondB_3": {
451
+ "quantity": 1030,
452
+ "qvalue": 0.001
453
+ },
454
+ "P00031CondA_3": {
455
+ "quantity": 1031,
456
+ "qvalue": 0.001
457
+ },
458
+ "P00032CondA_2": {
459
+ "quantity": 1032,
460
+ "qvalue": 0.001
461
+ },
462
+ "P00032CondB_1": {
463
+ "quantity": 1032,
464
+ "qvalue": 0.001
465
+ },
466
+ "P00034CondA_1": {
467
+ "quantity": 1034,
468
+ "qvalue": 0.001
469
+ },
470
+ "P00035CondA_2": {
471
+ "quantity": 1035,
472
+ "qvalue": 0.001
473
+ },
474
+ "P00035CondB_1": {
475
+ "quantity": 1035,
476
+ "qvalue": 0.001
477
+ },
478
+ "P70002CondA_2": {
479
+ "quantity": 6500,
480
+ "qvalue": 0
481
+ },
482
+ "P70003CondB_1": {
483
+ "quantity": 6600,
484
+ "qvalue": 0
485
+ },
486
+ "P00000CondA_3": {
487
+ "quantity": 1000,
488
+ "qvalue": 0.001
489
+ },
490
+ "P00000CondB_2": {
491
+ "quantity": 1000,
492
+ "qvalue": 0.001
493
+ },
494
+ "P00001CondA_2": {
495
+ "quantity": 1001,
496
+ "qvalue": 0.001
497
+ },
498
+ "P00003CondA_1": {
499
+ "quantity": 1003,
500
+ "qvalue": 0.001
501
+ },
502
+ "P00004CondA_2": {
503
+ "quantity": 1004,
504
+ "qvalue": 0.001
505
+ },
506
+ "P00004CondB_2": {
507
+ "quantity": 1004,
508
+ "qvalue": 0.001
509
+ },
510
+ "P00006CondA_2": {
511
+ "quantity": 1006,
512
+ "qvalue": 0.001
513
+ },
514
+ "P00009CondA_3": {
515
+ "quantity": 1009,
516
+ "qvalue": 0.001
517
+ },
518
+ "P00009CondB_2": {
519
+ "quantity": 1009,
520
+ "qvalue": 0.001
521
+ },
522
+ "P00010CondA_2": {
523
+ "quantity": 1010,
524
+ "qvalue": 0.001
525
+ },
526
+ "P00011CondA_2": {
527
+ "quantity": 1011,
528
+ "qvalue": 0.001
529
+ },
530
+ "P00011CondB_2": {
531
+ "quantity": 1011,
532
+ "qvalue": 0.001
533
+ },
534
+ "P00012CondB_1": {
535
+ "quantity": 1012,
536
+ "qvalue": 0.001
537
+ },
538
+ "P00013CondA_3": {
539
+ "quantity": 1013,
540
+ "qvalue": 0.001
541
+ },
542
+ "P00013CondB_2": {
543
+ "quantity": 1013,
544
+ "qvalue": 0.001
545
+ },
546
+ "P00016CondB_3": {
547
+ "quantity": 1016,
548
+ "qvalue": 0.001
549
+ },
550
+ "P00019CondA_2": {
551
+ "quantity": 1019,
552
+ "qvalue": 0.001
553
+ },
554
+ "P00021CondA_1": {
555
+ "quantity": 1021,
556
+ "qvalue": 0.001
557
+ },
558
+ "P00021CondB_3": {
559
+ "quantity": 1021,
560
+ "qvalue": 0.001
561
+ },
562
+ "P00023CondA_3": {
563
+ "quantity": 1023,
564
+ "qvalue": 0.001
565
+ },
566
+ "P00024CondB_1": {
567
+ "quantity": 1024,
568
+ "qvalue": 0.001
569
+ },
570
+ "P00025CondB_1": {
571
+ "quantity": 1025,
572
+ "qvalue": 0.001
573
+ },
574
+ "P00026CondB_2": {
575
+ "quantity": 1026,
576
+ "qvalue": 0.001
577
+ },
578
+ "P00027CondB_3": {
579
+ "quantity": 1027,
580
+ "qvalue": 0.001
581
+ },
582
+ "P00029CondA_2": {
583
+ "quantity": 1029,
584
+ "qvalue": 0.001
585
+ },
586
+ "P00029CondB_3": {
587
+ "quantity": 1029,
588
+ "qvalue": 0.001
589
+ },
590
+ "P00030CondA_1": {
591
+ "quantity": 1030,
592
+ "qvalue": 0.001
593
+ },
594
+ "P00031CondB_1": {
595
+ "quantity": 1031,
596
+ "qvalue": 0.001
597
+ },
598
+ "P00033CondB_2": {
599
+ "quantity": 1033,
600
+ "qvalue": 0.001
601
+ },
602
+ "P00034CondB_2": {
603
+ "quantity": 1034,
604
+ "qvalue": 0.001
605
+ },
606
+ "P70001CondB_1": {
607
+ "quantity": 7000,
608
+ "qvalue": 0.002
609
+ },
610
+ "P70002CondB_2": {
611
+ "quantity": 6500,
612
+ "qvalue": 0
613
+ },
614
+ "P70003CondA_3": {
615
+ "quantity": 6600,
616
+ "qvalue": 0
617
+ },
618
+ "P00000CondB_1": {
619
+ "quantity": 1000,
620
+ "qvalue": 0.001
621
+ },
622
+ "P00001CondA_1": {
623
+ "quantity": 1001,
624
+ "qvalue": 0.001
625
+ },
626
+ "P00003CondA_2": {
627
+ "quantity": 1003,
628
+ "qvalue": 0.001
629
+ },
630
+ "P00004CondA_1": {
631
+ "quantity": 1004,
632
+ "qvalue": 0.001
633
+ },
634
+ "P00004CondB_1": {
635
+ "quantity": 1004,
636
+ "qvalue": 0.001
637
+ },
638
+ "P00005CondA_3": {
639
+ "quantity": 1005,
640
+ "qvalue": 0.001
641
+ },
642
+ "P00006CondA_1": {
643
+ "quantity": 1006,
644
+ "qvalue": 0.001
645
+ },
646
+ "P00007CondB_3": {
647
+ "quantity": 1007,
648
+ "qvalue": 0.001
649
+ },
650
+ "P00009CondB_1": {
651
+ "quantity": 1009,
652
+ "qvalue": 0.001
653
+ },
654
+ "P00010CondA_1": {
655
+ "quantity": 1010,
656
+ "qvalue": 0.001
657
+ },
658
+ "P00011CondA_1": {
659
+ "quantity": 1011,
660
+ "qvalue": 0.001
661
+ },
662
+ "P00011CondB_1": {
663
+ "quantity": 1011,
664
+ "qvalue": 0.001
665
+ },
666
+ "P00012CondA_3": {
667
+ "quantity": 1012,
668
+ "qvalue": 0.001
669
+ },
670
+ "P00012CondB_2": {
671
+ "quantity": 1012,
672
+ "qvalue": 0.001
673
+ },
674
+ "P00013CondB_1": {
675
+ "quantity": 1013,
676
+ "qvalue": 0.001
677
+ },
678
+ "P00019CondA_1": {
679
+ "quantity": 1019,
680
+ "qvalue": 0.001
681
+ },
682
+ "P00020CondA_3": {
683
+ "quantity": 1020,
684
+ "qvalue": 0.001
685
+ },
686
+ "P00021CondA_2": {
687
+ "quantity": 1021,
688
+ "qvalue": 0.001
689
+ },
690
+ "P00024CondB_2": {
691
+ "quantity": 1024,
692
+ "qvalue": 0.001
693
+ },
694
+ "P00025CondB_2": {
695
+ "quantity": 1025,
696
+ "qvalue": 0.001
697
+ },
698
+ "P00026CondB_1": {
699
+ "quantity": 1026,
700
+ "qvalue": 0.001
701
+ },
702
+ "P00029CondA_1": {
703
+ "quantity": 1029,
704
+ "qvalue": 0.001
705
+ },
706
+ "P00030CondA_2": {
707
+ "quantity": 1030,
708
+ "qvalue": 0.001
709
+ },
710
+ "P00031CondB_2": {
711
+ "quantity": 1031,
712
+ "qvalue": 0.001
713
+ },
714
+ "P00033CondA_3": {
715
+ "quantity": 1033,
716
+ "qvalue": 0.001
717
+ },
718
+ "P00033CondB_1": {
719
+ "quantity": 1033,
720
+ "qvalue": 0.001
721
+ },
722
+ "P00034CondB_1": {
723
+ "quantity": 1034,
724
+ "qvalue": 0.001
725
+ },
726
+ "P70001CondA_3": {
727
+ "quantity": 7000,
728
+ "qvalue": 0.002
729
+ },
730
+ "P70001CondB_2": {
731
+ "quantity": 7000,
732
+ "qvalue": 0.002
733
+ },
734
+ "P70002CondB_1": {
735
+ "quantity": 6500,
736
+ "qvalue": 0
737
+ },
738
+ "P00000CondA_1": {
739
+ "quantity": 1000,
740
+ "qvalue": 0.001
741
+ },
742
+ "P00003CondA_3": {
743
+ "quantity": 1003,
744
+ "qvalue": 0.001
745
+ },
746
+ "P00005CondA_2": {
747
+ "quantity": 1005,
748
+ "qvalue": 0.001
749
+ },
750
+ "P00007CondB_2": {
751
+ "quantity": 1007,
752
+ "qvalue": 0.001
753
+ },
754
+ "P00009CondA_1": {
755
+ "quantity": 1009,
756
+ "qvalue": 0.001
757
+ },
758
+ "P00012CondA_2": {
759
+ "quantity": 1012,
760
+ "qvalue": 0.001
761
+ },
762
+ "P00012CondB_3": {
763
+ "quantity": 1012,
764
+ "qvalue": 0.001
765
+ },
766
+ "P00013CondA_1": {
767
+ "quantity": 1013,
768
+ "qvalue": 0.001
769
+ },
770
+ "P00016CondB_1": {
771
+ "quantity": 1016,
772
+ "qvalue": 0.001
773
+ },
774
+ "P00020CondA_2": {
775
+ "quantity": 1020,
776
+ "qvalue": 0.001
777
+ },
778
+ "P00021CondA_3": {
779
+ "quantity": 1021,
780
+ "qvalue": 0.001
781
+ },
782
+ "P00021CondB_1": {
783
+ "quantity": 1021,
784
+ "qvalue": 0.001
785
+ },
786
+ "P00023CondA_1": {
787
+ "quantity": 1023,
788
+ "qvalue": 0.001
789
+ },
790
+ "P00024CondB_3": {
791
+ "quantity": 1024,
792
+ "qvalue": 0.001
793
+ },
794
+ "P00025CondB_3": {
795
+ "quantity": 1025,
796
+ "qvalue": 0.001
797
+ },
798
+ "P00027CondB_1": {
799
+ "quantity": 1027,
800
+ "qvalue": 0.001
801
+ },
802
+ "P00029CondB_1": {
803
+ "quantity": 1029,
804
+ "qvalue": 0.001
805
+ },
806
+ "P00030CondA_3": {
807
+ "quantity": 1030,
808
+ "qvalue": 0.001
809
+ },
810
+ "P00031CondB_3": {
811
+ "quantity": 1031,
812
+ "qvalue": 0.001
813
+ },
814
+ "P00033CondA_2": {
815
+ "quantity": 1033,
816
+ "qvalue": 0.001
817
+ },
818
+ "P70001CondA_2": {
819
+ "quantity": 7000,
820
+ "qvalue": 0.002
821
+ },
822
+ "P70001CondB_3": {
823
+ "quantity": 7000,
824
+ "qvalue": 0.002
825
+ },
826
+ "P70003CondA_1": {
827
+ "quantity": 6600,
828
+ "qvalue": 0
829
+ },
830
+ "P00002CondA_1": {
831
+ "quantity": 1002,
832
+ "qvalue": 0.001
833
+ },
834
+ "P00002CondB_2": {
835
+ "quantity": 1002,
836
+ "qvalue": 0.001
837
+ },
838
+ "P00006CondB_2": {
839
+ "quantity": 1006,
840
+ "qvalue": 0.001
841
+ },
842
+ "P00008CondA_2": {
843
+ "quantity": 1008,
844
+ "qvalue": 0.001
845
+ },
846
+ "P00008CondB_1": {
847
+ "quantity": 1008,
848
+ "qvalue": 0.001
849
+ },
850
+ "P00010CondB_1": {
851
+ "quantity": 1010,
852
+ "qvalue": 0.001
853
+ },
854
+ "P00014CondA_2": {
855
+ "quantity": 1014,
856
+ "qvalue": 0.001
857
+ },
858
+ "P00015CondA_3": {
859
+ "quantity": 1015,
860
+ "qvalue": 0.001
861
+ },
862
+ "P00015CondB_2": {
863
+ "quantity": 1015,
864
+ "qvalue": 0.001
865
+ },
866
+ "P00016CondA_2": {
867
+ "quantity": 1016,
868
+ "qvalue": 0.001
869
+ },
870
+ "P00017CondA_3": {
871
+ "quantity": 1017,
872
+ "qvalue": 0.001
873
+ },
874
+ "P00017CondB_3": {
875
+ "quantity": 1017,
876
+ "qvalue": 0.001
877
+ },
878
+ "P00018CondB_1": {
879
+ "quantity": 1018,
880
+ "qvalue": 0.001
881
+ },
882
+ "P00022CondA_2": {
883
+ "quantity": 1022,
884
+ "qvalue": 0.001
885
+ },
886
+ "P00022CondB_3": {
887
+ "quantity": 1022,
888
+ "qvalue": 0.001
889
+ },
890
+ "P00023CondB_2": {
891
+ "quantity": 1023,
892
+ "qvalue": 0.001
893
+ },
894
+ "P00024CondA_3": {
895
+ "quantity": 1024,
896
+ "qvalue": 0.001
897
+ },
898
+ "P00025CondA_1": {
899
+ "quantity": 1025,
900
+ "qvalue": 0.001
901
+ },
902
+ "P00027CondA_1": {
903
+ "quantity": 1027,
904
+ "qvalue": 0.001
905
+ },
906
+ "P00028CondA_3": {
907
+ "quantity": 1028,
908
+ "qvalue": 0.001
909
+ },
910
+ "P00028CondB_3": {
911
+ "quantity": 1028,
912
+ "qvalue": 0.001
913
+ },
914
+ "P00030CondB_1": {
915
+ "quantity": 1030,
916
+ "qvalue": 0.001
917
+ },
918
+ "P00031CondA_1": {
919
+ "quantity": 1031,
920
+ "qvalue": 0.001
921
+ },
922
+ "P00032CondB_3": {
923
+ "quantity": 1032,
924
+ "qvalue": 0.001
925
+ },
926
+ "P00034CondA_3": {
927
+ "quantity": 1034,
928
+ "qvalue": 0.001
929
+ },
930
+ "P00035CondB_3": {
931
+ "quantity": 1035,
932
+ "qvalue": 0.001
933
+ },
934
+ "P70003CondB_3": {
935
+ "quantity": 6600,
936
+ "qvalue": 0
937
+ }
938
+ }