-
Notifications
You must be signed in to change notification settings - Fork 0
/
cbiot.from_file.log.txt
1474 lines (1466 loc) · 53.4 KB
/
cbiot.from_file.log.txt
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
Namespace(csv=True, f='genes.txt', g=None, o='cbiot.from_file.csv', timeout=300.0)
The input gene names are:
['TP53', 'EGFR', 'NRAS', 'PIK3CA', 'hras', 'pten']
The gene entrez IDs are:
['TP53 ==> 7157', 'EGFR ==> 1956', 'NRAS ==> 4893', 'PIK3CA ==> 5290', 'hras ==> 3265', 'pten ==> 5728']
There are 287 studies.
There are 869 cancer types.
There are 1196 molecular profiles.
There are 1560 sample lists.
There are 91539 samples.
There are 342 combinations of molecular profile and sample list.
doing 1 now.
Molecular profile ID is chol_nccs_2013_mutations.
Sample list ID is chol_nccs_2013_all.
There are 3 mutations returned.
doing 2 now.
Molecular profile ID is escc_ucla_2014_mutations.
Sample list ID is escc_ucla_2014_all.
There are 110 mutations returned.
doing 3 now.
Molecular profile ID is hnsc_mdanderson_2013_mutations.
Sample list ID is hnsc_mdanderson_2013_all.
There are 26 mutations returned.
doing 4 now.
Molecular profile ID is hcc_inserm_fr_2015_mutations.
Sample list ID is hcc_inserm_fr_2015_all.
There are 71 mutations returned.
doing 5 now.
Molecular profile ID is um_qimr_2016_mutations.
Sample list ID is um_qimr_2016_all.
There are 0 mutations returned.
doing 6 now.
Molecular profile ID is nbl_amc_2012_mutations.
Sample list ID is nbl_amc_2012_all.
There are 0 mutations returned.
doing 7 now.
Molecular profile ID is npc_nusingapore_mutations.
Sample list ID is npc_nusingapore_all.
There are 9 mutations returned.
doing 8 now.
Molecular profile ID is tet_nci_2014_mutations.
Sample list ID is tet_nci_2014_all.
There are 4 mutations returned.
doing 9 now.
Molecular profile ID is nbl_ucologne_2015_mutations.
Sample list ID is nbl_ucologne_2015_all.
There are 1 mutations returned.
doing 10 now.
Molecular profile ID is mds_tokyo_2011_mutations.
Sample list ID is mds_tokyo_2011_all.
There are 6 mutations returned.
doing 11 now.
Molecular profile ID is nhl_bcgsc_2011_mutations.
Sample list ID is nhl_bcgsc_2011_all.
There are 0 mutations returned.
doing 12 now.
Molecular profile ID is nhl_bcgsc_2013_mutations.
Sample list ID is nhl_bcgsc_2013_all.
There are 14 mutations returned.
doing 13 now.
Molecular profile ID is panet_shanghai_2013_mutations.
Sample list ID is panet_shanghai_2013_all.
There are 0 mutations returned.
doing 14 now.
Molecular profile ID is plmeso_nyu_2015_mutations.
Sample list ID is plmeso_nyu_2015_all.
There are 2 mutations returned.
doing 15 now.
Molecular profile ID is pact_jhu_2011_mutations.
Sample list ID is pact_jhu_2011_all.
There are 2 mutations returned.
doing 16 now.
Molecular profile ID is past_dkfz_heidelberg_2013_mutations.
Sample list ID is past_dkfz_heidelberg_2013_all.
There are 1 mutations returned.
doing 17 now.
Molecular profile ID is lihc_riken_mutations.
Sample list ID is lihc_riken_all.
There are 14 mutations returned.
doing 18 now.
Molecular profile ID is mbl_icgc_mutations.
Sample list ID is mbl_icgc_all.
There are 10 mutations returned.
doing 19 now.
Molecular profile ID is mbl_sickkids_2016_mutations.
Sample list ID is mbl_sickkids_2016_all.
There are 12 mutations returned.
doing 20 now.
Molecular profile ID is kirc_bgi_mutations.
Sample list ID is kirc_bgi_all.
There are 7 mutations returned.
doing 21 now.
Molecular profile ID is hnsc_jhu_mutations.
Sample list ID is hnsc_jhu_all.
There are 31 mutations returned.
doing 22 now.
Molecular profile ID is liad_inserm_fr_2014_mutations.
Sample list ID is liad_inserm_fr_2014_all.
There are 0 mutations returned.
doing 23 now.
Molecular profile ID is ampca_bcm_2016_mutations.
Sample list ID is ampca_bcm_2016_all.
There are 138 mutations returned.
doing 24 now.
Molecular profile ID is blca_dfarber_mskcc_2014_mutations.
Sample list ID is blca_dfarber_mskcc_2014_all.
There are 52 mutations returned.
doing 25 now.
Molecular profile ID is nccrcc_genentech_2014_mutations.
Sample list ID is nccrcc_genentech_2014_all.
There are 18 mutations returned.
doing 26 now.
Molecular profile ID is stad_pfizer_uhongkong_mutations.
Sample list ID is stad_pfizer_uhongkong_all.
There are 70 mutations returned.
doing 27 now.
Molecular profile ID is dlbc_broad_2012_mutations.
Sample list ID is dlbc_broad_2012_all.
There are 20 mutations returned.
doing 28 now.
Molecular profile ID is mixed_allen_2018_mutations.
Sample list ID is mixed_allen_2018_all.
There are 232 mutations returned.
doing 29 now.
Molecular profile ID is ccrcc_utokyo_2013_mutations.
Sample list ID is ccrcc_utokyo_2013_all.
There are 13 mutations returned.
doing 30 now.
Molecular profile ID is chol_jhu_2013_mutations.
Sample list ID is chol_jhu_2013_all.
There are 14 mutations returned.
doing 31 now.
Molecular profile ID is skcm_broad_dfarber_mutations.
Sample list ID is skcm_broad_dfarber_all.
There are 17 mutations returned.
doing 32 now.
Molecular profile ID is ucs_jhu_2014_mutations.
Sample list ID is ucs_jhu_2014_all.
There are 49 mutations returned.
doing 33 now.
Molecular profile ID is skcm_broad_brafresist_2012_mutations.
Sample list ID is skcm_broad_brafresist_2012_all.
There are 46 mutations returned.
doing 34 now.
Molecular profile ID is acyc_sanger_2013_mutations.
Sample list ID is acyc_sanger_2013_all.
There are 1 mutations returned.
doing 35 now.
Molecular profile ID is vsc_cuk_2018_mutations.
Sample list ID is vsc_cuk_2018_all.
There are 10 mutations returned.
doing 36 now.
Molecular profile ID is esca_broad_mutations.
Sample list ID is esca_broad_all.
There are 124 mutations returned.
doing 37 now.
Molecular profile ID is paac_jhu_2014_mutations.
Sample list ID is paac_jhu_2014_all.
There are 5 mutations returned.
doing 38 now.
Molecular profile ID is rms_nih_2014_mutations.
Sample list ID is rms_nih_2014_all.
There are 10 mutations returned.
doing 39 now.
Molecular profile ID is egc_tmucih_2015_mutations.
Sample list ID is egc_tmucih_2015_all.
There are 51 mutations returned.
doing 40 now.
Molecular profile ID is brca_bccrc_mutations.
Sample list ID is brca_bccrc_all.
There are 51 mutations returned.
doing 41 now.
Molecular profile ID is panet_arcnet_2017_mutations.
Sample list ID is panet_arcnet_2017_all.
There are 10 mutations returned.
doing 42 now.
Molecular profile ID is pcnsl_mayo_2015_mutations.
Sample list ID is pcnsl_mayo_2015_all.
There are 1 mutations returned.
doing 43 now.
Molecular profile ID is mm_broad_mutations.
Sample list ID is mm_broad_all.
There are 58 mutations returned.
doing 44 now.
Molecular profile ID is nbl_broad_2013_mutations.
Sample list ID is nbl_broad_2013_all.
There are 6 mutations returned.
doing 45 now.
Molecular profile ID is mrt_bcgsc_2016_mutations.
Sample list ID is mrt_bcgsc_2016_all.
There are 0 mutations returned.
doing 46 now.
Molecular profile ID is gbc_shanghai_2014_mutations.
Sample list ID is gbc_shanghai_2014_all.
There are 12 mutations returned.
doing 47 now.
Molecular profile ID is luad_mskcc_2015_mutations.
Sample list ID is luad_mskcc_2015_all.
There are 22 mutations returned.
doing 48 now.
Molecular profile ID is mbl_broad_2012_mutations.
Sample list ID is mbl_broad_2012_all.
There are 5 mutations returned.
doing 49 now.
Molecular profile ID is mixed_pipseq_2017_mutations.
Sample list ID is mixed_pipseq_2017_all.
There are 70 mutations returned.
doing 50 now.
Molecular profile ID is acyc_fmi_2014_mutations.
Sample list ID is acyc_fmi_2014_all.
There are 3 mutations returned.
doing 51 now.
Molecular profile ID is acyc_jhu_2016_mutations.
Sample list ID is acyc_jhu_2016_all.
There are 1 mutations returned.
doing 52 now.
Molecular profile ID is acyc_mda_2015_mutations.
Sample list ID is acyc_mda_2015_all.
There are 0 mutations returned.
doing 53 now.
Molecular profile ID is all_stjude_2016_mutations.
Sample list ID is all_stjude_2016_all.
There are 27 mutations returned.
doing 54 now.
Molecular profile ID is bfn_duke_nus_2015_mutations.
Sample list ID is bfn_duke_nus_2015_all.
There are 4 mutations returned.
doing 55 now.
Molecular profile ID is blca_mskcc_solit_2014_mutations.
Sample list ID is blca_mskcc_solit_2014_all.
There are 118 mutations returned.
doing 56 now.
Molecular profile ID is blca_nmibc_2017_mutations.
Sample list ID is blca_nmibc_2017_all.
There are 69 mutations returned.
doing 57 now.
Molecular profile ID is brca_broad_mutations.
Sample list ID is brca_broad_all.
There are 64 mutations returned.
doing 58 now.
Molecular profile ID is ccrcc_irc_2014_mutations.
Sample list ID is ccrcc_irc_2014_all.
There are 16 mutations returned.
doing 59 now.
Molecular profile ID is cll_iuopa_2015_mutations.
Sample list ID is cll_iuopa_2015_all.
There are 20 mutations returned.
doing 60 now.
Molecular profile ID is cllsll_icgc_2011_mutations.
Sample list ID is cllsll_icgc_2011_all.
There are 3 mutations returned.
doing 61 now.
Molecular profile ID is cscc_dfarber_2015_mutations.
Sample list ID is cscc_dfarber_2015_all.
There are 49 mutations returned.
doing 62 now.
Molecular profile ID is desm_broad_2015_mutations.
Sample list ID is desm_broad_2015_all.
There are 12 mutations returned.
doing 63 now.
Molecular profile ID is es_iocurie_2014_mutations.
Sample list ID is es_iocurie_2014_all.
There are 10 mutations returned.
doing 64 now.
Molecular profile ID is cscc_hgsc_bcm_2014_mutations.
Sample list ID is cscc_hgsc_bcm_2014_all.
There are 77 mutations returned.
doing 65 now.
Molecular profile ID is dlbcl_dfci_2018_mutations.
Sample list ID is dlbcl_dfci_2018_all.
There are 46 mutations returned.
doing 66 now.
Molecular profile ID is hcc_msk_venturaa_2018_mutations.
Sample list ID is hcc_msk_venturaa_2018_all.
There are 5 mutations returned.
doing 67 now.
Molecular profile ID is gbc_msk_2018_mutations.
Sample list ID is gbc_msk_2018_all.
There are 82 mutations returned.
doing 68 now.
Molecular profile ID is lihc_tcga_mutations.
Sample list ID is lihc_tcga_methylation_all.
There are 151 mutations returned.
doing 69 now.
Molecular profile ID is lihc_tcga_mutations.
Sample list ID is lihc_tcga_all.
There are 151 mutations returned.
doing 70 now.
Molecular profile ID is lgg_ucsf_2014_mutations.
Sample list ID is lgg_ucsf_2014_all.
There are 72 mutations returned.
doing 71 now.
Molecular profile ID is lihc_amc_prv_mutations.
Sample list ID is lihc_amc_prv_all.
There are 79 mutations returned.
doing 72 now.
Molecular profile ID is luad_tsp_mutations.
Sample list ID is luad_tsp_all.
There are 109 mutations returned.
doing 73 now.
Molecular profile ID is mbl_pcgp_mutations.
Sample list ID is mbl_pcgp_all.
There are 2 mutations returned.
doing 74 now.
Molecular profile ID is lung_msk_pdx_mutations.
Sample list ID is lung_msk_pdx_all.
There are 150 mutations returned.
doing 75 now.
Molecular profile ID is meso_tcga_mutations.
Sample list ID is meso_tcga_all.
There are 17 mutations returned.
doing 76 now.
Molecular profile ID is meso_tcga_mutations.
Sample list ID is meso_tcga_methylation_all.
There are 17 mutations returned.
doing 77 now.
Molecular profile ID is paad_icgc_mutations.
Sample list ID is paad_icgc_all.
There are 33 mutations returned.
doing 78 now.
Molecular profile ID is mcl_idibips_2013_mutations.
Sample list ID is mcl_idibips_2013_all.
There are 9 mutations returned.
doing 79 now.
Molecular profile ID is msk_impact_2017_mutations.
Sample list ID is msk_impact_2017_all.
There are 8516 mutations returned.
doing 80 now.
Molecular profile ID is paad_tcga_mutations.
Sample list ID is paad_tcga_all.
There are 113 mutations returned.
doing 81 now.
Molecular profile ID is paad_tcga_mutations.
Sample list ID is paad_tcga_methylation_all.
There are 113 mutations returned.
doing 82 now.
Molecular profile ID is pcpg_tcga_mutations.
Sample list ID is pcpg_tcga_all.
There are 19 mutations returned.
doing 83 now.
Molecular profile ID is pcpg_tcga_mutations.
Sample list ID is pcpg_tcga_methylation_all.
There are 19 mutations returned.
doing 84 now.
Molecular profile ID is paad_utsw_2015_mutations.
Sample list ID is paad_utsw_2015_all.
There are 61 mutations returned.
doing 85 now.
Molecular profile ID is panet_jhu_2011_mutations.
Sample list ID is panet_jhu_2011_all.
There are 3 mutations returned.
doing 86 now.
Molecular profile ID is prad_mich_mutations.
Sample list ID is prad_mich_all.
There are 31 mutations returned.
doing 87 now.
Molecular profile ID is sarc_tcga_mutations.
Sample list ID is sarc_tcga_all.
There are 107 mutations returned.
doing 88 now.
Molecular profile ID is sarc_tcga_mutations.
Sample list ID is sarc_tcga_methylation_all.
There are 107 mutations returned.
doing 89 now.
Molecular profile ID is sclc_clcgp_mutations.
Sample list ID is sclc_clcgp_all.
There are 33 mutations returned.
doing 90 now.
Molecular profile ID is scco_mskcc_mutations.
Sample list ID is scco_mskcc_all.
There are 0 mutations returned.
doing 91 now.
Molecular profile ID is prad_mskcc_2017_mutations.
Sample list ID is prad_mskcc_2017_all.
There are 240 mutations returned.
doing 92 now.
Molecular profile ID is tgct_tcga_mutations.
Sample list ID is tgct_tcga_all.
There are 15 mutations returned.
doing 93 now.
Molecular profile ID is tgct_tcga_mutations.
Sample list ID is tgct_tcga_methylation_all.
There are 15 mutations returned.
doing 94 now.
Molecular profile ID is thca_tcga_mutations.
Sample list ID is thca_tcga_all.
There are 56 mutations returned.
doing 95 now.
Molecular profile ID is thca_tcga_mutations.
Sample list ID is thca_tcga_methylation_all.
There are 56 mutations returned.
doing 96 now.
Molecular profile ID is skcm_broad_mutations.
Sample list ID is skcm_broad_all.
There are 88 mutations returned.
doing 97 now.
Molecular profile ID is skcm_yale_mutations.
Sample list ID is skcm_yale_all.
There are 39 mutations returned.
doing 98 now.
Molecular profile ID is stad_uhongkong_mutations.
Sample list ID is stad_uhongkong_all.
There are 21 mutations returned.
doing 99 now.
Molecular profile ID is thym_tcga_mutations.
Sample list ID is thym_tcga_all.
There are 17 mutations returned.
doing 100 now.
Molecular profile ID is thym_tcga_mutations.
Sample list ID is thym_tcga_methylation_all.
There are 17 mutations returned.
doing 101 now.
Molecular profile ID is ucec_tcga_mutations.
Sample list ID is ucec_tcga_all.
There are 518 mutations returned.
doing 102 now.
Molecular profile ID is ucec_tcga_mutations.
Sample list ID is ucec_tcga_methylation_all.
There are 523 mutations returned.
doing 103 now.
Molecular profile ID is ucs_tcga_mutations.
Sample list ID is ucs_tcga_all.
There are 96 mutations returned.
doing 104 now.
Molecular profile ID is ucs_tcga_mutations.
Sample list ID is ucs_tcga_methylation_all.
There are 96 mutations returned.
doing 105 now.
Molecular profile ID is thyroid_mskcc_2016_mutations.
Sample list ID is thyroid_mskcc_2016_all.
There are 84 mutations returned.
doing 106 now.
Molecular profile ID is nsclc_tcga_broad_2016_mutations.
Sample list ID is nsclc_tcga_broad_2016_all.
There are 1143 mutations returned.
doing 107 now.
Molecular profile ID is uccc_nih_2017_mutations.
Sample list ID is uccc_nih_2017_all.
There are 12 mutations returned.
doing 108 now.
Molecular profile ID is lusc_tcga_mutations.
Sample list ID is lusc_tcga_all.
There are 210 mutations returned.
doing 109 now.
Molecular profile ID is lusc_tcga_mutations.
Sample list ID is lusc_tcga_methylation_all.
There are 210 mutations returned.
doing 110 now.
Molecular profile ID is stad_tcga_mutations.
Sample list ID is stad_tcga_all.
There are 345 mutations returned.
doing 111 now.
Molecular profile ID is stad_tcga_mutations.
Sample list ID is stad_tcga_methylation_all.
There are 345 mutations returned.
doing 112 now.
Molecular profile ID is hnsc_broad_mutations.
Sample list ID is hnsc_broad_all.
There are 64 mutations returned.
doing 113 now.
Molecular profile ID is nsclc_unito_2016_mutations.
Sample list ID is nsclc_unito_2016_all.
There are 49 mutations returned.
doing 114 now.
Molecular profile ID is mpnst_mskcc_mutations.
Sample list ID is mpnst_mskcc_all.
There are 3 mutations returned.
doing 115 now.
Molecular profile ID is acyc_mskcc_2013_mutations.
Sample list ID is acyc_mskcc_2013_all.
There are 9 mutations returned.
doing 116 now.
Molecular profile ID is tmb_mskcc_2018_mutations.
Sample list ID is tmb_mskcc_2018_all.
There are 1493 mutations returned.
doing 117 now.
Molecular profile ID is uvm_tcga_mutations.
Sample list ID is uvm_tcga_all.
There are 0 mutations returned.
doing 118 now.
Molecular profile ID is uvm_tcga_mutations.
Sample list ID is uvm_tcga_methylation_all.
There are 0 mutations returned.
doing 119 now.
Molecular profile ID is acbc_mskcc_2015_mutations.
Sample list ID is acbc_mskcc_2015_all.
There are 0 mutations returned.
doing 120 now.
Molecular profile ID is ov_tcga_pub_mutations.
Sample list ID is ov_tcga_pub_all.
There are 318 mutations returned.
doing 121 now.
Molecular profile ID is ov_tcga_pub_mutations.
Sample list ID is ov_tcga_pub_methylation_all.
There are 318 mutations returned.
doing 122 now.
Molecular profile ID is prad_broad_2013_mutations.
Sample list ID is prad_broad_2013_all.
There are 10 mutations returned.
doing 123 now.
Molecular profile ID is luad_tcga_pub_mutations.
Sample list ID is luad_tcga_pub_all.
There are 181 mutations returned.
doing 124 now.
Molecular profile ID is luad_tcga_pub_mutations.
Sample list ID is luad_tcga_pub_methylation_all.
There are 180 mutations returned.
doing 125 now.
Molecular profile ID is blca_cornell_2016_mutations.
Sample list ID is blca_cornell_2016_all.
There are 67 mutations returned.
doing 126 now.
Molecular profile ID is laml_tcga_pub_mutations.
Sample list ID is laml_tcga_pub_all.
There are 37 mutations returned.
doing 127 now.
Molecular profile ID is laml_tcga_pub_mutations.
Sample list ID is laml_tcga_pub_methylation_all.
There are 37 mutations returned.
doing 128 now.
Molecular profile ID is lgggbm_tcga_pub_mutations.
Sample list ID is lgggbm_tcga_pub_all.
There are 672 mutations returned.
doing 129 now.
Molecular profile ID is odg_msk_2017_mutations.
Sample list ID is odg_msk_2017_all.
There are 5 mutations returned.
doing 130 now.
Molecular profile ID is gct_msk_2016_mutations.
Sample list ID is gct_msk_2016_all.
There are 34 mutations returned.
doing 131 now.
Molecular profile ID is metastatic_solid_tumors_mich_2017_mutations.
Sample list ID is metastatic_solid_tumors_mich_2017_all.
There are 426 mutations returned.
doing 132 now.
Molecular profile ID is lusc_tcga_pub_mutations.
Sample list ID is lusc_tcga_pub_all.
There are 215 mutations returned.
doing 133 now.
Molecular profile ID is lusc_tcga_pub_mutations.
Sample list ID is lusc_tcga_pub_methylation_all.
There are 124 mutations returned.
doing 134 now.
Molecular profile ID is mnm_washu_2016_mutations.
Sample list ID is mnm_washu_2016_all.
There are 43 mutations returned.
doing 135 now.
Molecular profile ID is coad_caseccc_2015_mutations.
Sample list ID is coad_caseccc_2015_all.
There are 31 mutations returned.
doing 136 now.
Molecular profile ID is mpn_cimr_2013_mutations.
Sample list ID is mpn_cimr_2013_all.
There are 4 mutations returned.
doing 137 now.
Molecular profile ID is ccrcc_dfci_2019_mutations.
Sample list ID is ccrcc_dfci_2019_all.
There are 4 mutations returned.
doing 138 now.
Molecular profile ID is nsclc_mskcc_2015_mutations.
Sample list ID is nsclc_mskcc_2015_all.
There are 9 mutations returned.
doing 139 now.
Molecular profile ID is prad_tcga_mutations.
Sample list ID is prad_tcga_all.
There are 104 mutations returned.
doing 140 now.
Molecular profile ID is prad_tcga_mutations.
Sample list ID is prad_tcga_methylation_all.
There are 104 mutations returned.
doing 141 now.
Molecular profile ID is lung_msk_2017_mutations.
Sample list ID is lung_msk_2017_all.
There are 991 mutations returned.
doing 142 now.
Molecular profile ID is nsclc_pd1_msk_2018_mutations.
Sample list ID is nsclc_pd1_msk_2018_all.
There are 213 mutations returned.
doing 143 now.
Molecular profile ID is ucec_msk_2018_mutations.
Sample list ID is ucec_msk_2018_all.
There are 307 mutations returned.
doing 144 now.
Molecular profile ID is skcm_tcga_mutations.
Sample list ID is skcm_tcga_all.
There are 252 mutations returned.
doing 145 now.
Molecular profile ID is skcm_tcga_mutations.
Sample list ID is skcm_tcga_methylation_all.
There are 249 mutations returned.
doing 146 now.
Molecular profile ID is ov_tcga_mutations.
Sample list ID is ov_tcga_all.
There are 292 mutations returned.
doing 147 now.
Molecular profile ID is ov_tcga_mutations.
Sample list ID is ov_tcga_methylation_all.
There are 0 mutations returned.
doing 148 now.
Molecular profile ID is coad_cptac_2019_mutations.
Sample list ID is coad_cptac_2019_all.
There are 106 mutations returned.
doing 149 now.
Molecular profile ID is rectal_msk_2019_mutations.
Sample list ID is rectal_msk_2019_all.
There are 353 mutations returned.
doing 150 now.
Molecular profile ID is urcc_mskcc_2016_mutations.
Sample list ID is urcc_mskcc_2016_all.
There are 10 mutations returned.
doing 151 now.
Molecular profile ID is egc_msk_2017_mutations.
Sample list ID is egc_msk_2017_all.
There are 313 mutations returned.
doing 152 now.
Molecular profile ID is chol_msk_2018_mutations.
Sample list ID is chol_msk_2018_all.
There are 78 mutations returned.
doing 153 now.
Molecular profile ID is ihch_smmu_2014_mutations.
Sample list ID is ihch_smmu_2014_all.
There are 59 mutations returned.
doing 154 now.
Molecular profile ID is nsclc_mskcc_2018_mutations.
Sample list ID is nsclc_mskcc_2018_all.
There are 71 mutations returned.
doing 155 now.
Molecular profile ID is prad_p1000_mutations.
Sample list ID is prad_p1000_all.
There are 288 mutations returned.
doing 156 now.
Molecular profile ID is coadread_dfci_2016_mutations.
Sample list ID is coadread_dfci_2016_all.
There are 620 mutations returned.
doing 157 now.
Molecular profile ID is utuc_mskcc_2015_mutations.
Sample list ID is utuc_mskcc_2015_all.
There are 54 mutations returned.
doing 158 now.
Molecular profile ID is brca_igr_2015_mutations.
Sample list ID is brca_igr_2015_all.
There are 176 mutations returned.
doing 159 now.
Molecular profile ID is luad_tcga_mutations.
Sample list ID is luad_tcga_all.
There are 180 mutations returned.
doing 160 now.
Molecular profile ID is luad_tcga_mutations.
Sample list ID is luad_tcga_methylation_all.
There are 179 mutations returned.
doing 161 now.
Molecular profile ID is blca_tcga_pub_mutations.
Sample list ID is blca_tcga_pub_all.
There are 115 mutations returned.
doing 162 now.
Molecular profile ID is blca_tcga_pub_mutations.
Sample list ID is blca_tcga_pub_methylation_all.
There are 115 mutations returned.
doing 163 now.
Molecular profile ID is kirc_tcga_pub_mutations.
Sample list ID is kirc_tcga_pub_all.
There are 47 mutations returned.
doing 164 now.
Molecular profile ID is kirc_tcga_pub_mutations.
Sample list ID is kirc_tcga_pub_methylation_all.
There are 23 mutations returned.
doing 165 now.
Molecular profile ID is gbm_tcga_pub2013_mutations.
Sample list ID is gbm_tcga_pub2013_all.
There are 217 mutations returned.
doing 166 now.
Molecular profile ID is hnsc_tcga_pub_mutations.
Sample list ID is hnsc_tcga_pub_all.
There are 337 mutations returned.
doing 167 now.
Molecular profile ID is hnsc_tcga_pub_mutations.
Sample list ID is hnsc_tcga_pub_methylation_all.
There are 337 mutations returned.
doing 168 now.
Molecular profile ID is blca_mskcc_solit_2012_mutations.
Sample list ID is blca_mskcc_solit_2012_all.
There are 53 mutations returned.
doing 169 now.
Molecular profile ID is blca_mskcc_solit_2012_mutations.
Sample list ID is blca_mskcc_solit_2012_methylation_all.
There are 14 mutations returned.
doing 170 now.
Molecular profile ID is cellline_nci60_mutations.
Sample list ID is cellline_nci60_all.
There are 62 mutations returned.
doing 171 now.
Molecular profile ID is mel_ucla_2016_mutations.
Sample list ID is mel_ucla_2016_all.
There are 29 mutations returned.
doing 172 now.
Molecular profile ID is all_stjude_2015_mutations.
Sample list ID is all_stjude_2015_all.
There are 14 mutations returned.
doing 173 now.
Molecular profile ID is brca_bccrc_xenograft_2014_mutations.
Sample list ID is brca_bccrc_xenograft_2014_all.
There are 55 mutations returned.
doing 174 now.
Molecular profile ID is coadread_genentech_mutations.
Sample list ID is coadread_genentech_all.
There are 81 mutations returned.
doing 175 now.
Molecular profile ID is sclc_jhu_mutations.
Sample list ID is sclc_jhu_all.
There are 42 mutations returned.
doing 176 now.
Molecular profile ID is acyc_mgh_2016_mutations.
Sample list ID is acyc_mgh_2016_all.
There are 0 mutations returned.
doing 177 now.
Molecular profile ID is prad_cpcg_2017_mutations.
Sample list ID is prad_cpcg_2017_all.
There are 27 mutations returned.
doing 178 now.
Molecular profile ID is summit_2018_mutations.
Sample list ID is summit_2018_all.
There are 89 mutations returned.
doing 179 now.
Molecular profile ID is all_phase2_target_2018_pub_mutations.
Sample list ID is all_phase2_target_2018_pub_all.
There are 22 mutations returned.
doing 180 now.
Molecular profile ID is all_phase2_target_2018_pub_mutations.
Sample list ID is all_phase2_target_2018_pub_methylation_all.
There are 9 mutations returned.
doing 181 now.
Molecular profile ID is dlbcl_duke_2017_mutations.
Sample list ID is dlbcl_duke_2017_all.
There are 118 mutations returned.
doing 182 now.
Molecular profile ID is blca_plasmacytoid_mskcc_2016_mutations.
Sample list ID is blca_plasmacytoid_mskcc_2016_all.
There are 42 mutations returned.
doing 183 now.
Molecular profile ID is coadread_mskcc_mutations.
Sample list ID is coadread_mskcc_all.
There are 150 mutations returned.
doing 184 now.
Molecular profile ID is hcc_mskimpact_2018_mutations.
Sample list ID is hcc_mskimpact_2018_all.
There are 49 mutations returned.
doing 185 now.
Molecular profile ID is breast_msk_2018_mutations.
Sample list ID is breast_msk_2018_all.
There are 1717 mutations returned.
doing 186 now.
Molecular profile ID is histiocytosis_cobi_msk_2019_mutations.
Sample list ID is histiocytosis_cobi_msk_2019_all.
There are 3 mutations returned.
doing 187 now.
Molecular profile ID is lcll_broad_2013_mutations.
Sample list ID is lcll_broad_2013_all.
There are 27 mutations returned.
doing 188 now.
Molecular profile ID is lymphoma_cellline_msk_2020_mutations.
Sample list ID is lymphoma_cellline_msk_2020_all.
There are 39 mutations returned.
doing 189 now.
Molecular profile ID is luad_broad_mutations.
Sample list ID is luad_broad_all.
There are 152 mutations returned.
doing 190 now.
Molecular profile ID is acc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is acc_tcga_pan_can_atlas_2018_all.
There are 23 mutations returned.
doing 191 now.
Molecular profile ID is blca_tcga_pan_can_atlas_2018_mutations.
Sample list ID is blca_tcga_pan_can_atlas_2018_all.
There are 394 mutations returned.
doing 192 now.
Molecular profile ID is brca_tcga_pan_can_atlas_2018_mutations.
Sample list ID is brca_tcga_pan_can_atlas_2018_all.
There are 835 mutations returned.
doing 193 now.
Molecular profile ID is cesc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is cesc_tcga_pan_can_atlas_2018_all.
There are 170 mutations returned.
doing 194 now.
Molecular profile ID is coadread_tcga_pan_can_atlas_2018_mutations.
Sample list ID is coadread_tcga_pan_can_atlas_2018_all.
There are 615 mutations returned.
doing 195 now.
Molecular profile ID is brca_tcga_pub2015_mutations.
Sample list ID is brca_tcga_pub2015_all.
There are 655 mutations returned.
doing 196 now.
Molecular profile ID is brca_tcga_pub2015_mutations.
Sample list ID is brca_tcga_pub2015_methylation_all.
There are 655 mutations returned.
doing 197 now.
Molecular profile ID is chol_tcga_pan_can_atlas_2018_mutations.
Sample list ID is chol_tcga_pan_can_atlas_2018_all.
There are 10 mutations returned.
doing 198 now.
Molecular profile ID is dlbc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is dlbc_tcga_pan_can_atlas_2018_all.
There are 6 mutations returned.
doing 199 now.
Molecular profile ID is esca_tcga_pan_can_atlas_2018_mutations.
Sample list ID is esca_tcga_pan_can_atlas_2018_all.
There are 211 mutations returned.
doing 200 now.
Molecular profile ID is gbm_tcga_pan_can_atlas_2018_mutations.
Sample list ID is gbm_tcga_pan_can_atlas_2018_all.
There are 463 mutations returned.
doing 201 now.
Molecular profile ID is hnsc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is hnsc_tcga_pan_can_atlas_2018_all.
There are 594 mutations returned.
doing 202 now.
Molecular profile ID is kich_tcga_pan_can_atlas_2018_mutations.
Sample list ID is kich_tcga_pan_can_atlas_2018_all.
There are 33 mutations returned.
doing 203 now.
Molecular profile ID is kirc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is kirc_tcga_pan_can_atlas_2018_all.
There are 33 mutations returned.
doing 204 now.
Molecular profile ID is kirp_tcga_pan_can_atlas_2018_mutations.
Sample list ID is kirp_tcga_pan_can_atlas_2018_all.
There are 20 mutations returned.
doing 205 now.
Molecular profile ID is laml_tcga_pan_can_atlas_2018_mutations.
Sample list ID is laml_tcga_pan_can_atlas_2018_all.
There are 38 mutations returned.
doing 206 now.
Molecular profile ID is lgg_tcga_pan_can_atlas_2018_mutations.
Sample list ID is lgg_tcga_pan_can_atlas_2018_all.
There are 443 mutations returned.
doing 207 now.
Molecular profile ID is lihc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is lihc_tcga_pan_can_atlas_2018_all.
There are 146 mutations returned.
doing 208 now.
Molecular profile ID is luad_tcga_pan_can_atlas_2018_mutations.
Sample list ID is luad_tcga_pan_can_atlas_2018_all.
There are 447 mutations returned.
doing 209 now.
Molecular profile ID is cfdna_msk_2019_mutations.
Sample list ID is cfdna_msk_2019_all.
There are 307 mutations returned.
doing 210 now.
Molecular profile ID is glioma_mskcc_2019_mutations.
Sample list ID is glioma_mskcc_2019_all.
There are 1217 mutations returned.
doing 211 now.
Molecular profile ID is lusc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is lusc_tcga_pan_can_atlas_2018_all.
There are 570 mutations returned.
doing 212 now.
Molecular profile ID is meso_tcga_pan_can_atlas_2018_mutations.
Sample list ID is meso_tcga_pan_can_atlas_2018_all.
There are 19 mutations returned.
doing 213 now.
Molecular profile ID is ov_tcga_pan_can_atlas_2018_mutations.
Sample list ID is ov_tcga_pan_can_atlas_2018_all.
There are 410 mutations returned.
doing 214 now.
Molecular profile ID is paad_tcga_pan_can_atlas_2018_mutations.
Sample list ID is paad_tcga_pan_can_atlas_2018_all.
There are 115 mutations returned.
doing 215 now.
Molecular profile ID is pcpg_tcga_pan_can_atlas_2018_mutations.
Sample list ID is pcpg_tcga_pan_can_atlas_2018_all.
There are 19 mutations returned.
doing 216 now.
Molecular profile ID is prad_tcga_pan_can_atlas_2018_mutations.
Sample list ID is prad_tcga_pan_can_atlas_2018_all.
There are 113 mutations returned.
doing 217 now.
Molecular profile ID is sarc_tcga_pan_can_atlas_2018_mutations.
Sample list ID is sarc_tcga_pan_can_atlas_2018_all.
There are 118 mutations returned.
doing 218 now.
Molecular profile ID is skcm_tcga_pan_can_atlas_2018_mutations.
Sample list ID is skcm_tcga_pan_can_atlas_2018_all.
There are 342 mutations returned.
doing 219 now.
Molecular profile ID is stad_tcga_pan_can_atlas_2018_mutations.
Sample list ID is stad_tcga_pan_can_atlas_2018_all.
There are 383 mutations returned.
doing 220 now.
Molecular profile ID is tgct_tcga_pan_can_atlas_2018_mutations.
Sample list ID is tgct_tcga_pan_can_atlas_2018_all.
There are 11 mutations returned.
doing 221 now.
Molecular profile ID is thca_tcga_pan_can_atlas_2018_mutations.
Sample list ID is thca_tcga_pan_can_atlas_2018_all.
There are 65 mutations returned.
doing 222 now.
Molecular profile ID is thym_tcga_pan_can_atlas_2018_mutations.
Sample list ID is thym_tcga_pan_can_atlas_2018_all.
There are 17 mutations returned.
doing 223 now.
Molecular profile ID is ucec_tcga_pan_can_atlas_2018_mutations.
Sample list ID is ucec_tcga_pan_can_atlas_2018_all.
There are 1287 mutations returned.
doing 224 now.
Molecular profile ID is ucs_tcga_pan_can_atlas_2018_mutations.
Sample list ID is ucs_tcga_pan_can_atlas_2018_all.
There are 96 mutations returned.
doing 225 now.
Molecular profile ID is uvm_tcga_pan_can_atlas_2018_mutations.
Sample list ID is uvm_tcga_pan_can_atlas_2018_all.
There are 0 mutations returned.
doing 226 now.
Molecular profile ID is acc_tcga_mutations.
Sample list ID is acc_tcga_all.
There are 24 mutations returned.
doing 227 now.
Molecular profile ID is acc_tcga_mutations.
Sample list ID is acc_tcga_methylation_all.
There are 21 mutations returned.
doing 228 now.
Molecular profile ID is blca_tcga_mutations.
Sample list ID is blca_tcga_all.
There are 117 mutations returned.
doing 229 now.
Molecular profile ID is blca_tcga_mutations.
Sample list ID is blca_tcga_methylation_all.
There are 117 mutations returned.
doing 230 now.
Molecular profile ID is brca_tcga_mutations.
Sample list ID is brca_tcga_all.
There are 705 mutations returned.
doing 231 now.
Molecular profile ID is brca_tcga_mutations.
Sample list ID is brca_tcga_methylation_all.
There are 488 mutations returned.
doing 232 now.
Molecular profile ID is cesc_tcga_mutations.
Sample list ID is cesc_tcga_all.
There are 94 mutations returned.
doing 233 now.
Molecular profile ID is cesc_tcga_mutations.
Sample list ID is cesc_tcga_methylation_all.
There are 94 mutations returned.
doing 234 now.
Molecular profile ID is coadread_tcga_mutations.
Sample list ID is coadread_tcga_all.
There are 204 mutations returned.
doing 235 now.
Molecular profile ID is coadread_tcga_mutations.
Sample list ID is coadread_tcga_methylation_all.
There are 9 mutations returned.
doing 236 now.
Molecular profile ID is dlbc_tcga_mutations.
Sample list ID is dlbc_tcga_all.
There are 13 mutations returned.
doing 237 now.
Molecular profile ID is dlbc_tcga_mutations.
Sample list ID is dlbc_tcga_methylation_all.
There are 13 mutations returned.
doing 238 now.
Molecular profile ID is laml_tcga_mutations.
Sample list ID is laml_tcga_all.
There are 37 mutations returned.
doing 239 now.
Molecular profile ID is laml_tcga_mutations.
Sample list ID is laml_tcga_methylation_all.
There are 37 mutations returned.
doing 240 now.
Molecular profile ID is kirc_tcga_mutations.
Sample list ID is kirc_tcga_all.
There are 60 mutations returned.
doing 241 now.
Molecular profile ID is kirc_tcga_mutations.
Sample list ID is kirc_tcga_methylation_all.
There are 60 mutations returned.
doing 242 now.
Molecular profile ID is kich_tcga_mutations.
Sample list ID is kich_tcga_all.
There are 41 mutations returned.
doing 243 now.
Molecular profile ID is kich_tcga_mutations.
Sample list ID is kich_tcga_methylation_all.
There are 41 mutations returned.
doing 244 now.
Molecular profile ID is esca_tcga_mutations.
Sample list ID is esca_tcga_all.
There are 215 mutations returned.
doing 245 now.
Molecular profile ID is esca_tcga_mutations.
Sample list ID is esca_tcga_methylation_all.
There are 215 mutations returned.
doing 246 now.
Molecular profile ID is gbm_tcga_mutations.
Sample list ID is gbm_tcga_all.
There are 325 mutations returned.
doing 247 now.
Molecular profile ID is gbm_tcga_mutations.
Sample list ID is gbm_tcga_methylation_all.
There are 275 mutations returned.
doing 248 now.