-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparsing_error.html
More file actions
8337 lines (8170 loc) · 665 KB
/
parsing_error.html
File metadata and controls
8337 lines (8170 loc) · 665 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Metabolomics Workbench File Validator</title>
<link rel="stylesheet" href="styles/styles.css"/>
</head>
<body class="background">
<div>
<h1><a href="https://MoseleyBioinformaticsLab.github.io/mwFileStatusWebsite/" style="text-decoration:none;color:white;">Metabolomics Workbench File Validator</a></h1>
<p>
Last Updated: 2026-03-01 08:09:13.489434
</p>
</div>
<div>
<h2>Statistics</h2>
<p>
Number of Studies: 102<br>
Number of Analyses: 147<br>
</p>
<h3>Validation Statistics</h3>
<div class="stats__grid">
<div class="stats__grid__item">Status</div>
<div class="stats__grid__item">mwTab</div>
<div class="stats__grid__item">JSON</div>
<a href="https://0.github.io/MoseleyBioinformaticsLab/passing" class="stats__grid__item brightgreen">Passing</a>
<div class="stats__grid__item">0</div>
<div class="stats__grid__item">0</div>
<a href="https://0.github.io/MoseleyBioinformaticsLab/passing" class="stats__grid__item yellow">Warnings Only</a>
<div class="stats__grid__item">0</div>
<div class="stats__grid__item">0</div>
<a href="https://0.github.io/MoseleyBioinformaticsLab/validation_error" class="stats__grid__item orange">Validation Error</a>
<div class="stats__grid__item">96</div>
<div class="stats__grid__item">14</div>
<a href="https://0.github.io/MoseleyBioinformaticsLab/parsing_error" class="stats__grid__item red">Parsing Error</a>
<div class="stats__grid__item">51</div>
<div class="stats__grid__item">133</div>
<a href="https://0.github.io/MoseleyBioinformaticsLab/missing" class="stats__grid__item brightred">Missing</a>
<div class="stats__grid__item">0</div>
<div class="stats__grid__item">0</div>
</div>
<p></p>
<div class="stats__grid">
<div class="stats__grid__item">Validation Error Type</div>
<div class="stats__grid__item">mwTab</div>
<div class="stats__grid__item">JSON</div>
<a href="https://MoseleyBioinformaticsLab.github.io/mwFileStatusWebsite/value" class="stats__grid__item orange">Value Error</a>
<div class="stats__grid__item">84</div>
<div class="stats__grid__item">12</div>
<a href="https://MoseleyBioinformaticsLab.github.io/mwFileStatusWebsite/consistency" class="stats__grid__item orange">Consistency Error</a>
<div class="stats__grid__item">46</div>
<div class="stats__grid__item">1</div>
<a href="https://MoseleyBioinformaticsLab.github.io/mwFileStatusWebsite/format" class="stats__grid__item orange">Format Error</a>
<div class="stats__grid__item">59</div>
<div class="stats__grid__item">10</div>
</div>
<h3>mwTab vs JSON Comparison Statistics</h3>
<div class="compare__stats__grid">
<div class="stats__grid__item">Status</div>
<div class="stats__grid__item">Count</div>
<div class="stats__grid__item brightgreen">Consistent</div>
<div class="stats__grid__item">0</div>
<div class="stats__grid__item orange">Inconsistent</div>
<div class="stats__grid__item">0</div>
<div class="stats__grid__item lightgrey">Not Checked</div>
<div class="stats__grid__item">147</div>
</div>
</div>
<div>
<h2>File Status</h2>
<div class="grid header">
<input type="checkbox" id="study_grid_item0" class="study_checkbox"/>
<label for="study_grid_item0" href="#ST000020" class="study__grid__item">ST000020: Biomarker Discovery in Knee Osteoarthritis (I) - RTI International - Sumner, Susan</label>
<div class="grid__description" style="height:13em;max-height:13">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Biomarker Discovery in Knee Osteoarthritis (I)</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Biomarker Discovery in Knee Osteoarthritis</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">The goal of the study was to determine whether there is a set of metabolites that differentiate people who have knee OA and show radiographic disease progression over 18 months from those who have knee OA and do not show disease progression over the same time period.</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">RTI International</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Systems and Translational Sciences (STS)</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">NIH Eastern Regional Comprehensive Metabolomics Resource Core (RTI RCMRC)</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sumner</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Susan</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">3040 East Cornwallis Road, Research Triangle Park, NC 27709, USA.</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">ssumner@rti.org</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">919-541-7479</div>
<div class="desc__grid__item">NUM_GROUPS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">4</div>
<div class="desc__grid__item">TOTAL_SUBJECTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">88</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item1" class="analysis_checkbox"/>
<label for="analysis_grid_item1" href="#AN000039" class="analysis__grid__item red">AN000039</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000039/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000039_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000039/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000039_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000039/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000039_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000039</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item1" class="study_checkbox"/>
<label for="study_grid_item1" href="#ST000045" class="study__grid__item">ST000045: Plasma metabolomics: Comparison of non-diabetic controls with T1D patients - Mayo Clinic - Nair, Sree</label>
<div class="grid__description" style="height:12em;max-height:12">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Plasma metabolomics: Comparison of non-diabetic controls with T1D patients</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Drug effect study</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Non-diabetic controls whose metabolites were compared to T1D patients with and insulin. Seven C-peptide?negative T1D subjects were studied on two occasions: during insulin treatment and the other following withdrawal of insulin for 8 h compared with matched healthy ND participants</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Mayo Clinic</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Endocrinology</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Nair</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sree</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">-</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Dasari.Surendra@mayo.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">-</div>
<div class="desc__grid__item">NUM_GROUPS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">1</div>
<div class="desc__grid__item">TOTAL_SUBJECTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">7</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item2" class="analysis_checkbox"/>
<label for="analysis_grid_item2" href="#AN000074" class="analysis__grid__item red">AN000074</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000074/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000074_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000074/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000074_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000074/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000074_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000074</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item2" class="study_checkbox"/>
<label for="study_grid_item2" href="#ST000165" class="study__grid__item">ST000165: None - None - None, None</label>
<div class="grid__description" style="height:0em;max-height:0">
<div class="desc__grid">
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item3" class="analysis_checkbox"/>
<label for="analysis_grid_item3" href="#AN000258" class="analysis__grid__item red">AN000258</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000258/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000258_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000258/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000258_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000258/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000258_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000258</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item3" class="study_checkbox"/>
<label for="study_grid_item3" href="#ST000166" class="study__grid__item">ST000166: None - None - None, None</label>
<div class="grid__description" style="height:0em;max-height:0">
<div class="desc__grid">
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item4" class="analysis_checkbox"/>
<label for="analysis_grid_item4" href="#AN000259" class="analysis__grid__item red">AN000259</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000259/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000259_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000259/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000259_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000259/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000259_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000259</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item4" class="study_checkbox"/>
<label for="study_grid_item4" href="#ST000253" class="study__grid__item">ST000253: None - None - None, None</label>
<div class="grid__description" style="height:0em;max-height:0">
<div class="desc__grid">
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item5" class="analysis_checkbox"/>
<label for="analysis_grid_item5" href="#AN000400" class="analysis__grid__item red">AN000400</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000400/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000400_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000400/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000400_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000400/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000400_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000400</div>
</div>
</div>
<input type="checkbox" id="analysis_grid_item6" class="analysis_checkbox"/>
<label for="analysis_grid_item6" href="#AN000401" class="analysis__grid__item red">AN000401</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000401/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000401_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000401/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000401_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000401/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000401_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000401</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item5" class="study_checkbox"/>
<label for="study_grid_item5" href="#ST000254" class="study__grid__item">ST000254: The role of microbial metabolites in experimental liver disease - University of North Carolina - Sumner, Susan</label>
<div class="grid__description" style="height:12em;max-height:12">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">The role of microbial metabolites in experimental liver disease</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Targeted Metabolomic Analysis of plasma samples</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Aim 1: Our experimental approach is to understand the effect of drinking water supplemented bacterial metabolite, Indole-3-propionic Acid (IPA), in liver disease in an acute alcohol model. Aim 2: Determine the levels of IPA in plasma of conventional mice in a chronic alcohol model. Aim 3: Determine the levels of IPA in plasma of conventional WT (C57BL/6) and mutant SL (sublytic, which is a mouse with a point mutation in ATP4a) mice.</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">University of North Carolina</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Discovery Science Technology</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sumner Lab</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sumner</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Susan</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Eastern Regional Comprehensive Metabolomics Resource Core, UNC Nutrition Research Institute, 500 Laureate Way, Kannapolis, NC, 28081</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">susan_sumner @unc.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">704-250-5066</div>
<div class="desc__grid__item">SUBMIT_DATE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">2015-09-29</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item7" class="analysis_checkbox"/>
<label for="analysis_grid_item7" href="#AN000402" class="analysis__grid__item red">AN000402</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000402/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000402_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000402/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000402_json.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000402/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000402_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000402</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item6" class="study_checkbox"/>
<label for="study_grid_item6" href="#ST000256" class="study__grid__item">ST000256: Signal Intensities Derived from Different NMR Probes and Parameters Contribute to Variations in Quantification of Metabolites - University of Michigan - Stringer, Kathleen</label>
<div class="grid__description" style="height:15em;max-height:15">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Signal Intensities Derived from Different NMR Probes and Parameters Contribute to Variations in Quantification of Metabolites</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Single timepoint; healthy controls</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Healthy volunteers</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">University of Michigan</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Clinical Pharmacy</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">The NMR Metabolomics Laboratory (Stringer)</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Stringer</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Kathleen</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">University Michigan, 2900 Huron Parkway, Ann Arbor, MI 48105</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">stringek@umich.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">--</div>
<div class="desc__grid__item">SUBMIT_DATE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">2015-09-18</div>
<div class="desc__grid__item">NUM_GROUPS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">N/A</div>
<div class="desc__grid__item">TOTAL_SUBJECTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">19</div>
<div class="desc__grid__item">STUDY_COMMENTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Data were also generated by the University of Alberta (UA)</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item8" class="analysis_checkbox"/>
<label for="analysis_grid_item8" href="#AN000405" class="analysis__grid__item red">AN000405</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000405/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000405_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000405/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000405_json.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000405/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000405_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000405</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item7" class="study_checkbox"/>
<label for="study_grid_item7" href="#ST000258" class="study__grid__item">ST000258: Metabolic contribution of pSymA and pSymB megaplasmid/chromid for multipartite meliloti cultured in minimal M9 medium - McMaster University - Finan, Turlough</label>
<div class="grid__description" style="height:12em;max-height:12">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Metabolic contribution of pSymA and pSymB megaplasmid/chromid for multipartite meliloti cultured in minimal M9 medium</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">megaplasmid deletion</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">To understand the contribution of pSymA and pSymB to the metabolism of S. the intracellular metabolome was analyzed at five time points (exponential and growth phases) across the growth curve of strains with or without pSymA and/or grown in a defined, minimal medium (M9).</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">McMaster University</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Department of Biology</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Finan</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Turlough</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Department of Biology, McMaster University, Hamilton, Canada L8S4K1</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">finan@mcmaster.ca</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">(+1)905-525-9140 ext 22932</div>
<div class="desc__grid__item">NUM_GROUPS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">20</div>
<div class="desc__grid__item">TOTAL_SUBJECTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">115</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item9" class="analysis_checkbox"/>
<label for="analysis_grid_item9" href="#AN000409" class="analysis__grid__item red">AN000409</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000409/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000409_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000409/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000409_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000409/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000409_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000409</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item8" class="study_checkbox"/>
<label for="study_grid_item8" href="#ST000267" class="study__grid__item">ST000267: Activity-Based Metabolic Profiling of M. tuberculosis H37Rv Rv3722c - Weill Cornell Medical College - Rhee, Kyu</label>
<div class="grid__description" style="height:11em;max-height:11">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Activity-Based Metabolic Profiling of M. tuberculosis H37Rv Rv3722c</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">timecourse</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">These experiments involve incubating various proteins of unknown function in M. tuberculosis genome with whole-cell lysate and assaying changes in levels over time (e.g. 0, 15, 30min) to try to infer what reaction they might</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Weill Cornell Medical College</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Microbiology and Immunology</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Rhee</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Kyu</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Department of Microbiology and Immunology, Weill Cornell Medical College, 1300 Avenue, New York, NY</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">kyr9001@med.cornell.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">-</div>
<div class="desc__grid__item">STUDY_COMMENTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">The timepoints in the datafiles refer the amount of time (in minutes) that each was incubated with lysate.The units for 'mzmed' are mass/charge.The units for are seconds (retention time).The units for all the other data columns in the are arbitrary; they are integrated peak counts.In this study, Rv1713 was with lysate with and without 1mM GTP added as a co-factor.</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item10" class="analysis_checkbox"/>
<label for="analysis_grid_item10" href="#AN000427" class="analysis__grid__item red">AN000427</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000427/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000427_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000427/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000427_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000427/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000427_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000427</div>
</div>
</div>
<input type="checkbox" id="analysis_grid_item11" class="analysis_checkbox"/>
<label for="analysis_grid_item11" href="#AN000428" class="analysis__grid__item red">AN000428</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000428/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000428_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000428/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000428_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000428/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000428_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000428</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item9" class="study_checkbox"/>
<label for="study_grid_item9" href="#ST000361" class="study__grid__item">ST000361: Characterization and Plasticity of the Metabolome in Peripheral Cells in Bipolar I Disorder - RTI - Sumner, Susan</label>
<div class="grid__description" style="height:15em;max-height:15">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Characterization and Plasticity of the Metabolome in Peripheral Cells in Bipolar I Disorder</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Broad Spectrum LCMS</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Patients with Bipolar I Disorder (BPI) and matched non-affected controls were recruited. Males and females from all races and ethnicities between the ages of 19-65 participated in the research. Skin biopsies were obtained and fibroblasts were isolated from each of these biopsies. A total of 1 x 〖10〗^7 fibroblasts cells were used for metabolomics. Cell pellets were flash frozen in liquid nitrogen and shipped on dry ice to the NIH Eastern Regional Comprehensive Metabolomic Resource Core at RTI International in North Carolina. Metabolomics will be determined using a broad spectrum metabolomics protocol by RTI</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">RTI</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Discovery Sciences</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">System and Translational Sciences</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sumner</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Susan</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">3040 Cornwallis Rd, RTP,NC</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">ssumner@rti.org</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">919-541-7479</div>
<div class="desc__grid__item">NUM_GROUPS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">2</div>
<div class="desc__grid__item">TOTAL_SUBJECTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">18</div>
<div class="desc__grid__item">NUM_MALES</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">7</div>
<div class="desc__grid__item">NUM_FEMALES</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">11</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item12" class="analysis_checkbox"/>
<label for="analysis_grid_item12" href="#AN000593" class="analysis__grid__item red">AN000593</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000593/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000593_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000593/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000593_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000593/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000593_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000593</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item10" class="study_checkbox"/>
<label for="study_grid_item10" href="#ST000365" class="study__grid__item">ST000365: Zebrafish Metabolomics: Model for Environmental Metal Toxicity - University of North Carolina - Sumner, Susan</label>
<div class="grid__description" style="height:11em;max-height:11">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Zebrafish Metabolomics: Model for Environmental Metal Toxicity</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">This metabolomics seed project will test the hypothesis that zebrafish can provide mechanistic insights into the human health effects of developmental exposure to Cd and Pb. We will use broad spectrum metabolomics of zebrafish larvae after exposure to Cd, Pb, and Cd and Pb compared to controls. Activity observed at 5 days post fertilization is will be used to determine if there is a correlation between biological pathways implicated by these metabolic profiles and cardiovascular, metabolic (obesity), and neurological phenotypes. The behavioral phenotypes have been quantified in zebrafish previously and have been measured in the Newborn Epigenetic STudy (NEST), a NIH-funded project that is investigating how environmental exposures and nutrition, in the womb and during childhood, affect how genes work and how these exposures developed into obesity and other diseases, disorders, and conditions. The results from this study will demonstrate the power of using zebrafish as a model for mechanism discovery in exposure using metabolomics to advance understanding of early life exposure to Cd and Pb and serve as preliminary data for opportunities.</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">University of North Carolina</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Discovery Sciences</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sumner Lab</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Sumner</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Susan</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Eastern Regional Comprehensive Metabolomics Resource Core, UNC Nutrition Research Institute, 500 Laureate Way, Kannapolis, NC, 28081</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">susan_sumner @unc.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">704-250-5066</div>
<div class="desc__grid__item">SUBMIT_DATE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">2016-03-09</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item13" class="analysis_checkbox"/>
<label for="analysis_grid_item13" href="#AN000598" class="analysis__grid__item red">AN000598</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000598/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000598_txt.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000598/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000598_json.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000598/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000598_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000598</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item11" class="study_checkbox"/>
<label for="study_grid_item11" href="#ST000368" class="study__grid__item">ST000368: Investigation of metabolomic blood biomarkers for detection of adenocarcinoma lung cancer - University of California, Davis - Fiehn, Oliver</label>
<div class="grid__description" style="height:12em;max-height:12">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Investigation of metabolomic blood biomarkers for detection of adenocarcinoma lung cancer</div>
<div class="desc__grid__item">STUDY_TYPE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Lung cancer case control biomarker discovery</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Recently, the National Lung Cancer Screen Trial (NLST) demonstrated that low-dose CT (LDCT) screening could reduce mortality due to lung cancer by 20%. However, LDCT screening is largely hindered by high false-positive rates (96%), particularly in high-risk populations (heavy smokers), due to the low prevalence rates (less than 2%) of malignant tumors and high incidence of benign lung nodules. Consequently, complementary biomarkers that can be used in conjunction with LDCT screening to improve diagnostic capacities and reduce false-positive rates are highly desirable. Preferably, such complementary tools should be noninvasive and exhibit high sensitivity and specificity. The application of “-omic” sciences (genomics, transcriptomics, proteomics, and metabolomics) represents valuable tools for the discovery and validation of potential biomarkers that can be used for detection of NSCLC. Of these omic sciences, metabolomics has received considerable attention for its application in cancer. Metabolomics is the assessment of small molecules and biochemical intermediates (metabolites) using analytic instrumentation. Metabolites in blood are the product of all cellular processes, which are highly responsive to conditions of disease and environment, and represent the final output products of all organs forming a detailed systemic representation of an individual's current physiologic state. In this study, we used an untargeted metabolomics approach using gas chromatography time-of-flight mass spectrometry (GCTOFMS) to analyze the metabolome of serum and plasma samples both collected from the same patients that were organized into two independent case–control studies (ADC1 and ADC2). In both studies, only NSCLC adenocarcinoma was investigated. The overall objectives were to (i) determine whether individual or combinations of metabolites could be used as a diagnostic test to distinguish NSCLC adenocarcinoma from controls and (ii) to determine which, plasma or serum, provides more accurate classifiers for the detection of lung cancer. We developed individual and multimetabolite classifiers using a training test from the ADC1 study and evaluated the performance of the constructed classifiers, individually or in combination, in an independent test/validation study (ADC2). This study shows the potential of metabolite-based diagnostic tests for detection of lung adenocarcinoma. Further validation in a larger pool of samples is warranted.</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">University of California, Davis</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Genome and Biomedical Sciences Facility</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">WCMC Metabolomics Core</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Fiehn</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Oliver</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">1315 Genome and Biomedical Sciences Facility, 451 Health Sciences Drive, Davis, CA 95616</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">ofiehn@ucdavis.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">(530) 754-8258</div>
<div class="desc__grid__item">STUDY_COMMENTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">SS = Sigma sample and is used as a quality control The first set (ADC1) used for biomarker development consisted of serum and plasma samples obtained from 52 stages I–IV NSCLC adenocarcinoma patients (52 plasma and 49 serum), and 31 healthy controls (31 pairs of serum and plasma) for a total of 163 samples. This set was regarded as the training set for biomarker discovery and classifier development. A second, independent case–control study (ADC2) consisting of serum and plasma samples collected from 43 stage I–IV NSCLC adenocarcinoma patients and 43 healthy controls (total 172 samples) was used as an independent test set for biomarker evaluation. A limitation of this study is the relatively small sample size for each cohort (52 cases, 31 controls for ADC1, and 43 cases and 43 controls for ADC2) because patient variability can be a big factor in smaller studies.</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item14" class="analysis_checkbox"/>
<label for="analysis_grid_item14" href="#AN000602" class="analysis__grid__item red">AN000602</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000602/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000602_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000602/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000602_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000602/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000602_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>
</div>
<br>
<div class="desc__grid">
<div class="desc__grid__item">ANALYSIS_ID</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">AN000602</div>
</div>
</div>
</div> <br> <div class="grid header">
<input type="checkbox" id="study_grid_item12" class="study_checkbox"/>
<label for="study_grid_item12" href="#ST000386" class="study__grid__item">ST000386: Study 2 Investigation of metabolomic blood biomarkers for detection of adenocarcinoma lung cancer (test/validation) - University of California, Davis - Fiehn, Oliver</label>
<div class="grid__description" style="height:11em;max-height:11">
<div class="desc__grid">
<div class="desc__grid__item">STUDY_TITLE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Study 2 Investigation of metabolomic blood biomarkers for detection of adenocarcinoma lung cancer (test/validation)</div>
<div class="desc__grid__item">STUDY_SUMMARY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Recently, the National Lung Cancer Screen Trial (NLST) demonstrated that low-dose CT (LDCT) screening could reduce mortality due to lung cancer by 20%. However, LDCT screening is largely hindered by high false-positive rates (96%), particularly in high-risk populations (heavy smokers), due to the low prevalence rates (less than 2%) of malignant tumors and high incidence of benign lung nodules. Consequently, complementary biomarkers that can be used in conjunction with LDCT screening to improve diagnostic capacities and reduce false-positive rates are highly desirable. Preferably, such complementary tools should be noninvasive and exhibit high sensitivity and specificity. The application of “-omic” sciences (genomics, transcriptomics, proteomics, and metabolomics) represents valuable tools for the discovery and validation of potential biomarkers that can be used for detection of NSCLC. Of these omic sciences, metabolomics has received considerable attention for its application in cancer. Metabolomics is the assessment of small molecules and biochemical intermediates (metabolites) using analytic instrumentation. Metabolites in blood are the product of all cellular processes, which are highly responsive to conditions of disease and environment, and represent the final output products of all organs forming a detailed systemic representation of an individual's current physiologic state. In this study, we used an untargeted metabolomics approach using gas chromatography time-of-flight mass spectrometry (GCTOFMS) to analyze the metabolome of serum and plasma samples both collected from the same patients that were organized into two independent case–control studies (ADC1 and ADC2). In both studies, only NSCLC adenocarcinoma was investigated. The overall objectives were to (i) determine whether individual or combinations of metabolites could be used as a diagnostic test to distinguish NSCLC adenocarcinoma from controls and (ii) to determine which, plasma or serum, provides more accurate classifiers for the detection of lung cancer. We developed individual and multimetabolite classifiers using a training test from the ADC1 study and evaluated the performance of the constructed classifiers, individually or in combination, in an independent test/validation study (ADC2). This study shows the potential of metabolite-based diagnostic tests for detection of lung adenocarcinoma. Further validation in a larger pool of samples is warranted.</div>
<div class="desc__grid__item">INSTITUTE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">University of California, Davis</div>
<div class="desc__grid__item">DEPARTMENT</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Genome and Biomedical Sciences Facility</div>
<div class="desc__grid__item">LABORATORY</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">WCMC Metabolomics Core</div>
<div class="desc__grid__item">LAST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Fiehn</div>
<div class="desc__grid__item">FIRST_NAME</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">Oliver</div>
<div class="desc__grid__item">ADDRESS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">1315 Genome and Biomedical Sciences Facility, 451 Health Sciences Drive, Davis, CA 95616</div>
<div class="desc__grid__item">EMAIL</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">ofiehn@ucdavis.edu</div>
<div class="desc__grid__item">PHONE</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">(530) 754-8258</div>
<div class="desc__grid__item">STUDY_COMMENTS</div>
<div class="desc__grid__item" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:calc(100%);">SS = Sigma sample and is used as a quality control The first set (ADC1) used for biomarker development consisted of serum and plasma samples obtained from 52 stages I–IV NSCLC adenocarcinoma patients (52 plasma and 49 serum), and 31 healthy controls (31 pairs of serum and plasma) for a total of 163 samples. This set was regarded as the training set for biomarker discovery and classifier development. A second, independent case–control study (ADC2) consisting of serum and plasma samples collected from 43 stage I–IV NSCLC adenocarcinoma patients and 43 healthy controls (total 172 samples) was used as an independent test set for biomarker evaluation. A limitation of this study is the relatively small sample size for each cohort (52 cases, 31 controls for ADC1, and 43 cases and 43 controls for ADC2) because patient variability can be a big factor in smaller studies.</div>
</div>
</div>
</div>
<div class="grid">
<input type="checkbox" id="analysis_grid_item15" class="analysis_checkbox"/>
<label for="analysis_grid_item15" href="#AN000621" class="analysis__grid__item red">AN000621</label>
<div class="grid__description">
<div>
<span>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000621/mwtab/txt" target="_blank">txt</a>
</div>
<div class="shieldRight orange">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000621_txt.log" target="_blank">Validation Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000621/mwtab/json" target="_blank">json</a>
</div>
<div class="shieldRight red">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000621_json.log" target="_blank">Parsing Error</a>
</div>
</div>
<div class="shield">
<div class="shieldLeft grey">
<a href="https://www.metabolomicsworkbench.org/rest/study/analysis_id/AN000621/mwtab/comparison" target="_blank">comparison</a>
</div>
<div class="shieldRight lightgrey">
<a href="https://raw.githubusercontent.com/MoseleyBioinformaticsLab/mwFileStatusWebsite/master/validation_logs/AN000621_comparison.log" target="_blank">Not Checked</a>
</div>
</div>
</span>