-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgcis-with-role-depth-1
3498 lines (1749 loc) · 123 KB
/
gcis-with-role-depth-1
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
(gci (and CellComponent_cncpt Gene_cncpt) (bottom))
(gci (and CellComponent_cncpt Nucleus_cncpt) (bottom))
(gci (and Gene_cncpt Nucleus_cncpt) (bottom))
(gci (and CellComponent_cncpt DNARegion_cncpt) (bottom))
(gci (and DNARegion_cncpt Gene_cncpt) (bottom))
(gci (and DNARegion_cncpt Nucleus_cncpt) (bottom))
(gci (and CellComponent_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Gene_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Nucleus_cncpt ProteinComplex_cncpt) (bottom))
(gci (and DNARegion_cncpt ProteinComplex_cncpt) (bottom))
(gci (and CellComponent_cncpt Protein_cncpt) (bottom))
(gci (and Nucleus_cncpt Protein_cncpt) (bottom))
(gci (and DNARegion_cncpt Protein_cncpt) (bottom))
(gci (and ProteinComplex_cncpt Protein_cncpt) (bottom))
(gci (and CellComponent_cncpt Localization_cncpt) (bottom))
(gci (and Gene_cncpt Localization_cncpt) (bottom))
(gci (and Localization_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt Localization_cncpt) (bottom))
(gci (and Localization_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Localization_cncpt Protein_cncpt) (bottom))
(gci (and CellComponent_cncpt Enzyme_cncpt) (bottom))
(gci (and Enzyme_cncpt Gene_cncpt) (bottom))
(gci (and Enzyme_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt Enzyme_cncpt) (bottom))
(gci (and Enzyme_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Enzyme_cncpt Protein_cncpt) (bottom))
(gci (and Enzyme_cncpt Localization_cncpt) (bottom))
(gci (and CellComponent_cncpt Eukaryote_cncpt) (bottom))
(gci (and Eukaryote_cncpt Gene_cncpt) (bottom))
(gci (and Eukaryote_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt Eukaryote_cncpt) (bottom))
(gci (and Eukaryote_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Eukaryote_cncpt Protein_cncpt) (bottom))
(gci (and Eukaryote_cncpt Localization_cncpt) (bottom))
(gci (and Enzyme_cncpt Eukaryote_cncpt) (bottom))
(gci (and CellComponent_cncpt Mutation_cncpt) (bottom))
(gci (and Gene_cncpt Mutation_cncpt) (bottom))
(gci (and Mutation_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt Mutation_cncpt) (bottom))
(gci (and Mutation_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Mutation_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt Mutation_cncpt) (bottom))
(gci (and Enzyme_cncpt Mutation_cncpt) (bottom))
(gci (and Eukaryote_cncpt Mutation_cncpt) (bottom))
(gci (and CellComponent_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Gene_cncpt MessengerRNA_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt MessengerRNA_cncpt) (bottom))
(gci (and MessengerRNA_cncpt ProteinComplex_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Enzyme_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Eukaryote_cncpt MessengerRNA_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Mutation_cncpt) (bottom))
(gci (and CellComponent_cncpt Chemical_cncpt) (bottom))
(gci (and Chemical_cncpt Gene_cncpt) (bottom))
(gci (and Chemical_cncpt Nucleus_cncpt) (bottom))
(gci (and Chemical_cncpt DNARegion_cncpt) (bottom))
(gci (and Chemical_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Chemical_cncpt Protein_cncpt) (bottom))
(gci (and Chemical_cncpt Localization_cncpt) (bottom))
(gci (and Chemical_cncpt Enzyme_cncpt) (bottom))
(gci (and Chemical_cncpt Eukaryote_cncpt) (bottom))
(gci (and Chemical_cncpt Mutation_cncpt) (bottom))
(gci (and Chemical_cncpt MessengerRNA_cncpt) (bottom))
(gci (and CellComponent_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Gene_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Nucleus_cncpt SignalingPathway_cncpt) (bottom))
(gci (and DNARegion_cncpt SignalingPathway_cncpt) (bottom))
(gci (and ProteinComplex_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Protein_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Localization_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Enzyme_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Eukaryote_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Mutation_cncpt SignalingPathway_cncpt) (bottom))
(gci (and MessengerRNA_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Chemical_cncpt SignalingPathway_cncpt) (bottom))
(gci (and CellComponent_cncpt Cell_cncpt) (bottom))
(gci (and Cell_cncpt Gene_cncpt) (bottom))
(gci (and Cell_cncpt Nucleus_cncpt) (bottom))
(gci (and Cell_cncpt DNARegion_cncpt) (bottom))
(gci (and Cell_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Cell_cncpt Protein_cncpt) (bottom))
(gci (and Cell_cncpt Localization_cncpt) (bottom))
(gci (and Cell_cncpt Enzyme_cncpt) (bottom))
(gci (and Cell_cncpt Eukaryote_cncpt) (bottom))
(gci (and Cell_cncpt Mutation_cncpt) (bottom))
(gci (and Cell_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Cell_cncpt Chemical_cncpt) (bottom))
(gci (and Cell_cncpt SignalingPathway_cncpt) (bottom))
(gci (and CellComponent_cncpt Ion_cncpt) (bottom))
(gci (and Gene_cncpt Ion_cncpt) (bottom))
(gci (and Ion_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt Ion_cncpt) (bottom))
(gci (and Ion_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Ion_cncpt Protein_cncpt) (bottom))
(gci (and Ion_cncpt Localization_cncpt) (bottom))
(gci (and Enzyme_cncpt Ion_cncpt) (bottom))
(gci (and Eukaryote_cncpt Ion_cncpt) (bottom))
(gci (and Ion_cncpt Mutation_cncpt) (bottom))
(gci (and Ion_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Chemical_cncpt Ion_cncpt) (bottom))
(gci (and Ion_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt Ion_cncpt) (bottom))
(gci (and CellComponent_cncpt Virus_cncpt) (bottom))
(gci (and Gene_cncpt Virus_cncpt) (bottom))
(gci (and Nucleus_cncpt Virus_cncpt) (bottom))
(gci (and DNARegion_cncpt Virus_cncpt) (bottom))
(gci (and ProteinComplex_cncpt Virus_cncpt) (bottom))
(gci (and Protein_cncpt Virus_cncpt) (bottom))
(gci (and Localization_cncpt Virus_cncpt) (bottom))
(gci (and Enzyme_cncpt Virus_cncpt) (bottom))
(gci (and Eukaryote_cncpt Virus_cncpt) (bottom))
(gci (and Mutation_cncpt Virus_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Virus_cncpt) (bottom))
(gci (and Chemical_cncpt Virus_cncpt) (bottom))
(gci (and SignalingPathway_cncpt Virus_cncpt) (bottom))
(gci (and Cell_cncpt Virus_cncpt) (bottom))
(gci (and Ion_cncpt Virus_cncpt) (bottom))
(gci (and CellComponent_cncpt Promoter_cncpt) (bottom))
(gci (and Gene_cncpt Promoter_cncpt) (bottom))
(gci (and Nucleus_cncpt Promoter_cncpt) (bottom))
(gci (and DNARegion_cncpt Promoter_cncpt) (bottom))
(gci (and Promoter_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Promoter_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt Promoter_cncpt) (bottom))
(gci (and Enzyme_cncpt Promoter_cncpt) (bottom))
(gci (and Eukaryote_cncpt Promoter_cncpt) (bottom))
(gci (and Mutation_cncpt Promoter_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Promoter_cncpt) (bottom))
(gci (and Chemical_cncpt Promoter_cncpt) (bottom))
(gci (and Promoter_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt Promoter_cncpt) (bottom))
(gci (and Ion_cncpt Promoter_cncpt) (bottom))
(gci (and Promoter_cncpt Virus_cncpt) (bottom))
(gci (and CellComponent_cncpt DNA_cncpt) (bottom))
(gci (and DNA_cncpt Gene_cncpt) (bottom))
(gci (and DNA_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt DNA_cncpt) (bottom))
(gci (and DNA_cncpt ProteinComplex_cncpt) (bottom))
(gci (and DNA_cncpt Protein_cncpt) (bottom))
(gci (and DNA_cncpt Localization_cncpt) (bottom))
(gci (and DNA_cncpt Enzyme_cncpt) (bottom))
(gci (and DNA_cncpt Eukaryote_cncpt) (bottom))
(gci (and DNA_cncpt Mutation_cncpt) (bottom))
(gci (and DNA_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Chemical_cncpt DNA_cncpt) (bottom))
(gci (and DNA_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt DNA_cncpt) (bottom))
(gci (and DNA_cncpt Ion_cncpt) (bottom))
(gci (and DNA_cncpt Virus_cncpt) (bottom))
(gci (and DNA_cncpt Promoter_cncpt) (bottom))
(gci (and CellComponent_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Gene_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Nucleus_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and DNARegion_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt ProteinComplex_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Enzyme_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Eukaryote_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Mutation_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and MessengerRNA_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Chemical_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and Ion_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt Virus_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt Promoter_cncpt) (bottom))
(gci (and DNA_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and AminoAcid_cncpt CellComponent_cncpt) (bottom))
(gci (and AminoAcid_cncpt Gene_cncpt) (bottom))
(gci (and AminoAcid_cncpt Nucleus_cncpt) (bottom))
(gci (and AminoAcid_cncpt DNARegion_cncpt) (bottom))
(gci (and AminoAcid_cncpt ProteinComplex_cncpt) (bottom))
(gci (and AminoAcid_cncpt Protein_cncpt) (bottom))
(gci (and AminoAcid_cncpt Localization_cncpt) (bottom))
(gci (and AminoAcid_cncpt Enzyme_cncpt) (bottom))
(gci (and AminoAcid_cncpt Eukaryote_cncpt) (bottom))
(gci (and AminoAcid_cncpt Mutation_cncpt) (bottom))
(gci (and AminoAcid_cncpt MessengerRNA_cncpt) (bottom))
(gci (and AminoAcid_cncpt Chemical_cncpt) (bottom))
(gci (and AminoAcid_cncpt SignalingPathway_cncpt) (bottom))
(gci (and AminoAcid_cncpt Cell_cncpt) (bottom))
(gci (and AminoAcid_cncpt Ion_cncpt) (bottom))
(gci (and AminoAcid_cncpt Virus_cncpt) (bottom))
(gci (and AminoAcid_cncpt Promoter_cncpt) (bottom))
(gci (and AminoAcid_cncpt DNA_cncpt) (bottom))
(gci (and AminoAcid_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and CellComponent_cncpt Sequence_cncpt) (bottom))
(gci (and Gene_cncpt Sequence_cncpt) (bottom))
(gci (and Nucleus_cncpt Sequence_cncpt) (bottom))
(gci (and DNARegion_cncpt Sequence_cncpt) (bottom))
(gci (and ProteinComplex_cncpt Sequence_cncpt) (bottom))
(gci (and Protein_cncpt Sequence_cncpt) (bottom))
(gci (and Localization_cncpt Sequence_cncpt) (bottom))
(gci (and Enzyme_cncpt Sequence_cncpt) (bottom))
(gci (and Eukaryote_cncpt Sequence_cncpt) (bottom))
(gci (and Mutation_cncpt Sequence_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Sequence_cncpt) (bottom))
(gci (and Chemical_cncpt Sequence_cncpt) (bottom))
(gci (and Sequence_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt Sequence_cncpt) (bottom))
(gci (and Ion_cncpt Sequence_cncpt) (bottom))
(gci (and Sequence_cncpt Virus_cncpt) (bottom))
(gci (and Promoter_cncpt Sequence_cncpt) (bottom))
(gci (and DNA_cncpt Sequence_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt Sequence_cncpt) (bottom))
(gci (and AminoAcid_cncpt Sequence_cncpt) (bottom))
(gci (and CellComponent_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Gene_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Nucleus_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and DNARegion_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and ProteinComplex_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Protein_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Localization_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Enzyme_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Eukaryote_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Mutation_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and MessengerRNA_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Chemical_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and SignalingPathway_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Cell_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Ion_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and TranscriptionFactor_cncpt Virus_cncpt) (bottom))
(gci (and Promoter_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and DNA_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and AminoAcid_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Sequence_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and CellComponent_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Gene_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Nucleus_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and DNARegion_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and ProteinComplex_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Enzyme_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Eukaryote_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Mutation_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and MessengerRNA_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Chemical_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Ion_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt Virus_cncpt) (bottom))
(gci (and Promoter_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and DNA_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and AminoAcid_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt Sequence_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and CellComponent_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Gene_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Nucleus_cncpt ProteinDomain_cncpt) (bottom))
(gci (and DNARegion_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ProteinComplex_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ProteinDomain_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Enzyme_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Eukaryote_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Mutation_cncpt ProteinDomain_cncpt) (bottom))
(gci (and MessengerRNA_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Chemical_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ProteinDomain_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Ion_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ProteinDomain_cncpt Virus_cncpt) (bottom))
(gci (and Promoter_cncpt ProteinDomain_cncpt) (bottom))
(gci (and DNA_cncpt ProteinDomain_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt ProteinDomain_cncpt) (bottom))
(gci (and AminoAcid_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ProteinDomain_cncpt Sequence_cncpt) (bottom))
(gci (and ProteinDomain_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and ProteinDomain_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and CellComponent_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Gene_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt ProteinComplex_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Protein_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Localization_cncpt) (bottom))
(gci (and Enzyme_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and Eukaryote_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Mutation_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Chemical_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Ion_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Virus_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Promoter_cncpt) (bottom))
(gci (and DNA_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and AminoAcid_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Sequence_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt ProteinDomain_cncpt) (bottom))
(gci (and CellComponent_cncpt Transcription_cncpt) (bottom))
(gci (and Gene_cncpt Transcription_cncpt) (bottom))
(gci (and Nucleus_cncpt Transcription_cncpt) (bottom))
(gci (and DNARegion_cncpt Transcription_cncpt) (bottom))
(gci (and ProteinComplex_cncpt Transcription_cncpt) (bottom))
(gci (and Protein_cncpt Transcription_cncpt) (bottom))
(gci (and Localization_cncpt Transcription_cncpt) (bottom))
(gci (and Enzyme_cncpt Transcription_cncpt) (bottom))
(gci (and Eukaryote_cncpt Transcription_cncpt) (bottom))
(gci (and Mutation_cncpt Transcription_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Transcription_cncpt) (bottom))
(gci (and Chemical_cncpt Transcription_cncpt) (bottom))
(gci (and SignalingPathway_cncpt Transcription_cncpt) (bottom))
(gci (and Cell_cncpt Transcription_cncpt) (bottom))
(gci (and Ion_cncpt Transcription_cncpt) (bottom))
(gci (and Transcription_cncpt Virus_cncpt) (bottom))
(gci (and Promoter_cncpt Transcription_cncpt) (bottom))
(gci (and DNA_cncpt Transcription_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt Transcription_cncpt) (bottom))
(gci (and AminoAcid_cncpt Transcription_cncpt) (bottom))
(gci (and Sequence_cncpt Transcription_cncpt) (bottom))
(gci (and TranscriptionFactor_cncpt Transcription_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt Transcription_cncpt) (bottom))
(gci (and ProteinDomain_cncpt Transcription_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Transcription_cncpt) (bottom))
(gci (and CellComponent_cncpt Tissue_cncpt) (bottom))
(gci (and Gene_cncpt Tissue_cncpt) (bottom))
(gci (and Nucleus_cncpt Tissue_cncpt) (bottom))
(gci (and DNARegion_cncpt Tissue_cncpt) (bottom))
(gci (and ProteinComplex_cncpt Tissue_cncpt) (bottom))
(gci (and Protein_cncpt Tissue_cncpt) (bottom))
(gci (and Localization_cncpt Tissue_cncpt) (bottom))
(gci (and Enzyme_cncpt Tissue_cncpt) (bottom))
(gci (and Eukaryote_cncpt Tissue_cncpt) (bottom))
(gci (and Mutation_cncpt Tissue_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Tissue_cncpt) (bottom))
(gci (and Chemical_cncpt Tissue_cncpt) (bottom))
(gci (and SignalingPathway_cncpt Tissue_cncpt) (bottom))
(gci (and Cell_cncpt Tissue_cncpt) (bottom))
(gci (and Ion_cncpt Tissue_cncpt) (bottom))
(gci (and Tissue_cncpt Virus_cncpt) (bottom))
(gci (and Promoter_cncpt Tissue_cncpt) (bottom))
(gci (and DNA_cncpt Tissue_cncpt) (bottom))
(gci (and PositiveRegulation_cncpt Tissue_cncpt) (bottom))
(gci (and AminoAcid_cncpt Tissue_cncpt) (bottom))
(gci (and Sequence_cncpt Tissue_cncpt) (bottom))
(gci (and Tissue_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and ProteinSubunit_cncpt Tissue_cncpt) (bottom))
(gci (and ProteinDomain_cncpt Tissue_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Tissue_cncpt) (bottom))
(gci (and Tissue_cncpt Transcription_cncpt) (bottom))
(gci (and CellComponent_cncpt Chromosome_cncpt) (bottom))
(gci (and Chromosome_cncpt Gene_cncpt) (bottom))
(gci (and Chromosome_cncpt Nucleus_cncpt) (bottom))
(gci (and Chromosome_cncpt DNARegion_cncpt) (bottom))
(gci (and Chromosome_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Chromosome_cncpt Protein_cncpt) (bottom))
(gci (and Chromosome_cncpt Localization_cncpt) (bottom))
(gci (and Chromosome_cncpt Enzyme_cncpt) (bottom))
(gci (and Chromosome_cncpt Eukaryote_cncpt) (bottom))
(gci (and Chromosome_cncpt Mutation_cncpt) (bottom))
(gci (and Chromosome_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Chemical_cncpt Chromosome_cncpt) (bottom))
(gci (and Chromosome_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt Chromosome_cncpt) (bottom))
(gci (and Chromosome_cncpt Ion_cncpt) (bottom))
(gci (and Chromosome_cncpt Virus_cncpt) (bottom))
(gci (and Chromosome_cncpt Promoter_cncpt) (bottom))
(gci (and Chromosome_cncpt DNA_cncpt) (bottom))
(gci (and Chromosome_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and AminoAcid_cncpt Chromosome_cncpt) (bottom))
(gci (and Chromosome_cncpt Sequence_cncpt) (bottom))
(gci (and Chromosome_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Chromosome_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Chromosome_cncpt ProteinDomain_cncpt) (bottom))
(gci (and Chromosome_cncpt ExperimentalMethod_cncpt) (bottom))
(gci (and Chromosome_cncpt Transcription_cncpt) (bottom))
(gci (and Chromosome_cncpt Tissue_cncpt) (bottom))
(gci (and CellComponent_cncpt Peptide_cncpt) (bottom))
(gci (and Gene_cncpt Peptide_cncpt) (bottom))
(gci (and Nucleus_cncpt Peptide_cncpt) (bottom))
(gci (and DNARegion_cncpt Peptide_cncpt) (bottom))
(gci (and Peptide_cncpt ProteinComplex_cncpt) (bottom))
(gci (and Peptide_cncpt Protein_cncpt) (bottom))
(gci (and Localization_cncpt Peptide_cncpt) (bottom))
(gci (and Enzyme_cncpt Peptide_cncpt) (bottom))
(gci (and Eukaryote_cncpt Peptide_cncpt) (bottom))
(gci (and Mutation_cncpt Peptide_cncpt) (bottom))
(gci (and MessengerRNA_cncpt Peptide_cncpt) (bottom))
(gci (and Chemical_cncpt Peptide_cncpt) (bottom))
(gci (and Peptide_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt Peptide_cncpt) (bottom))
(gci (and Ion_cncpt Peptide_cncpt) (bottom))
(gci (and Peptide_cncpt Virus_cncpt) (bottom))
(gci (and Peptide_cncpt Promoter_cncpt) (bottom))
(gci (and DNA_cncpt Peptide_cncpt) (bottom))
(gci (and Peptide_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and AminoAcid_cncpt Peptide_cncpt) (bottom))
(gci (and Peptide_cncpt Sequence_cncpt) (bottom))
(gci (and Peptide_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and Peptide_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and Peptide_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt Peptide_cncpt) (bottom))
(gci (and Peptide_cncpt Transcription_cncpt) (bottom))
(gci (and Peptide_cncpt Tissue_cncpt) (bottom))
(gci (and Chromosome_cncpt Peptide_cncpt) (bottom))
(gci (and CellComponent_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt Gene_cncpt) (bottom))
(gci (and GeneExpression_cncpt Nucleus_cncpt) (bottom))
(gci (and DNARegion_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt ProteinComplex_cncpt) (bottom))
(gci (and GeneExpression_cncpt Protein_cncpt) (bottom))
(gci (and GeneExpression_cncpt Localization_cncpt) (bottom))
(gci (and Enzyme_cncpt GeneExpression_cncpt) (bottom))
(gci (and Eukaryote_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt Mutation_cncpt) (bottom))
(gci (and GeneExpression_cncpt MessengerRNA_cncpt) (bottom))
(gci (and Chemical_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt SignalingPathway_cncpt) (bottom))
(gci (and Cell_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt Ion_cncpt) (bottom))
(gci (and GeneExpression_cncpt Virus_cncpt) (bottom))
(gci (and GeneExpression_cncpt Promoter_cncpt) (bottom))
(gci (and DNA_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt PositiveRegulation_cncpt) (bottom))
(gci (and AminoAcid_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt Sequence_cncpt) (bottom))
(gci (and GeneExpression_cncpt TranscriptionFactor_cncpt) (bottom))
(gci (and GeneExpression_cncpt ProteinSubunit_cncpt) (bottom))
(gci (and GeneExpression_cncpt ProteinDomain_cncpt) (bottom))
(gci (and ExperimentalMethod_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt Transcription_cncpt) (bottom))
(gci (and GeneExpression_cncpt Tissue_cncpt) (bottom))
(gci (and Chromosome_cncpt GeneExpression_cncpt) (bottom))
(gci (and GeneExpression_cncpt Peptide_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) CellComponent_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Gene_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Nucleus_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) DNARegion_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) ProteinComplex_cncpt) (exists PerformsRegulatoryProcess Gene_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) Protein_cncpt) (exists PerformsRegulatoryProcess Protein_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) Localization_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Enzyme_cncpt) (exists PerformsRegulatoryProcess Protein_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) Eukaryote_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Mutation_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) MessengerRNA_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Chemical_cncpt) (exists PerformsRegulatoryProcess Gene_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) SignalingPathway_cncpt) (exists PerformsRegulatoryProcess Protein_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) Cell_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Ion_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Virus_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Promoter_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) DNA_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) PositiveRegulation_cncpt) (exists PerformsRegulatoryProcess Protein_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) AminoAcid_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Sequence_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) TranscriptionFactor_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) ProteinSubunit_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) ProteinDomain_cncpt) (exists PerformsRegulatoryProcess Protein_cncpt))
(gci (and (exists PerformsRegulatoryProcess (and)) ExperimentalMethod_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Transcription_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Tissue_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Chromosome_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) Peptide_cncpt) (bottom))
(gci (and (exists PerformsRegulatoryProcess (and)) GeneExpression_cncpt) (exists PerformsRegulatoryProcess Protein_cncpt))
(gci (exists PerformsBinding (and)) (exists PerformsBinding Protein_cncpt))
(gci (exists PerformsBindingOfTFToTFBindingSiteOfDNA (and)) (exists PerformsBindingOfTFToTFBindingSiteOfDNA Gene_cncpt))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) CellComponent_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Gene_cncpt) (exists PerformsBindingOfProteinToDNA Gene_cncpt))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Nucleus_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) DNARegion_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) ProteinComplex_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Protein_cncpt) (exists PerformsBindingOfProteinToDNA Gene_cncpt))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Localization_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Enzyme_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Eukaryote_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Mutation_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) MessengerRNA_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Chemical_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) SignalingPathway_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Cell_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Ion_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Virus_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Promoter_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) DNA_cncpt) (exists PerformsBindingOfProteinToDNA Protein_cncpt))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) PositiveRegulation_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) AminoAcid_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Sequence_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) TranscriptionFactor_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) ProteinSubunit_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) ProteinDomain_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) ExperimentalMethod_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Transcription_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Tissue_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Chromosome_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) Peptide_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) GeneExpression_cncpt) (bottom))
(gci (and (exists PerformsBindingOfProteinToDNA (and)) (exists PerformsRegulatoryProcess (and))) (bottom))
(gci (exists PerformsPositiveRegulationOfGeneExpression (and)) (exists PerformsPositiveRegulationOfGeneExpression Gene_cncpt))
(gci (exists PerformsNegativeRegulation (and)) (exists PerformsNegativeRegulation Protein_cncpt))
(gci (exists PerformsResponseProcess (and)) (exists PerformsResponseProcess Protein_cncpt))