forked from HuLiLab/GBM_CCN1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CCLE_LN229_FULL_Disease.gml
13502 lines (13502 loc) · 203 KB
/
CCLE_LN229_FULL_Disease.gml
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
Creator "igraph version 1.2.5 Wed Mar 31 17:15:33 2021"
Version 1
graph
[
directed 1
node
[
id 0
name "CALR"
label "CALR"
colors "#FFF3F3"
diffs -2.456455237887
totalFlows 4.52435233472011
degree 7
props "TARGET"
]
node
[
id 1
name "HLA-E"
label "HLA-E"
colors "#FFF0F0"
diffs -2.10766545876031
totalFlows 3.73681462502735
degree 6
props "SOURCE"
]
node
[
id 2
name "TAPBP"
label "TAPBP"
colors "#FFA6A6"
diffs -0.24067420157216
totalFlows 1.17882362308602
degree 2
props "PROTEIN"
]
node
[
id 3
name "HLA-A"
label "HLA-A"
colors "#FFE8E8"
diffs -1.45353417033417
totalFlows 1.66813109480935
degree 4
props "PROTEIN"
]
node
[
id 4
name "TAP1"
label "TAP1"
colors "#FFE9E9"
diffs -1.50944353395081
totalFlows 1.82807808812584
degree 4
props "PROTEIN"
]
node
[
id 5
name "HLA-C"
label "HLA-C"
colors "#FF5F5F"
diffs 0.12051609710495
totalFlows 0.540402487341872
degree 2
props "PROTEIN"
]
node
[
id 6
name "UBC"
label "UBC"
colors "#FFFDFD"
diffs -17.6895791204129
totalFlows 11.8122139516745
degree 61
props "PROTEIN"
]
node
[
id 7
name "TBK1"
label "TBK1"
colors "#FFFBFB"
diffs -4.79577032632811
totalFlows 5.45675048248654
degree 10
props "TARGET"
]
node
[
id 8
name "IRF2"
label "IRF2"
colors "#FFEAEA"
diffs -1.52633156096911
totalFlows 2.25419177284593
degree 5
props "TARGET"
]
node
[
id 9
name "MEF2C"
label "MEF2C"
colors "#FFA1A1"
diffs -0.207631710396194
totalFlows 0.971382476925472
degree 2
props "TARGET"
]
node
[
id 10
name "HOXC9"
label "HOXC9"
colors "#FF1515"
diffs 0.669712358979628
totalFlows 0.91231569304918
degree 2
props "TARGET"
]
node
[
id 11
name "PARP1"
label "PARP1"
colors "#FF9C9C"
diffs -0.170992298505109
totalFlows 1.40449349417695
degree 3
props "TARGET"
]
node
[
id 12
name "CREBBP"
label "CREBBP"
colors "#FFDBDB"
diffs -0.927928903377409
totalFlows 1.9556161082927
degree 7
props "TARGET"
]
node
[
id 13
name "BCL3"
label "BCL3"
colors "#FFCBCB"
diffs -0.543721456096098
totalFlows 1.49009144025711
degree 3
props "TARGET"
]
node
[
id 14
name "EP300"
label "EP300"
colors "#FF9393"
diffs -0.0838775393333915
totalFlows 3.51758163450419
degree 10
props "TARGET"
]
node
[
id 15
name "ESR1"
label "ESR1"
colors "#FF0101"
diffs 1.50879569697064
totalFlows 2.27756843971539
degree 6
props "TARGET"
]
node
[
id 16
name "MAP2K6"
label "MAP2K6"
colors "#FF0505"
diffs 1.21127033386246
totalFlows 1.29481830416167
degree 4
props "TARGET"
]
node
[
id 17
name "TP53"
label "TP53"
colors "#FF4D4D"
diffs 0.215392574472984
totalFlows 1.54937055834918
degree 7
props "TARGET"
]
node
[
id 18
name "E2F1"
label "E2F1"
colors "#FFBBBB"
diffs -0.427269685903146
totalFlows 1.7294918254065
degree 4
props "TARGET"
]
node
[
id 19
name "STAT3"
label "STAT3"
colors "#FFD0D0"
diffs -0.631632304472159
totalFlows 9.4996572237775
degree 26
props "TARGET"
]
node
[
id 20
name "AGO2"
label "AGO2"
colors "#FF5A5A"
diffs 0.156932981425106
totalFlows 0.751870108451582
degree 3
props "TARGET"
]
node
[
id 21
name "NFKBIA"
label "NFKBIA"
colors "#FF0505"
diffs 1.20186604613685
totalFlows 2.04015739408281
degree 4
props "TARGET"
]
node
[
id 22
name "VENTX"
label "VENTX"
colors "#FF2828"
diffs 0.440793854340026
totalFlows 0.671847961672368
degree 2
props "TARGET"
]
node
[
id 23
name "SUMO1"
label "SUMO1"
colors "#FF0404"
diffs 1.24109331680277
totalFlows 7.47119694001354
degree 21
props "TARGET"
]
node
[
id 24
name "HDAC1"
label "HDAC1"
colors "#FF4949"
diffs 0.235441027388103
totalFlows 4.17047123470235
degree 9
props "TARGET"
]
node
[
id 25
name "MAFB"
label "MAFB"
colors "#FF9696"
diffs -0.098847035319244
totalFlows 0.630264536204284
degree 2
props "TARGET"
]
node
[
id 26
name "RPS6KA5"
label "RPS6KA5"
colors "#FF0303"
diffs 1.39360748535423
totalFlows 1.45770371821614
degree 3
props "TARGET"
]
node
[
id 27
name "AR"
label "AR"
colors "#FFAEAE"
diffs -0.294977654534504
totalFlows 2.7774229113296
degree 6
props "TARGET"
]
node
[
id 28
name "HINT1"
label "HINT1"
colors "#FF5D5D"
diffs 0.127324350114774
totalFlows 0.599796717923312
degree 2
props "TARGET"
]
node
[
id 29
name "PSMC5"
label "PSMC5"
colors "#FFD2D2"
diffs -0.67985111490071
totalFlows 2.0243663894349
degree 6
props "TARGET"
]
node
[
id 30
name "IWS1"
label "IWS1"
colors "#FF3A3A"
diffs 0.3145150243951
totalFlows 0.578238133937412
degree 2
props "TARGET"
]
node
[
id 31
name "PML"
label "PML"
colors "#FFF5F5"
diffs -2.81263757832677
totalFlows 3.16477006590827
degree 9
props "TARGET"
]
node
[
id 32
name "IRF2BP1"
label "IRF2BP1"
colors "#FF2C2C"
diffs 0.412848296105534
totalFlows 0.57245087667158
degree 2
props "TARGET"
]
node
[
id 33
name "HDAC3"
label "HDAC3"
colors "#FFE4E4"
diffs -1.18109225712994
totalFlows 1.06282044347768
degree 5
props "TARGET"
]
node
[
id 34
name "SP1"
label "SP1"
colors "#FF0202"
diffs 1.470812254999
totalFlows 1.56230036440964
degree 5
props "TARGET"
]
node
[
id 35
name "CSNK2A1"
label "CSNK2A1"
colors "#FF9A9A"
diffs -0.14147586957619
totalFlows 0.525715630893904
degree 2
props "TARGET"
]
node
[
id 36
name "HDAC4"
label "HDAC4"
colors "#FF9A9A"
diffs -0.137716018216225
totalFlows 0.716204336951145
degree 4
props "TARGET"
]
node
[
id 37
name "MCRS1"
label "MCRS1"
colors "#FF0909"
diffs 0.964033675923908
totalFlows 0.964033675923908
degree 2
props "TARGET"
]
node
[
id 38
name "DAXX"
label "DAXX"
colors "#FF4949"
diffs 0.234663358900944
totalFlows 0.740060439792672
degree 3
props "TARGET"
]
node
[
id 39
name "EPAS1"
label "EPAS1"
colors "#FF0707"
diffs 1.00154993207832
totalFlows 1.13391729395657
degree 3
props "TARGET"
]
node
[
id 40
name "SMARCA2"
label "SMARCA2"
colors "#FFCCCC"
diffs -0.555525070013262
totalFlows 0.43905178822403
degree 2
props "TARGET"
]
node
[
id 41
name "MYOD1"
label "MYOD1"
colors "#FFABAB"
diffs -0.265386059664784
totalFlows 0.410615957631344
degree 2
props "TARGET"
]
node
[
id 42
name "NFKB1"
label "NFKB1"
colors "#FFF8F8"
diffs -3.22809944165881
totalFlows 2.50515106528321
degree 8
props "TARGET"
]
node
[
id 43
name "BIRC2"
label "BIRC2"
colors "#FFFCFC"
diffs -6.74567608427652
totalFlows 5.58006588431804
degree 12
props "TARGET"
]
node
[
id 44
name "AIRE"
label "AIRE"
colors "#FF0C0C"
diffs 0.840230706259284
totalFlows 0.840230706259284
degree 2
props "TARGET"
]
node
[
id 45
name "TBL1X"
label "TBL1X"
colors "#FF1414"
diffs 0.680395840071643
totalFlows 0.680395840071643
degree 2
props "TARGET"
]
node
[
id 46
name "BCL10"
label "BCL10"
colors "#FFE6E6"
diffs -1.29801631558762
totalFlows 2.09754224347999
degree 5
props "TARGET"
]
node
[
id 47
name "PADI4"
label "PADI4"
colors "#FF0F0F"
diffs 0.767830991331914
totalFlows 0.767830991331914
degree 2
props "TARGET"
]
node
[
id 48
name "DDX3X"
label "DDX3X"
colors "#FFF5F5"
diffs -2.71992215152997
totalFlows 0.672671823595701
degree 6
props "TARGET"
]
node
[
id 49
name "RB1"
label "RB1"
colors "#FFCACA"
diffs -0.538460587728812
totalFlows 0.535038632674556
degree 3
props "TARGET"
]
node
[
id 50
name "SOX10"
label "SOX10"
colors "#FF2727"
diffs 0.455562544651758
totalFlows 0.618889169420354
degree 2
props "TARGET"
]
node
[
id 51
name "C1QBP"
label "C1QBP"
colors "#FF0909"
diffs 0.966010434932596
totalFlows 2.85104126615572
degree 6
props "TARGET"
]
node
[
id 52
name "SOX2"
label "SOX2"
colors "#FFBFBF"
diffs -0.442036079728352
totalFlows 0.779904002656904
degree 2
props "TARGET"
]
node
[
id 53
name "HMGA1"
label "HMGA1"
colors "#FFC6C6"
diffs -0.512624127746554
totalFlows 0.360381735600908
degree 2
props "TARGET"
]
node
[
id 54
name "DMRTC2"
label "DMRTC2"
colors "#FF7D7D"
diffs 0.00881666585872404
totalFlows 0.333966657045874
degree 2
props "TARGET"
]
node
[
id 55
name "PHB"
label "PHB"
colors "#FF0E0E"
diffs 0.79747590516803
totalFlows 0.79747590516803
degree 3
props "TARGET"
]
node
[
id 56
name "ID3"
label "ID3"
colors "#FF1B1B"
diffs 0.563885555731304
totalFlows 0.997483841167826
degree 3
props "TARGET"
]
node
[
id 57
name "DYNLL1"
label "DYNLL1"
colors "#FFBFBF"
diffs -0.445820077746447
totalFlows 1.10560273489151
degree 2
props "TARGET"
]
node
[
id 58
name "YBX1"
label "YBX1"
colors "#FF9797"
diffs -0.104080918631774
totalFlows 1.02544897248258
degree 3
props "TARGET"
]
node
[
id 59
name "ARNT2"
label "ARNT2"
colors "#FF1313"
diffs 0.698394837324588
totalFlows 0.698394837324588
degree 2
props "TARGET"
]
node
[
id 60
name "DNMT1"
label "DNMT1"
colors "#FF5D5D"
diffs 0.127029699579204
totalFlows 0.793227234066272
degree 2
props "TARGET"
]
node
[
id 61
name "KAT2B"
label "KAT2B"
colors "#FF6E6E"
diffs 0.060092074564377
totalFlows 0.621947254727569
degree 4
props "TARGET"
]
node
[
id 62
name "ARRB1"
label "ARRB1"
colors "#FF1717"
diffs 0.585648908606742
totalFlows 0.643812581412454
degree 3
props "TARGET"
]
node
[
id 63
name "POLR2A"
label "POLR2A"
colors "#FF0E0E"
diffs 0.802957747451804
totalFlows 1.36672107563899
degree 4
props "TARGET"
]
node
[
id 64
name "CTBP1"
label "CTBP1"
colors "#FF4141"
diffs 0.287668221448593
totalFlows 0.292156671095848
degree 2
props "TARGET"
]
node
[
id 65
name "HDAC5"
label "HDAC5"
colors "#FF4E4E"
diffs 0.211069872519268
totalFlows 1.21571317865506
degree 4
props "TARGET"
]
node
[
id 66
name "JUN"
label "JUN"
colors "#FFFAFA"
diffs -3.88313953469667
totalFlows 2.07235341501831
degree 7
props "TARGET"
]
node
[
id 67
name "TRIM27"
label "TRIM27"
colors "#FF9B9B"
diffs -0.158191804809662
totalFlows 1.13538315028484
degree 4
props "TARGET"
]
node
[
id 68
name "RPL6"
label "RPL6"
colors "#FFF0F0"
diffs -2.1210478852215
totalFlows 1.61206269073844
degree 4
props "TARGET"
]
node
[
id 69
name "FBXW7"
label "FBXW7"
colors "#FF4D4D"
diffs 0.212785566830246
totalFlows 0.629206215687692
degree 2
props "TARGET"
]
node
[
id 70
name "SSRP1"
label "SSRP1"
colors "#FF9393"
diffs -0.0876788564009821
totalFlows 0.44093267525267
degree 2
props "TARGET"
]
node
[
id 71
name "MED1"
label "MED1"
colors "#FF0D0D"
diffs 0.807302013162712
totalFlows 0.807302013162712
degree 3
props "TARGET"
]
node
[
id 72
name "UBE2I"
label "UBE2I"
colors "#FF0B0B"
diffs 0.875633106812328
totalFlows 1.01906494238568
degree 5
props "TARGET"
]
node
[
id 73
name "MYC"
label "MYC"
colors "#FFFAFA"
diffs -3.97128756489086
totalFlows 2.02597294860519
degree 7
props "TARGET"
]
node
[
id 74
name "WT1"
label "WT1"
colors "#FF2525"
diffs 0.4732981390003
totalFlows 0.618841680566076
degree 2
props "TARGET"
]
node
[
id 75
name "DACH2"
label "DACH2"
colors "#FFCECE"
diffs -0.57885587530066
totalFlows 0.237908263730198
degree 2
props "TARGET"
]
node
[
id 76
name "FLNA"
label "FLNA"
colors "#FF1010"
diffs 0.755731749921284
totalFlows 0.755731749921284
degree 2
props "TARGET"
]
node
[
id 77
name "USP7"
label "USP7"
colors "#FF1818"
diffs 0.581736707655142
totalFlows 0.581736707655142
degree 2
props "TARGET"
]
node
[
id 78
name "ATF2"
label "ATF2"
colors "#FF3C3C"
diffs 0.305817501960922
totalFlows 0.708820696940766
degree 2
props "TARGET"
]
node
[
id 79
name "TLX3"
label "TLX3"
colors "#FFC0C0"
diffs -0.457340844603042
totalFlows 0.219739143119398
degree 2
props "TARGET"
]
node
[
id 80
name "CEBPB"
label "CEBPB"
colors "#FF1D1D"
diffs 0.547072065765458
totalFlows 0.611186749908709
degree 3
props "TARGET"
]
node
[
id 81
name "ABL1"
label "ABL1"
colors "#FF1313"
diffs 0.685218273935072
totalFlows 1.23610639255012
degree 5
props "TARGET"
]
node
[
id 82
name "BCL2"
label "BCL2"
colors "#FF1919"
diffs 0.569951079716921
totalFlows 1.13424963339772
degree 4
props "TARGET"
]
node
[
id 83
name "TRIM11"
label "TRIM11"
colors "#FF0202"
diffs 1.47346340099261
totalFlows 3.1590777377003
degree 6
props "TARGET"
]
node
[
id 84
name "PPP2CA"
label "PPP2CA"
colors "#FFB0B0"
diffs -0.306263673345288
totalFlows 0.487482622292022
degree 2
props "TARGET"
]
node
[
id 85
name "WASL"
label "WASL"
colors "#FFF1F1"
diffs -2.29847716717031
totalFlows 1.11585827659742
degree 2
props "TARGET"
]
node
[
id 86
name "YWHAZ"
label "YWHAZ"
colors "#FF5252"
diffs 0.181371271047901
totalFlows 0.881116165437532
degree 5
props "TARGET"
]
node
[
id 87
name "SNAPC5"
label "SNAPC5"
colors "#FF6363"
diffs 0.094921738540112
totalFlows 0.303701408022376
degree 2
props "TARGET"
]
node
[
id 88
name "NKX2-5"
label "NKX2-5"
colors "#FF2E2E"
diffs 0.406504105892824
totalFlows 0.406504105892824
degree 2
props "TARGET"
]
node
[
id 89
name "SMAD3"
label "SMAD3"
colors "#FFF4F4"
diffs -2.53868000605656
totalFlows 0.185700875102268
degree 3
props "TARGET"
]
node
[
id 90
name "NDN"
label "NDN"