-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcyr61pos_FULL_Disease.gml
47072 lines (47072 loc) · 709 KB
/
cyr61pos_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 @VERSION@ Fri Mar 31 22:42:45 2017"
Version 1
graph
[
directed 1
node
[
id 0
name "DMRTC2"
label "DMRTC2"
colors "#FF8F8F"
diffs 0.376364610323854
totalFlows 1.99999999862266
degree 2
props "TARGET"
]
node
[
id 1
name "IRF9"
label "IRF9"
colors "#FF1414"
diffs 3.03284784064135
totalFlows 27.269910845212
degree 20
props "SOURCE"
]
node
[
id 2
name "ZFY"
label "ZFY"
colors "#FF2121"
diffs 1.99999778452142
totalFlows 1.99999778452142
degree 2
props "TARGET"
]
node
[
id 3
name "PRDM2"
label "PRDM2"
colors "#FF2323"
diffs 1.99998517060533
totalFlows 1.99998517060533
degree 2
props "TARGET"
]
node
[
id 4
name "PCGF3"
label "PCGF3"
colors "#FF0808"
diffs 3.99991323234588
totalFlows 3.99991323234588
degree 3
props "TARGET"
]
node
[
id 5
name "IRF2BP2"
label "IRF2BP2"
colors "#FF2323"
diffs 1.99997471534849
totalFlows 1.99997471534849
degree 2
props "TARGET"
]
node
[
id 6
name "EP300"
label "EP300"
colors "#FF0303"
diffs 6.24440495273732
totalFlows 23.3203920893484
degree 14
props "TARGET"
]
node
[
id 7
name "ZKSCAN7"
label "ZKSCAN7"
colors "#FF2323"
diffs 1.9999723643824
totalFlows 1.9999723643824
degree 2
props "TARGET"
]
node
[
id 8
name "PRKDC"
label "PRKDC"
colors "#FFE1E1"
diffs -1.73039484898509
totalFlows 5.64780343695707
degree 5
props "TARGET"
]
node
[
id 9
name "EEF1A1"
label "EEF1A1"
colors "#FF0000"
diffs 13.5748339866912
totalFlows 15.9949394147954
degree 9
props "TARGET"
]
node
[
id 10
name "TMEM173"
label "TMEM173"
colors "#FFBDBD"
diffs -0.282729155784222
totalFlows 6.01189083260079
degree 6
props "TARGET"
]
node
[
id 11
name "ACIN1"
label "ACIN1"
colors "#FFBABA"
diffs -0.226750018275002
totalFlows 1.9999678989997
degree 2
props "TARGET"
]
node
[
id 12
name "DDX1"
label "DDX1"
colors "#FF0505"
diffs 5.48000396279886
totalFlows 7.99940356796548
degree 5
props "TARGET"
]
node
[
id 13
name "HDAC3"
label "HDAC3"
colors "#FF7B7B"
diffs 0.745476414149155
totalFlows 3.86307677178809
degree 3
props "TARGET"
]
node
[
id 14
name "ZNF879"
label "ZNF879"
colors "#FF2424"
diffs 1.99995404247416
totalFlows 1.99995404247416
degree 2
props "TARGET"
]
node
[
id 15
name "SMAD3"
label "SMAD3"
colors "#FF0202"
diffs 8.06263909947906
totalFlows 12.5339436778415
degree 9
props "TARGET"
]
node
[
id 16
name "BPTF"
label "BPTF"
colors "#FF1111"
diffs 3.2093887629152
totalFlows 3.2093887629152
degree 3
props "TARGET"
]
node
[
id 17
name "STAT3"
label "STAT3"
colors "#FF0303"
diffs 6.28742694616564
totalFlows 16.3302447088163
degree 11
props "TARGET"
]
node
[
id 18
name "E2F4"
label "E2F4"
colors "#FF3E3E"
diffs 1.99778511899507
totalFlows 1.99778511899507
degree 2
props "TARGET"
]
node
[
id 19
name "RCOR3"
label "RCOR3"
colors "#FF2727"
diffs 1.99987812517061
totalFlows 1.99987812517061
degree 2
props "TARGET"
]
node
[
id 20
name "PAN2"
label "PAN2"
colors "#FF0101"
diffs 8.85459057282854
totalFlows 17.6263386452236
degree 10
props "TARGET"
]
node
[
id 21
name "XRN2"
label "XRN2"
colors "#FF0101"
diffs 9.4355126501804
totalFlows 9.4355126501804
degree 6
props "TARGET"
]
node
[
id 22
name "PSMC5"
label "PSMC5"
colors "#FF8C8C"
diffs 0.424328598325046
totalFlows 7.85805069305993
degree 6
props "TARGET"
]
node
[
id 23
name "NFYA"
label "NFYA"
colors "#FFAEAE"
diffs 1.61970839338554e-05
totalFlows 1.99999459322381
degree 2
props "TARGET"
]
node
[
id 24
name "PURA"
label "PURA"
colors "#FFBCBC"
diffs -0.282010843516678
totalFlows 3.25158234978701
degree 3
props "TARGET"
]
node
[
id 25
name "HDAC1"
label "HDAC1"
colors "#FFE3E3"
diffs -1.86226163985146
totalFlows 9.22262989253371
degree 8
props "TARGET"
]
node
[
id 26
name "TARDBP"
label "TARDBP"
colors "#FF0606"
diffs 5.09763804326511
totalFlows 18.8287143610754
degree 11
props "TARGET"
]
node
[
id 27
name "MAPK1"
label "MAPK1"
colors "#FF0000"
diffs 13.286356301585
totalFlows 18.4877430454683
degree 11
props "TARGET"
]
node
[
id 28
name "CLIP1"
label "CLIP1"
colors "#FF3A3A"
diffs 1.99859517753643
totalFlows 1.99859517753643
degree 3
props "TARGET"
]
node
[
id 29
name "ESR2"
label "ESR2"
colors "#FFCBCB"
diffs -0.76432394756897
totalFlows 3.86557008951134
degree 3
props "TARGET"
]
node
[
id 30
name "LIN28A"
label "LIN28A"
colors "#FF5D5D"
diffs 1.41035788394655
totalFlows 4.57279586436316
degree 4
props "TARGET"
]
node
[
id 31
name "SF3B3"
label "SF3B3"
colors "#FF0202"
diffs 7.94188705810453
totalFlows 10.8932701589174
degree 7
props "TARGET"
]
node
[
id 32
name "TP53"
label "TP53"
colors "#FF0000"
diffs 16.1484168964275
totalFlows 32.8166590994893
degree 19
props "TARGET"
]
node
[
id 33
name "SND1"
label "SND1"
colors "#FFC2C2"
diffs -0.44194192156228
totalFlows 1.99766759908391
degree 2
props "TARGET"
]
node
[
id 34
name "CASZ1"
label "CASZ1"
colors "#FF2C2C"
diffs 1.99964447979749
totalFlows 1.99964447979749
degree 2
props "TARGET"
]
node
[
id 35
name "HAND1"
label "HAND1"
colors "#FF4545"
diffs 1.9951520907585
totalFlows 1.9951520907585
degree 2
props "TARGET"
]
node
[
id 36
name "E2F1"
label "E2F1"
colors "#FFD4D4"
diffs -1.12626036473898
totalFlows 4.7378876554371
degree 5
props "TARGET"
]
node
[
id 37
name "ZNF510"
label "ZNF510"
colors "#FF0B0B"
diffs 3.99781010299667
totalFlows 3.99781010299667
degree 3
props "TARGET"
]
node
[
id 38
name "TMPO"
label "TMPO"
colors "#FFC8C8"
diffs -0.664913309062392
totalFlows 3.33040279283724
degree 3
props "TARGET"
]
node
[
id 39
name "CSNK2B"
label "CSNK2B"
colors "#FF0303"
diffs 6.13136097884956
totalFlows 9.30102673135206
degree 7
props "TARGET"
]
node
[
id 40
name "NLK"
label "NLK"
colors "#FF0B0B"
diffs 3.99759495077643
totalFlows 3.99759495077643
degree 3
props "TARGET"
]
node
[
id 41
name "BIRC2"
label "BIRC2"
colors "#FF0D0D"
diffs 3.85308549003241
totalFlows 3.85308549003241
degree 4
props "TARGET"
]
node
[
id 42
name "NR3C1"
label "NR3C1"
colors "#FF6666"
diffs 1.21427373204788
totalFlows 4.21407551022173
degree 3
props "TARGET"
]
node
[
id 43
name "CALR"
label "CALR"
colors "#FF0808"
diffs 4.28565225615092
totalFlows 8.45623259202898
degree 6
props "TARGET"
]
node
[
id 44
name "ESR1"
label "ESR1"
colors "#FFF6F6"
diffs -3.84020622853744
totalFlows 10.8859882759146
degree 7
props "TARGET"
]
node
[
id 45
name "HNRNPDL"
label "HNRNPDL"
colors "#FF9696"
diffs 0.253542915644108
totalFlows 7.74504061390375
degree 5
props "TARGET"
]
node
[
id 46
name "NR2C2"
label "NR2C2"
colors "#FF4444"
diffs 1.99627473795957
totalFlows 3.99504482872425
degree 3
props "TARGET"
]
node
[
id 47
name "ZNF543"
label "ZNF543"
colors "#FF2626"
diffs 1.99990461182505
totalFlows 1.99990461182505
degree 2
props "TARGET"
]
node
[
id 48
name "SUMO1"
label "SUMO1"
colors "#FFF5F5"
diffs -3.52420805328288
totalFlows 19.9817240370751
degree 17
props "TARGET"
]
node
[
id 49
name "TBP"
label "TBP"
colors "#FFE7E7"
diffs -1.99515256058471
totalFlows 0.00481381363162781
degree 2
props "TARGET"
]
node
[
id 50
name "TADA2A"
label "TADA2A"
colors "#FF0505"
diffs 5.19033207305274
totalFlows 7.52529796173672
degree 5
props "TARGET"
]
node
[
id 51
name "TFB1M"
label "TFB1M"
colors "#FF2727"
diffs 1.99988379414566
totalFlows 1.99988379414566
degree 2
props "TARGET"
]
node
[
id 52
name "SETDB1"
label "SETDB1"
colors "#FF0606"
diffs 4.90849512904602
totalFlows 10.9072622006615
degree 7
props "TARGET"
]
node
[
id 53
name "RBBP4"
label "RBBP4"
colors "#FF1616"
diffs 2.80800435530834
totalFlows 6.79560183620099
degree 4
props "TARGET"
]
node
[
id 54
name "ATF2"
label "ATF2"
colors "#FF0202"
diffs 6.3358586400746
totalFlows 10.284339352632
degree 7
props "TARGET"
]
node
[
id 55
name "PML"
label "PML"
colors "#FF0202"
diffs 7.8556541525822
totalFlows 7.99069494666365
degree 5
props "TARGET"
]
node
[
id 56
name "JMJD6"
label "JMJD6"
colors "#FFA9A9"
diffs 0.00175127443750589
totalFlows 1.98767806278435
degree 2
props "TARGET"
]
node
[
id 57
name "TAF1A"
label "TAF1A"
colors "#FF0909"
diffs 3.99934717309094
totalFlows 3.99934717309094
degree 3
props "TARGET"
]
node
[
id 58
name "VHL"
label "VHL"
colors "#FF0000"
diffs 11.6039904206376
totalFlows 20.0761820152433
degree 11
props "TARGET"
]
node
[
id 59
name "UBE2I"
label "UBE2I"
colors "#FFF4F4"
diffs -3.31467659690861
totalFlows 5.78121075496278
degree 5
props "TARGET"
]
node
[
id 60
name "PRKAA2"
label "PRKAA2"
colors "#FF9696"
diffs 0.253672828370834
totalFlows 1.99992213230027
degree 2
props "TARGET"
]
node
[
id 61
name "RCAN1"
label "RCAN1"
colors "#FF1C1C"
diffs 2.18362948681966
totalFlows 3.98424009421897
degree 3
props "TARGET"
]
node
[
id 62
name "AGO1"
label "AGO1"
colors "#FF0909"
diffs 3.99885618979316
totalFlows 3.99885618979316
degree 3
props "TARGET"
]
node
[
id 63
name "SF1"
label "SF1"
colors "#FFEDED"
diffs -2.35584186506771
totalFlows 4.45757863384191
degree 4
props "TARGET"
]
node
[
id 64
name "TOE1"
label "TOE1"
colors "#FFFBFB"
diffs -5.06246826217061
totalFlows 2.43353548395679
degree 3
props "TARGET"
]
node
[
id 65
name "LRPPRC"
label "LRPPRC"
colors "#FFA1A1"
diffs 0.0673064510252157
totalFlows 3.99901476564671
degree 3
props "TARGET"
]
node
[
id 66
name "ZXDC"
label "ZXDC"
colors "#FFE5E5"
diffs -1.9032152568314
totalFlows 1.9999286773755
degree 2
props "TARGET"
]
node
[
id 67
name "TXLNG"
label "TXLNG"
colors "#FF2020"
diffs 2.00141209764008
totalFlows 2.00141209764008
degree 3
props "TARGET"
]
node
[
id 68
name "PPID"
label "PPID"
colors "#FF2424"
diffs 1.99996245719873
totalFlows 1.99996245719873
degree 2
props "TARGET"
]
node
[
id 69
name "CBL"
label "CBL"
colors "#FFFEFE"
diffs -7.65900429618025
totalFlows 10.1989959842772
degree 8
props "TARGET"
]
node
[
id 70
name "ZNF512B"
label "ZNF512B"
colors "#FF1313"
diffs 3.06097028336834
totalFlows 7.06006123561446
degree 5
props "TARGET"
]
node
[
id 71
name "CNOT10"
label "CNOT10"
colors "#FF2929"
diffs 1.9998156391069
totalFlows 1.9998156391069
degree 2
props "TARGET"
]
node
[
id 72
name "DDIT3"
label "DDIT3"
colors "#FF0404"
diffs 5.57836691932523
totalFlows 5.99853931232979
degree 4
props "TARGET"
]
node
[
id 73
name "KDM1A"
label "KDM1A"
colors "#FF7373"
diffs 0.970155473176567
totalFlows 7.23431665946737
degree 5
props "TARGET"
]
node
[
id 74
name "ESF1"
label "ESF1"
colors "#FF2929"
diffs 1.99978473804989
totalFlows 1.99978473804989
degree 2
props "TARGET"
]
node
[
id 75
name "HOXC9"
label "HOXC9"
colors "#FF8D8D"
diffs 0.412746482723862
totalFlows 1.97992356680488
degree 2
props "TARGET"
]
node
[
id 76
name "SOX2"
label "SOX2"
colors "#FFB3B3"
diffs -0.0253156533014725
totalFlows 3.99867545442236
degree 3
props "TARGET"
]
node
[
id 77
name "FOS"
label "FOS"
colors "#FF8A8A"
diffs 0.465166695403975
totalFlows 3.70212670657243
degree 4
props "TARGET"
]
node
[
id 78
name "TPT1"
label "TPT1"
colors "#FF0909"
diffs 3.99892328711001
totalFlows 3.99892328711001
degree 3
props "TARGET"
]
node
[
id 79
name "YBX1"
label "YBX1"
colors "#FFF5F5"
diffs -3.58589366145973
totalFlows 12.2711485094485
degree 9
props "TARGET"
]
node
[
id 80
name "HYAL1"
label "HYAL1"
colors "#FF2A2A"
diffs 1.99976344263426
totalFlows 1.99976344263426
degree 2
props "TARGET"
]
node
[
id 81
name "RELA"
label "RELA"
colors "#FF9494"
diffs 0.269985824680893
totalFlows 15.8797127372622
degree 10
props "TARGET"
]
node
[
id 82
name "PARK2"
label "PARK2"
colors "#FF0101"
diffs 8.34882863913422
totalFlows 14.7204165121061
degree 11
props "TARGET"
]
node
[
id 83
name "DDX3X"
label "DDX3X"
colors "#FF1212"
diffs 3.13114608120576
totalFlows 10.969607847708
degree 7
props "TARGET"
]
node
[
id 84
name "ASH2L"
label "ASH2L"
colors "#FF2424"
diffs 1.999952590322
totalFlows 1.999952590322
degree 2
props "TARGET"
]
node
[
id 85
name "NR2E3"
label "NR2E3"
colors "#FF5C5C"
diffs 1.47052576375185
totalFlows 2.22061526000603
degree 3
props "TARGET"
]
node
[
id 86
name "WDR5"
label "WDR5"
colors "#FFE8E8"
diffs -1.9996985437025
totalFlows 1.99990962569335
degree 2
props "TARGET"
]
node
[
id 87
name "PPARGC1B"
label "PPARGC1B"
colors "#FF3636"
diffs 1.99895033590136
totalFlows 1.99895033590136
degree 2
props "TARGET"
]
node
[
id 88
name "BAZ2B"
label "BAZ2B"
colors "#FF2B2B"
diffs 1.99968725652508
totalFlows 1.99968725652508
degree 2
props "TARGET"
]
node
[
id 89
name "HIP1"
label "HIP1"
colors "#FF0909"
diffs 3.99948663214619
totalFlows 3.99948663214619
degree 3
props "TARGET"
]
node
[
id 90
name "ATXN3"
label "ATXN3"