forked from trueagi-io/metta-wam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_kb.metta
1624 lines (1624 loc) · 82.9 KB
/
sample_kb.metta
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
(: gene-a (gene a))
(: transcript-t1 (transcript t1))
(: protein-p1 (protein p1))
(: transcribed_to-a-t1 (transcribed_to (gene a) (transcript t1)))
(: translates_to-t1-p1 (translates_to (transcript t1) (protein p1)))
(: transcript-t2 (transcript t2))
(: protein-p2 (protein p2))
(: transcribed_to-a-t2 (transcribed_to (gene a) (transcript t2)))
(: translates_to-t2-p2 (translates_to (transcript t2) (protein p2)))
(: sequence_variant-rs1 (sequence_variant rs1))
(: closest-gene-rs1-a (closest-gene (sequence_variant rs1)) (gene a))
(: sequence_variant-rs2 (sequence_variant rs2))
(: closest-gene-rs2-a (closest-gene (sequence_variant rs2)) (gene a))
(: sequence_variant-rs3 (sequence_variant rs3))
(: closest-gene-rs3-a (closest-gene (sequence_variant rs3)) (gene a))
(: sequence_variant-rs4 (sequence_variant rs4))
(: closest-gene-rs4-a (closest-gene (sequence_variant rs4)) (gene a))
(: sequence_variant-rs5 (sequence_variant rs5))
(: closest-gene-rs5-a (closest-gene (sequence_variant rs5)) (gene a))
(: gene-G (gene G))
(: coexpressed_with-a-G (coexpressed_with (gene a) (gene G)))
(: gene-T (gene T))
(: coexpressed_with-a-T (coexpressed_with (gene a) (gene T)))
(: gene-O (gene O))
(: coexpressed_with-a-O (coexpressed_with (gene a) (gene O)))
(: gene-K (gene K))
(: coexpressed_with-a-K (coexpressed_with (gene a) (gene K)))
(: gene-H (gene H))
(: coexpressed_with-a-H (coexpressed_with (gene a) (gene H)))
(: gene-U (gene U))
(: coexpressed_with-a-U (coexpressed_with (gene a) (gene U)))
(: gene-G (gene G))
(: coexpressed_with-a-G (coexpressed_with (gene a) (gene G)))
(: gene-Z (gene Z))
(: coexpressed_with-a-Z (coexpressed_with (gene a) (gene Z)))
(: gene-S (gene S))
(: coexpressed_with-a-S (coexpressed_with (gene a) (gene S)))
(: gene-W (gene W))
(: coexpressed_with-a-W (coexpressed_with (gene a) (gene W)))
(: gene-b (gene b))
(: transcript-t3 (transcript t3))
(: protein-p3 (protein p3))
(: transcribed_to-b-t3 (transcribed_to (gene b) (transcript t3)))
(: translates_to-t3-p3 (translates_to (transcript t3) (protein p3)))
(: transcript-t4 (transcript t4))
(: protein-p4 (protein p4))
(: transcribed_to-b-t4 (transcribed_to (gene b) (transcript t4)))
(: translates_to-t4-p4 (translates_to (transcript t4) (protein p4)))
(: sequence_variant-rs6 (sequence_variant rs6))
(: closest-gene-rs6-b (closest-gene (sequence_variant rs6)) (gene b))
(: sequence_variant-rs7 (sequence_variant rs7))
(: closest-gene-rs7-b (closest-gene (sequence_variant rs7)) (gene b))
(: sequence_variant-rs8 (sequence_variant rs8))
(: closest-gene-rs8-b (closest-gene (sequence_variant rs8)) (gene b))
(: sequence_variant-rs9 (sequence_variant rs9))
(: closest-gene-rs9-b (closest-gene (sequence_variant rs9)) (gene b))
(: sequence_variant-rs10 (sequence_variant rs10))
(: closest-gene-rs10-b (closest-gene (sequence_variant rs10)) (gene b))
(: gene-K (gene K))
(: coexpressed_with-b-K (coexpressed_with (gene b) (gene K)))
(: gene-K (gene K))
(: coexpressed_with-b-K (coexpressed_with (gene b) (gene K)))
(: gene-X (gene X))
(: coexpressed_with-b-X (coexpressed_with (gene b) (gene X)))
(: gene-U (gene U))
(: coexpressed_with-b-U (coexpressed_with (gene b) (gene U)))
(: gene-D (gene D))
(: coexpressed_with-b-D (coexpressed_with (gene b) (gene D)))
(: gene-H (gene H))
(: coexpressed_with-b-H (coexpressed_with (gene b) (gene H)))
(: gene-X (gene X))
(: coexpressed_with-b-X (coexpressed_with (gene b) (gene X)))
(: gene-C (gene C))
(: coexpressed_with-b-C (coexpressed_with (gene b) (gene C)))
(: gene-V (gene V))
(: coexpressed_with-b-V (coexpressed_with (gene b) (gene V)))
(: gene-U (gene U))
(: coexpressed_with-b-U (coexpressed_with (gene b) (gene U)))
(: gene-c (gene c))
(: transcript-t5 (transcript t5))
(: protein-p5 (protein p5))
(: transcribed_to-c-t5 (transcribed_to (gene c) (transcript t5)))
(: translates_to-t5-p5 (translates_to (transcript t5) (protein p5)))
(: transcript-t6 (transcript t6))
(: protein-p6 (protein p6))
(: transcribed_to-c-t6 (transcribed_to (gene c) (transcript t6)))
(: translates_to-t6-p6 (translates_to (transcript t6) (protein p6)))
(: sequence_variant-rs11 (sequence_variant rs11))
(: closest-gene-rs11-c (closest-gene (sequence_variant rs11)) (gene c))
(: sequence_variant-rs12 (sequence_variant rs12))
(: closest-gene-rs12-c (closest-gene (sequence_variant rs12)) (gene c))
(: sequence_variant-rs13 (sequence_variant rs13))
(: closest-gene-rs13-c (closest-gene (sequence_variant rs13)) (gene c))
(: sequence_variant-rs14 (sequence_variant rs14))
(: closest-gene-rs14-c (closest-gene (sequence_variant rs14)) (gene c))
(: sequence_variant-rs15 (sequence_variant rs15))
(: closest-gene-rs15-c (closest-gene (sequence_variant rs15)) (gene c))
(: gene-B (gene B))
(: coexpressed_with-c-B (coexpressed_with (gene c) (gene B)))
(: gene-X (gene X))
(: coexpressed_with-c-X (coexpressed_with (gene c) (gene X)))
(: gene-L (gene L))
(: coexpressed_with-c-L (coexpressed_with (gene c) (gene L)))
(: gene-F (gene F))
(: coexpressed_with-c-F (coexpressed_with (gene c) (gene F)))
(: gene-B (gene B))
(: coexpressed_with-c-B (coexpressed_with (gene c) (gene B)))
(: gene-U (gene U))
(: coexpressed_with-c-U (coexpressed_with (gene c) (gene U)))
(: gene-A (gene A))
(: coexpressed_with-c-A (coexpressed_with (gene c) (gene A)))
(: gene-L (gene L))
(: coexpressed_with-c-L (coexpressed_with (gene c) (gene L)))
(: gene-Z (gene Z))
(: coexpressed_with-c-Z (coexpressed_with (gene c) (gene Z)))
(: gene-V (gene V))
(: coexpressed_with-c-V (coexpressed_with (gene c) (gene V)))
(: gene-d (gene d))
(: transcript-t7 (transcript t7))
(: protein-p7 (protein p7))
(: transcribed_to-d-t7 (transcribed_to (gene d) (transcript t7)))
(: translates_to-t7-p7 (translates_to (transcript t7) (protein p7)))
(: transcript-t8 (transcript t8))
(: protein-p8 (protein p8))
(: transcribed_to-d-t8 (transcribed_to (gene d) (transcript t8)))
(: translates_to-t8-p8 (translates_to (transcript t8) (protein p8)))
(: sequence_variant-rs16 (sequence_variant rs16))
(: closest-gene-rs16-d (closest-gene (sequence_variant rs16)) (gene d))
(: sequence_variant-rs17 (sequence_variant rs17))
(: closest-gene-rs17-d (closest-gene (sequence_variant rs17)) (gene d))
(: sequence_variant-rs18 (sequence_variant rs18))
(: closest-gene-rs18-d (closest-gene (sequence_variant rs18)) (gene d))
(: sequence_variant-rs19 (sequence_variant rs19))
(: closest-gene-rs19-d (closest-gene (sequence_variant rs19)) (gene d))
(: sequence_variant-rs20 (sequence_variant rs20))
(: closest-gene-rs20-d (closest-gene (sequence_variant rs20)) (gene d))
(: gene-L (gene L))
(: coexpressed_with-d-L (coexpressed_with (gene d) (gene L)))
(: gene-Y (gene Y))
(: coexpressed_with-d-Y (coexpressed_with (gene d) (gene Y)))
(: gene-Q (gene Q))
(: coexpressed_with-d-Q (coexpressed_with (gene d) (gene Q)))
(: gene-J (gene J))
(: coexpressed_with-d-J (coexpressed_with (gene d) (gene J)))
(: gene-P (gene P))
(: coexpressed_with-d-P (coexpressed_with (gene d) (gene P)))
(: gene-O (gene O))
(: coexpressed_with-d-O (coexpressed_with (gene d) (gene O)))
(: gene-O (gene O))
(: coexpressed_with-d-O (coexpressed_with (gene d) (gene O)))
(: gene-S (gene S))
(: coexpressed_with-d-S (coexpressed_with (gene d) (gene S)))
(: gene-L (gene L))
(: coexpressed_with-d-L (coexpressed_with (gene d) (gene L)))
(: gene-W (gene W))
(: coexpressed_with-d-W (coexpressed_with (gene d) (gene W)))
(: gene-e (gene e))
(: transcript-t9 (transcript t9))
(: protein-p9 (protein p9))
(: transcribed_to-e-t9 (transcribed_to (gene e) (transcript t9)))
(: translates_to-t9-p9 (translates_to (transcript t9) (protein p9)))
(: transcript-t10 (transcript t10))
(: protein-p10 (protein p10))
(: transcribed_to-e-t10 (transcribed_to (gene e) (transcript t10)))
(: translates_to-t10-p10 (translates_to (transcript t10) (protein p10)))
(: sequence_variant-rs21 (sequence_variant rs21))
(: closest-gene-rs21-e (closest-gene (sequence_variant rs21)) (gene e))
(: sequence_variant-rs22 (sequence_variant rs22))
(: closest-gene-rs22-e (closest-gene (sequence_variant rs22)) (gene e))
(: sequence_variant-rs23 (sequence_variant rs23))
(: closest-gene-rs23-e (closest-gene (sequence_variant rs23)) (gene e))
(: sequence_variant-rs24 (sequence_variant rs24))
(: closest-gene-rs24-e (closest-gene (sequence_variant rs24)) (gene e))
(: sequence_variant-rs25 (sequence_variant rs25))
(: closest-gene-rs25-e (closest-gene (sequence_variant rs25)) (gene e))
(: gene-T (gene T))
(: coexpressed_with-e-T (coexpressed_with (gene e) (gene T)))
(: gene-Y (gene Y))
(: coexpressed_with-e-Y (coexpressed_with (gene e) (gene Y)))
(: gene-C (gene C))
(: coexpressed_with-e-C (coexpressed_with (gene e) (gene C)))
(: gene-E (gene E))
(: coexpressed_with-e-E (coexpressed_with (gene e) (gene E)))
(: gene-S (gene S))
(: coexpressed_with-e-S (coexpressed_with (gene e) (gene S)))
(: gene-G (gene G))
(: coexpressed_with-e-G (coexpressed_with (gene e) (gene G)))
(: gene-U (gene U))
(: coexpressed_with-e-U (coexpressed_with (gene e) (gene U)))
(: gene-I (gene I))
(: coexpressed_with-e-I (coexpressed_with (gene e) (gene I)))
(: gene-G (gene G))
(: coexpressed_with-e-G (coexpressed_with (gene e) (gene G)))
(: gene-R (gene R))
(: coexpressed_with-e-R (coexpressed_with (gene e) (gene R)))
(: gene-f (gene f))
(: transcript-t11 (transcript t11))
(: protein-p11 (protein p11))
(: transcribed_to-f-t11 (transcribed_to (gene f) (transcript t11)))
(: translates_to-t11-p11 (translates_to (transcript t11) (protein p11)))
(: transcript-t12 (transcript t12))
(: protein-p12 (protein p12))
(: transcribed_to-f-t12 (transcribed_to (gene f) (transcript t12)))
(: translates_to-t12-p12 (translates_to (transcript t12) (protein p12)))
(: sequence_variant-rs26 (sequence_variant rs26))
(: closest-gene-rs26-f (closest-gene (sequence_variant rs26)) (gene f))
(: sequence_variant-rs27 (sequence_variant rs27))
(: closest-gene-rs27-f (closest-gene (sequence_variant rs27)) (gene f))
(: sequence_variant-rs28 (sequence_variant rs28))
(: closest-gene-rs28-f (closest-gene (sequence_variant rs28)) (gene f))
(: sequence_variant-rs29 (sequence_variant rs29))
(: closest-gene-rs29-f (closest-gene (sequence_variant rs29)) (gene f))
(: sequence_variant-rs30 (sequence_variant rs30))
(: closest-gene-rs30-f (closest-gene (sequence_variant rs30)) (gene f))
(: gene-D (gene D))
(: coexpressed_with-f-D (coexpressed_with (gene f) (gene D)))
(: gene-Y (gene Y))
(: coexpressed_with-f-Y (coexpressed_with (gene f) (gene Y)))
(: gene-N (gene N))
(: coexpressed_with-f-N (coexpressed_with (gene f) (gene N)))
(: gene-R (gene R))
(: coexpressed_with-f-R (coexpressed_with (gene f) (gene R)))
(: gene-Z (gene Z))
(: coexpressed_with-f-Z (coexpressed_with (gene f) (gene Z)))
(: gene-I (gene I))
(: coexpressed_with-f-I (coexpressed_with (gene f) (gene I)))
(: gene-Z (gene Z))
(: coexpressed_with-f-Z (coexpressed_with (gene f) (gene Z)))
(: gene-U (gene U))
(: coexpressed_with-f-U (coexpressed_with (gene f) (gene U)))
(: gene-B (gene B))
(: coexpressed_with-f-B (coexpressed_with (gene f) (gene B)))
(: gene-T (gene T))
(: coexpressed_with-f-T (coexpressed_with (gene f) (gene T)))
(: gene-g (gene g))
(: transcript-t13 (transcript t13))
(: protein-p13 (protein p13))
(: transcribed_to-g-t13 (transcribed_to (gene g) (transcript t13)))
(: translates_to-t13-p13 (translates_to (transcript t13) (protein p13)))
(: transcript-t14 (transcript t14))
(: protein-p14 (protein p14))
(: transcribed_to-g-t14 (transcribed_to (gene g) (transcript t14)))
(: translates_to-t14-p14 (translates_to (transcript t14) (protein p14)))
(: sequence_variant-rs31 (sequence_variant rs31))
(: closest-gene-rs31-g (closest-gene (sequence_variant rs31)) (gene g))
(: sequence_variant-rs32 (sequence_variant rs32))
(: closest-gene-rs32-g (closest-gene (sequence_variant rs32)) (gene g))
(: sequence_variant-rs33 (sequence_variant rs33))
(: closest-gene-rs33-g (closest-gene (sequence_variant rs33)) (gene g))
(: sequence_variant-rs34 (sequence_variant rs34))
(: closest-gene-rs34-g (closest-gene (sequence_variant rs34)) (gene g))
(: sequence_variant-rs35 (sequence_variant rs35))
(: closest-gene-rs35-g (closest-gene (sequence_variant rs35)) (gene g))
(: gene-O (gene O))
(: coexpressed_with-g-O (coexpressed_with (gene g) (gene O)))
(: gene-G (gene G))
(: coexpressed_with-g-G (coexpressed_with (gene g) (gene G)))
(: gene-L (gene L))
(: coexpressed_with-g-L (coexpressed_with (gene g) (gene L)))
(: gene-H (gene H))
(: coexpressed_with-g-H (coexpressed_with (gene g) (gene H)))
(: gene-O (gene O))
(: coexpressed_with-g-O (coexpressed_with (gene g) (gene O)))
(: gene-C (gene C))
(: coexpressed_with-g-C (coexpressed_with (gene g) (gene C)))
(: gene-N (gene N))
(: coexpressed_with-g-N (coexpressed_with (gene g) (gene N)))
(: gene-Q (gene Q))
(: coexpressed_with-g-Q (coexpressed_with (gene g) (gene Q)))
(: gene-D (gene D))
(: coexpressed_with-g-D (coexpressed_with (gene g) (gene D)))
(: gene-R (gene R))
(: coexpressed_with-g-R (coexpressed_with (gene g) (gene R)))
(: gene-h (gene h))
(: transcript-t15 (transcript t15))
(: protein-p15 (protein p15))
(: transcribed_to-h-t15 (transcribed_to (gene h) (transcript t15)))
(: translates_to-t15-p15 (translates_to (transcript t15) (protein p15)))
(: transcript-t16 (transcript t16))
(: protein-p16 (protein p16))
(: transcribed_to-h-t16 (transcribed_to (gene h) (transcript t16)))
(: translates_to-t16-p16 (translates_to (transcript t16) (protein p16)))
(: sequence_variant-rs36 (sequence_variant rs36))
(: closest-gene-rs36-h (closest-gene (sequence_variant rs36)) (gene h))
(: sequence_variant-rs37 (sequence_variant rs37))
(: closest-gene-rs37-h (closest-gene (sequence_variant rs37)) (gene h))
(: sequence_variant-rs38 (sequence_variant rs38))
(: closest-gene-rs38-h (closest-gene (sequence_variant rs38)) (gene h))
(: sequence_variant-rs39 (sequence_variant rs39))
(: closest-gene-rs39-h (closest-gene (sequence_variant rs39)) (gene h))
(: sequence_variant-rs40 (sequence_variant rs40))
(: closest-gene-rs40-h (closest-gene (sequence_variant rs40)) (gene h))
(: gene-H (gene H))
(: coexpressed_with-h-H (coexpressed_with (gene h) (gene H)))
(: gene-D (gene D))
(: coexpressed_with-h-D (coexpressed_with (gene h) (gene D)))
(: gene-B (gene B))
(: coexpressed_with-h-B (coexpressed_with (gene h) (gene B)))
(: gene-F (gene F))
(: coexpressed_with-h-F (coexpressed_with (gene h) (gene F)))
(: gene-V (gene V))
(: coexpressed_with-h-V (coexpressed_with (gene h) (gene V)))
(: gene-J (gene J))
(: coexpressed_with-h-J (coexpressed_with (gene h) (gene J)))
(: gene-D (gene D))
(: coexpressed_with-h-D (coexpressed_with (gene h) (gene D)))
(: gene-V (gene V))
(: coexpressed_with-h-V (coexpressed_with (gene h) (gene V)))
(: gene-R (gene R))
(: coexpressed_with-h-R (coexpressed_with (gene h) (gene R)))
(: gene-Z (gene Z))
(: coexpressed_with-h-Z (coexpressed_with (gene h) (gene Z)))
(: tad-chr16-1000-2000 (tad chr16-1000-2000))
(: in-tad-region-chr16-1000-2000-a (in-tad-region (tad chr16-1000-2000) (gene a)))
(: in-tad-region-chr16-1000-2000-b (in-tad-region (tad chr16-1000-2000) (gene b)))
(: in-tad-region-chr16-1000-2000-c (in-tad-region (tad chr16-1000-2000) (gene c)))
(: in-tad-region-chr16-1000-2000-d (in-tad-region (tad chr16-1000-2000) (gene d)))
(: eqtl-rs15-d (eqtl (sequence_variant rs15) (gene d)))
(: tad-chr16-2000-3000 (tad chr16-2000-3000))
(: in-tad-region-chr16-2000-3000-e (in-tad-region (tad chr16-2000-3000) (gene e)))
(: in-tad-region-chr16-2000-3000-f (in-tad-region (tad chr16-2000-3000) (gene f)))
(: in-tad-region-chr16-2000-3000-g (in-tad-region (tad chr16-2000-3000) (gene g)))
(: in-tad-region-chr16-2000-3000-h (in-tad-region (tad chr16-2000-3000) (gene h)))
(: eqtl-rs25-f (eqtl (sequence_variant rs25) (gene f)))
(: ontology_term-GO:0000001 (ontology_term GO:0000001))
(: go_gene_product-GO:0000001-p3 (go_gene_product (ontology_term GO:0000001) (protein p3)))
(: transcript-tD (transcript tD))
(: protein-pD (protein pD))
(: transcribed_to-D-tD (transcribed_to (gene D) (transcript tD)))
(: translates_to-tD-pD (translates_to (transcript tD (protein pD))))
(: gene-D (gene D))
(: go_gene_product-GO:0000001-pD (go_gene_product (ontology_term GO:0000001) (protein pD)))
(: transcript-tN (transcript tN))
(: protein-pN (protein pN))
(: transcribed_to-N-tN (transcribed_to (gene N) (transcript tN)))
(: translates_to-tN-pN (translates_to (transcript tN (protein pN))))
(: gene-N (gene N))
(: go_gene_product-GO:0000001-pN (go_gene_product (ontology_term GO:0000001) (protein pN)))
(: transcript-tP (transcript tP))
(: protein-pP (protein pP))
(: transcribed_to-P-tP (transcribed_to (gene P) (transcript tP)))
(: translates_to-tP-pP (translates_to (transcript tP (protein pP))))
(: gene-P (gene P))
(: go_gene_product-GO:0000001-pP (go_gene_product (ontology_term GO:0000001) (protein pP)))
(: transcript-tO (transcript tO))
(: protein-pO (protein pO))
(: transcribed_to-O-tO (transcribed_to (gene O) (transcript tO)))
(: translates_to-tO-pO (translates_to (transcript tO (protein pO))))
(: gene-O (gene O))
(: go_gene_product-GO:0000001-pO (go_gene_product (ontology_term GO:0000001) (protein pO)))
(: ontology_term-GO:0000002 (ontology_term GO:0000002))
(: go_gene_product-GO:0000002-p15 (go_gene_product (ontology_term GO:0000002) (protein p15)))
(: transcript-tW (transcript tW))
(: protein-pW (protein pW))
(: transcribed_to-W-tW (transcribed_to (gene W) (transcript tW)))
(: translates_to-tW-pW (translates_to (transcript tW (protein pW))))
(: gene-W (gene W))
(: go_gene_product-GO:0000002-pW (go_gene_product (ontology_term GO:0000002) (protein pW)))
(: transcript-tY (transcript tY))
(: protein-pY (protein pY))
(: transcribed_to-Y-tY (transcribed_to (gene Y) (transcript tY)))
(: translates_to-tY-pY (translates_to (transcript tY (protein pY))))
(: gene-Y (gene Y))
(: go_gene_product-GO:0000002-pY (go_gene_product (ontology_term GO:0000002) (protein pY)))
(: transcript-tH (transcript tH))
(: protein-pH (protein pH))
(: transcribed_to-H-tH (transcribed_to (gene H) (transcript tH)))
(: translates_to-tH-pH (translates_to (transcript tH (protein pH))))
(: gene-H (gene H))
(: go_gene_product-GO:0000002-pH (go_gene_product (ontology_term GO:0000002) (protein pH)))
(: transcript-tU (transcript tU))
(: protein-pU (protein pU))
(: transcribed_to-U-tU (transcribed_to (gene U) (transcript tU)))
(: translates_to-tU-pU (translates_to (transcript tU (protein pU))))
(: gene-U (gene U))
(: go_gene_product-GO:0000002-pU (go_gene_product (ontology_term GO:0000002) (protein pU)))
(: ontology_term-GO:0000003 (ontology_term GO:0000003))
(: go_gene_product-GO:0000003-p15 (go_gene_product (ontology_term GO:0000003) (protein p15)))
(: transcript-tR (transcript tR))
(: protein-pR (protein pR))
(: transcribed_to-R-tR (transcribed_to (gene R) (transcript tR)))
(: translates_to-tR-pR (translates_to (transcript tR (protein pR))))
(: gene-R (gene R))
(: go_gene_product-GO:0000003-pR (go_gene_product (ontology_term GO:0000003) (protein pR)))
(: transcript-tO (transcript tO))
(: protein-pO (protein pO))
(: transcribed_to-O-tO (transcribed_to (gene O) (transcript tO)))
(: translates_to-tO-pO (translates_to (transcript tO (protein pO))))
(: gene-O (gene O))
(: go_gene_product-GO:0000003-pO (go_gene_product (ontology_term GO:0000003) (protein pO)))
(: transcript-tU (transcript tU))
(: protein-pU (protein pU))
(: transcribed_to-U-tU (transcribed_to (gene U) (transcript tU)))
(: translates_to-tU-pU (translates_to (transcript tU (protein pU))))
(: gene-U (gene U))
(: go_gene_product-GO:0000003-pU (go_gene_product (ontology_term GO:0000003) (protein pU)))
(: transcript-tX (transcript tX))
(: protein-pX (protein pX))
(: transcribed_to-X-tX (transcribed_to (gene X) (transcript tX)))
(: translates_to-tX-pX (translates_to (transcript tX (protein pX))))
(: gene-X (gene X))
(: go_gene_product-GO:0000003-pX (go_gene_product (ontology_term GO:0000003) (protein pX)))
(: ontology_term-GO:0000004 (ontology_term GO:0000004))
(: go_gene_product-GO:0000004-p3 (go_gene_product (ontology_term GO:0000004) (protein p3)))
(: transcript-tM (transcript tM))
(: protein-pM (protein pM))
(: transcribed_to-M-tM (transcribed_to (gene M) (transcript tM)))
(: translates_to-tM-pM (translates_to (transcript tM (protein pM))))
(: gene-M (gene M))
(: go_gene_product-GO:0000004-pM (go_gene_product (ontology_term GO:0000004) (protein pM)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000004-pI (go_gene_product (ontology_term GO:0000004) (protein pI)))
(: transcript-tO (transcript tO))
(: protein-pO (protein pO))
(: transcribed_to-O-tO (transcribed_to (gene O) (transcript tO)))
(: translates_to-tO-pO (translates_to (transcript tO (protein pO))))
(: gene-O (gene O))
(: go_gene_product-GO:0000004-pO (go_gene_product (ontology_term GO:0000004) (protein pO)))
(: transcript-tM (transcript tM))
(: protein-pM (protein pM))
(: transcribed_to-M-tM (transcribed_to (gene M) (transcript tM)))
(: translates_to-tM-pM (translates_to (transcript tM (protein pM))))
(: gene-M (gene M))
(: go_gene_product-GO:0000004-pM (go_gene_product (ontology_term GO:0000004) (protein pM)))
(: ontology_term-GO:0000005 (ontology_term GO:0000005))
(: go_gene_product-GO:0000005-p1 (go_gene_product (ontology_term GO:0000005) (protein p1)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000005-pG (go_gene_product (ontology_term GO:0000005) (protein pG)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000005-pI (go_gene_product (ontology_term GO:0000005) (protein pI)))
(: transcript-tX (transcript tX))
(: protein-pX (protein pX))
(: transcribed_to-X-tX (transcribed_to (gene X) (transcript tX)))
(: translates_to-tX-pX (translates_to (transcript tX (protein pX))))
(: gene-X (gene X))
(: go_gene_product-GO:0000005-pX (go_gene_product (ontology_term GO:0000005) (protein pX)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000005-pA (go_gene_product (ontology_term GO:0000005) (protein pA)))
(: ontology_term-GO:0000006 (ontology_term GO:0000006))
(: go_gene_product-GO:0000006-p7 (go_gene_product (ontology_term GO:0000006) (protein p7)))
(: transcript-tX (transcript tX))
(: protein-pX (protein pX))
(: transcribed_to-X-tX (transcribed_to (gene X) (transcript tX)))
(: translates_to-tX-pX (translates_to (transcript tX (protein pX))))
(: gene-X (gene X))
(: go_gene_product-GO:0000006-pX (go_gene_product (ontology_term GO:0000006) (protein pX)))
(: transcript-tK (transcript tK))
(: protein-pK (protein pK))
(: transcribed_to-K-tK (transcribed_to (gene K) (transcript tK)))
(: translates_to-tK-pK (translates_to (transcript tK (protein pK))))
(: gene-K (gene K))
(: go_gene_product-GO:0000006-pK (go_gene_product (ontology_term GO:0000006) (protein pK)))
(: transcript-tS (transcript tS))
(: protein-pS (protein pS))
(: transcribed_to-S-tS (transcribed_to (gene S) (transcript tS)))
(: translates_to-tS-pS (translates_to (transcript tS (protein pS))))
(: gene-S (gene S))
(: go_gene_product-GO:0000006-pS (go_gene_product (ontology_term GO:0000006) (protein pS)))
(: transcript-tQ (transcript tQ))
(: protein-pQ (protein pQ))
(: transcribed_to-Q-tQ (transcribed_to (gene Q) (transcript tQ)))
(: translates_to-tQ-pQ (translates_to (transcript tQ (protein pQ))))
(: gene-Q (gene Q))
(: go_gene_product-GO:0000006-pQ (go_gene_product (ontology_term GO:0000006) (protein pQ)))
(: ontology_term-GO:0000007 (ontology_term GO:0000007))
(: go_gene_product-GO:0000007-p15 (go_gene_product (ontology_term GO:0000007) (protein p15)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000007-pC (go_gene_product (ontology_term GO:0000007) (protein pC)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000007-pA (go_gene_product (ontology_term GO:0000007) (protein pA)))
(: transcript-tE (transcript tE))
(: protein-pE (protein pE))
(: transcribed_to-E-tE (transcribed_to (gene E) (transcript tE)))
(: translates_to-tE-pE (translates_to (transcript tE (protein pE))))
(: gene-E (gene E))
(: go_gene_product-GO:0000007-pE (go_gene_product (ontology_term GO:0000007) (protein pE)))
(: transcript-tJ (transcript tJ))
(: protein-pJ (protein pJ))
(: transcribed_to-J-tJ (transcribed_to (gene J) (transcript tJ)))
(: translates_to-tJ-pJ (translates_to (transcript tJ (protein pJ))))
(: gene-J (gene J))
(: go_gene_product-GO:0000007-pJ (go_gene_product (ontology_term GO:0000007) (protein pJ)))
(: ontology_term-GO:0000008 (ontology_term GO:0000008))
(: go_gene_product-GO:0000008-p13 (go_gene_product (ontology_term GO:0000008) (protein p13)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000008-pI (go_gene_product (ontology_term GO:0000008) (protein pI)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000008-pG (go_gene_product (ontology_term GO:0000008) (protein pG)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000008-pI (go_gene_product (ontology_term GO:0000008) (protein pI)))
(: transcript-tH (transcript tH))
(: protein-pH (protein pH))
(: transcribed_to-H-tH (transcribed_to (gene H) (transcript tH)))
(: translates_to-tH-pH (translates_to (transcript tH (protein pH))))
(: gene-H (gene H))
(: go_gene_product-GO:0000008-pH (go_gene_product (ontology_term GO:0000008) (protein pH)))
(: ontology_term-GO:0000009 (ontology_term GO:0000009))
(: go_gene_product-GO:0000009-p7 (go_gene_product (ontology_term GO:0000009) (protein p7)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000009-pA (go_gene_product (ontology_term GO:0000009) (protein pA)))
(: transcript-tP (transcript tP))
(: protein-pP (protein pP))
(: transcribed_to-P-tP (transcribed_to (gene P) (transcript tP)))
(: translates_to-tP-pP (translates_to (transcript tP (protein pP))))
(: gene-P (gene P))
(: go_gene_product-GO:0000009-pP (go_gene_product (ontology_term GO:0000009) (protein pP)))
(: transcript-tW (transcript tW))
(: protein-pW (protein pW))
(: transcribed_to-W-tW (transcribed_to (gene W) (transcript tW)))
(: translates_to-tW-pW (translates_to (transcript tW (protein pW))))
(: gene-W (gene W))
(: go_gene_product-GO:0000009-pW (go_gene_product (ontology_term GO:0000009) (protein pW)))
(: transcript-tW (transcript tW))
(: protein-pW (protein pW))
(: transcribed_to-W-tW (transcribed_to (gene W) (transcript tW)))
(: translates_to-tW-pW (translates_to (transcript tW (protein pW))))
(: gene-W (gene W))
(: go_gene_product-GO:0000009-pW (go_gene_product (ontology_term GO:0000009) (protein pW)))
(: ontology_term-GO:0000010 (ontology_term GO:0000010))
(: go_gene_product-GO:0000010-p11 (go_gene_product (ontology_term GO:0000010) (protein p11)))
(: transcript-tE (transcript tE))
(: protein-pE (protein pE))
(: transcribed_to-E-tE (transcribed_to (gene E) (transcript tE)))
(: translates_to-tE-pE (translates_to (transcript tE (protein pE))))
(: gene-E (gene E))
(: go_gene_product-GO:0000010-pE (go_gene_product (ontology_term GO:0000010) (protein pE)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000010-pC (go_gene_product (ontology_term GO:0000010) (protein pC)))
(: transcript-tL (transcript tL))
(: protein-pL (protein pL))
(: transcribed_to-L-tL (transcribed_to (gene L) (transcript tL)))
(: translates_to-tL-pL (translates_to (transcript tL (protein pL))))
(: gene-L (gene L))
(: go_gene_product-GO:0000010-pL (go_gene_product (ontology_term GO:0000010) (protein pL)))
(: transcript-tH (transcript tH))
(: protein-pH (protein pH))
(: transcribed_to-H-tH (transcribed_to (gene H) (transcript tH)))
(: translates_to-tH-pH (translates_to (transcript tH (protein pH))))
(: gene-H (gene H))
(: go_gene_product-GO:0000010-pH (go_gene_product (ontology_term GO:0000010) (protein pH)))
(: ontology_term-GO:0000011 (ontology_term GO:0000011))
(: go_gene_product-GO:0000011-p11 (go_gene_product (ontology_term GO:0000011) (protein p11)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000011-pC (go_gene_product (ontology_term GO:0000011) (protein pC)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000011-pA (go_gene_product (ontology_term GO:0000011) (protein pA)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000011-pC (go_gene_product (ontology_term GO:0000011) (protein pC)))
(: transcript-tE (transcript tE))
(: protein-pE (protein pE))
(: transcribed_to-E-tE (transcribed_to (gene E) (transcript tE)))
(: translates_to-tE-pE (translates_to (transcript tE (protein pE))))
(: gene-E (gene E))
(: go_gene_product-GO:0000011-pE (go_gene_product (ontology_term GO:0000011) (protein pE)))
(: ontology_term-GO:0000012 (ontology_term GO:0000012))
(: go_gene_product-GO:0000012-p13 (go_gene_product (ontology_term GO:0000012) (protein p13)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000012-pC (go_gene_product (ontology_term GO:0000012) (protein pC)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000012-pA (go_gene_product (ontology_term GO:0000012) (protein pA)))
(: transcript-tE (transcript tE))
(: protein-pE (protein pE))
(: transcribed_to-E-tE (transcribed_to (gene E) (transcript tE)))
(: translates_to-tE-pE (translates_to (transcript tE (protein pE))))
(: gene-E (gene E))
(: go_gene_product-GO:0000012-pE (go_gene_product (ontology_term GO:0000012) (protein pE)))
(: transcript-tZ (transcript tZ))
(: protein-pZ (protein pZ))
(: transcribed_to-Z-tZ (transcribed_to (gene Z) (transcript tZ)))
(: translates_to-tZ-pZ (translates_to (transcript tZ (protein pZ))))
(: gene-Z (gene Z))
(: go_gene_product-GO:0000012-pZ (go_gene_product (ontology_term GO:0000012) (protein pZ)))
(: ontology_term-GO:0000013 (ontology_term GO:0000013))
(: go_gene_product-GO:0000013-p13 (go_gene_product (ontology_term GO:0000013) (protein p13)))
(: transcript-tN (transcript tN))
(: protein-pN (protein pN))
(: transcribed_to-N-tN (transcribed_to (gene N) (transcript tN)))
(: translates_to-tN-pN (translates_to (transcript tN (protein pN))))
(: gene-N (gene N))
(: go_gene_product-GO:0000013-pN (go_gene_product (ontology_term GO:0000013) (protein pN)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000013-pG (go_gene_product (ontology_term GO:0000013) (protein pG)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000013-pI (go_gene_product (ontology_term GO:0000013) (protein pI)))
(: transcript-tO (transcript tO))
(: protein-pO (protein pO))
(: transcribed_to-O-tO (transcribed_to (gene O) (transcript tO)))
(: translates_to-tO-pO (translates_to (transcript tO (protein pO))))
(: gene-O (gene O))
(: go_gene_product-GO:0000013-pO (go_gene_product (ontology_term GO:0000013) (protein pO)))
(: ontology_term-GO:0000014 (ontology_term GO:0000014))
(: go_gene_product-GO:0000014-p13 (go_gene_product (ontology_term GO:0000014) (protein p13)))
(: transcript-tJ (transcript tJ))
(: protein-pJ (protein pJ))
(: transcribed_to-J-tJ (transcribed_to (gene J) (transcript tJ)))
(: translates_to-tJ-pJ (translates_to (transcript tJ (protein pJ))))
(: gene-J (gene J))
(: go_gene_product-GO:0000014-pJ (go_gene_product (ontology_term GO:0000014) (protein pJ)))
(: transcript-tM (transcript tM))
(: protein-pM (protein pM))
(: transcribed_to-M-tM (transcribed_to (gene M) (transcript tM)))
(: translates_to-tM-pM (translates_to (transcript tM (protein pM))))
(: gene-M (gene M))
(: go_gene_product-GO:0000014-pM (go_gene_product (ontology_term GO:0000014) (protein pM)))
(: transcript-tS (transcript tS))
(: protein-pS (protein pS))
(: transcribed_to-S-tS (transcribed_to (gene S) (transcript tS)))
(: translates_to-tS-pS (translates_to (transcript tS (protein pS))))
(: gene-S (gene S))
(: go_gene_product-GO:0000014-pS (go_gene_product (ontology_term GO:0000014) (protein pS)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000014-pG (go_gene_product (ontology_term GO:0000014) (protein pG)))
(: ontology_term-GO:0000015 (ontology_term GO:0000015))
(: go_gene_product-GO:0000015-p1 (go_gene_product (ontology_term GO:0000015) (protein p1)))
(: transcript-tD (transcript tD))
(: protein-pD (protein pD))
(: transcribed_to-D-tD (transcribed_to (gene D) (transcript tD)))
(: translates_to-tD-pD (translates_to (transcript tD (protein pD))))
(: gene-D (gene D))
(: go_gene_product-GO:0000015-pD (go_gene_product (ontology_term GO:0000015) (protein pD)))
(: transcript-tE (transcript tE))
(: protein-pE (protein pE))
(: transcribed_to-E-tE (transcribed_to (gene E) (transcript tE)))
(: translates_to-tE-pE (translates_to (transcript tE (protein pE))))
(: gene-E (gene E))
(: go_gene_product-GO:0000015-pE (go_gene_product (ontology_term GO:0000015) (protein pE)))
(: transcript-tW (transcript tW))
(: protein-pW (protein pW))
(: transcribed_to-W-tW (transcribed_to (gene W) (transcript tW)))
(: translates_to-tW-pW (translates_to (transcript tW (protein pW))))
(: gene-W (gene W))
(: go_gene_product-GO:0000015-pW (go_gene_product (ontology_term GO:0000015) (protein pW)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000015-pG (go_gene_product (ontology_term GO:0000015) (protein pG)))
(: ontology_term-GO:0000016 (ontology_term GO:0000016))
(: go_gene_product-GO:0000016-p9 (go_gene_product (ontology_term GO:0000016) (protein p9)))
(: transcript-tK (transcript tK))
(: protein-pK (protein pK))
(: transcribed_to-K-tK (transcribed_to (gene K) (transcript tK)))
(: translates_to-tK-pK (translates_to (transcript tK (protein pK))))
(: gene-K (gene K))
(: go_gene_product-GO:0000016-pK (go_gene_product (ontology_term GO:0000016) (protein pK)))
(: transcript-tD (transcript tD))
(: protein-pD (protein pD))
(: transcribed_to-D-tD (transcribed_to (gene D) (transcript tD)))
(: translates_to-tD-pD (translates_to (transcript tD (protein pD))))
(: gene-D (gene D))
(: go_gene_product-GO:0000016-pD (go_gene_product (ontology_term GO:0000016) (protein pD)))
(: transcript-tM (transcript tM))
(: protein-pM (protein pM))
(: transcribed_to-M-tM (transcribed_to (gene M) (transcript tM)))
(: translates_to-tM-pM (translates_to (transcript tM (protein pM))))
(: gene-M (gene M))
(: go_gene_product-GO:0000016-pM (go_gene_product (ontology_term GO:0000016) (protein pM)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000016-pG (go_gene_product (ontology_term GO:0000016) (protein pG)))
(: ontology_term-GO:0000017 (ontology_term GO:0000017))
(: go_gene_product-GO:0000017-p5 (go_gene_product (ontology_term GO:0000017) (protein p5)))
(: transcript-tV (transcript tV))
(: protein-pV (protein pV))
(: transcribed_to-V-tV (transcribed_to (gene V) (transcript tV)))
(: translates_to-tV-pV (translates_to (transcript tV (protein pV))))
(: gene-V (gene V))
(: go_gene_product-GO:0000017-pV (go_gene_product (ontology_term GO:0000017) (protein pV)))
(: transcript-tB (transcript tB))
(: protein-pB (protein pB))
(: transcribed_to-B-tB (transcribed_to (gene B) (transcript tB)))
(: translates_to-tB-pB (translates_to (transcript tB (protein pB))))
(: gene-B (gene B))
(: go_gene_product-GO:0000017-pB (go_gene_product (ontology_term GO:0000017) (protein pB)))
(: transcript-tJ (transcript tJ))
(: protein-pJ (protein pJ))
(: transcribed_to-J-tJ (transcribed_to (gene J) (transcript tJ)))
(: translates_to-tJ-pJ (translates_to (transcript tJ (protein pJ))))
(: gene-J (gene J))
(: go_gene_product-GO:0000017-pJ (go_gene_product (ontology_term GO:0000017) (protein pJ)))
(: transcript-tM (transcript tM))
(: protein-pM (protein pM))
(: transcribed_to-M-tM (transcribed_to (gene M) (transcript tM)))
(: translates_to-tM-pM (translates_to (transcript tM (protein pM))))
(: gene-M (gene M))
(: go_gene_product-GO:0000017-pM (go_gene_product (ontology_term GO:0000017) (protein pM)))
(: ontology_term-GO:0000018 (ontology_term GO:0000018))
(: go_gene_product-GO:0000018-p11 (go_gene_product (ontology_term GO:0000018) (protein p11)))
(: transcript-tU (transcript tU))
(: protein-pU (protein pU))
(: transcribed_to-U-tU (transcribed_to (gene U) (transcript tU)))
(: translates_to-tU-pU (translates_to (transcript tU (protein pU))))
(: gene-U (gene U))
(: go_gene_product-GO:0000018-pU (go_gene_product (ontology_term GO:0000018) (protein pU)))
(: transcript-tF (transcript tF))
(: protein-pF (protein pF))
(: transcribed_to-F-tF (transcribed_to (gene F) (transcript tF)))
(: translates_to-tF-pF (translates_to (transcript tF (protein pF))))
(: gene-F (gene F))
(: go_gene_product-GO:0000018-pF (go_gene_product (ontology_term GO:0000018) (protein pF)))
(: transcript-tL (transcript tL))
(: protein-pL (protein pL))
(: transcribed_to-L-tL (transcribed_to (gene L) (transcript tL)))
(: translates_to-tL-pL (translates_to (transcript tL (protein pL))))
(: gene-L (gene L))
(: go_gene_product-GO:0000018-pL (go_gene_product (ontology_term GO:0000018) (protein pL)))
(: transcript-tL (transcript tL))
(: protein-pL (protein pL))
(: transcribed_to-L-tL (transcribed_to (gene L) (transcript tL)))
(: translates_to-tL-pL (translates_to (transcript tL (protein pL))))
(: gene-L (gene L))
(: go_gene_product-GO:0000018-pL (go_gene_product (ontology_term GO:0000018) (protein pL)))
(: ontology_term-GO:0000019 (ontology_term GO:0000019))
(: go_gene_product-GO:0000019-p7 (go_gene_product (ontology_term GO:0000019) (protein p7)))
(: transcript-tK (transcript tK))
(: protein-pK (protein pK))
(: transcribed_to-K-tK (transcribed_to (gene K) (transcript tK)))
(: translates_to-tK-pK (translates_to (transcript tK (protein pK))))
(: gene-K (gene K))
(: go_gene_product-GO:0000019-pK (go_gene_product (ontology_term GO:0000019) (protein pK)))
(: transcript-tZ (transcript tZ))
(: protein-pZ (protein pZ))
(: transcribed_to-Z-tZ (transcribed_to (gene Z) (transcript tZ)))
(: translates_to-tZ-pZ (translates_to (transcript tZ (protein pZ))))
(: gene-Z (gene Z))
(: go_gene_product-GO:0000019-pZ (go_gene_product (ontology_term GO:0000019) (protein pZ)))
(: transcript-tW (transcript tW))
(: protein-pW (protein pW))
(: transcribed_to-W-tW (transcribed_to (gene W) (transcript tW)))
(: translates_to-tW-pW (translates_to (transcript tW (protein pW))))
(: gene-W (gene W))
(: go_gene_product-GO:0000019-pW (go_gene_product (ontology_term GO:0000019) (protein pW)))
(: transcript-tY (transcript tY))
(: protein-pY (protein pY))
(: transcribed_to-Y-tY (transcribed_to (gene Y) (transcript tY)))
(: translates_to-tY-pY (translates_to (transcript tY (protein pY))))
(: gene-Y (gene Y))
(: go_gene_product-GO:0000019-pY (go_gene_product (ontology_term GO:0000019) (protein pY)))
(: ontology_term-GO:0000020 (ontology_term GO:0000020))
(: go_gene_product-GO:0000020-p13 (go_gene_product (ontology_term GO:0000020) (protein p13)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000020-pA (go_gene_product (ontology_term GO:0000020) (protein pA)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000020-pA (go_gene_product (ontology_term GO:0000020) (protein pA)))
(: transcript-tY (transcript tY))
(: protein-pY (protein pY))
(: transcribed_to-Y-tY (transcribed_to (gene Y) (transcript tY)))
(: translates_to-tY-pY (translates_to (transcript tY (protein pY))))
(: gene-Y (gene Y))
(: go_gene_product-GO:0000020-pY (go_gene_product (ontology_term GO:0000020) (protein pY)))
(: transcript-tY (transcript tY))
(: protein-pY (protein pY))
(: transcribed_to-Y-tY (transcribed_to (gene Y) (transcript tY)))
(: translates_to-tY-pY (translates_to (transcript tY (protein pY))))
(: gene-Y (gene Y))
(: go_gene_product-GO:0000020-pY (go_gene_product (ontology_term GO:0000020) (protein pY)))
(: ontology_term-GO:0000021 (ontology_term GO:0000021))
(: go_gene_product-GO:0000021-p7 (go_gene_product (ontology_term GO:0000021) (protein p7)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000021-pI (go_gene_product (ontology_term GO:0000021) (protein pI)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000021-pC (go_gene_product (ontology_term GO:0000021) (protein pC)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000021-pG (go_gene_product (ontology_term GO:0000021) (protein pG)))
(: transcript-tF (transcript tF))
(: protein-pF (protein pF))
(: transcribed_to-F-tF (transcribed_to (gene F) (transcript tF)))
(: translates_to-tF-pF (translates_to (transcript tF (protein pF))))
(: gene-F (gene F))
(: go_gene_product-GO:0000021-pF (go_gene_product (ontology_term GO:0000021) (protein pF)))
(: ontology_term-GO:0000022 (ontology_term GO:0000022))
(: go_gene_product-GO:0000022-p15 (go_gene_product (ontology_term GO:0000022) (protein p15)))
(: transcript-tI (transcript tI))
(: protein-pI (protein pI))
(: transcribed_to-I-tI (transcribed_to (gene I) (transcript tI)))
(: translates_to-tI-pI (translates_to (transcript tI (protein pI))))
(: gene-I (gene I))
(: go_gene_product-GO:0000022-pI (go_gene_product (ontology_term GO:0000022) (protein pI)))
(: transcript-tE (transcript tE))
(: protein-pE (protein pE))
(: transcribed_to-E-tE (transcribed_to (gene E) (transcript tE)))
(: translates_to-tE-pE (translates_to (transcript tE (protein pE))))
(: gene-E (gene E))
(: go_gene_product-GO:0000022-pE (go_gene_product (ontology_term GO:0000022) (protein pE)))
(: transcript-tA (transcript tA))
(: protein-pA (protein pA))
(: transcribed_to-A-tA (transcribed_to (gene A) (transcript tA)))
(: translates_to-tA-pA (translates_to (transcript tA (protein pA))))
(: gene-A (gene A))
(: go_gene_product-GO:0000022-pA (go_gene_product (ontology_term GO:0000022) (protein pA)))
(: transcript-tS (transcript tS))
(: protein-pS (protein pS))
(: transcribed_to-S-tS (transcribed_to (gene S) (transcript tS)))
(: translates_to-tS-pS (translates_to (transcript tS (protein pS))))
(: gene-S (gene S))
(: go_gene_product-GO:0000022-pS (go_gene_product (ontology_term GO:0000022) (protein pS)))
(: ontology_term-GO:0000023 (ontology_term GO:0000023))
(: go_gene_product-GO:0000023-p3 (go_gene_product (ontology_term GO:0000023) (protein p3)))
(: transcript-tX (transcript tX))
(: protein-pX (protein pX))
(: transcribed_to-X-tX (transcribed_to (gene X) (transcript tX)))
(: translates_to-tX-pX (translates_to (transcript tX (protein pX))))
(: gene-X (gene X))
(: go_gene_product-GO:0000023-pX (go_gene_product (ontology_term GO:0000023) (protein pX)))
(: transcript-tO (transcript tO))
(: protein-pO (protein pO))
(: transcribed_to-O-tO (transcribed_to (gene O) (transcript tO)))
(: translates_to-tO-pO (translates_to (transcript tO (protein pO))))
(: gene-O (gene O))
(: go_gene_product-GO:0000023-pO (go_gene_product (ontology_term GO:0000023) (protein pO)))
(: transcript-tV (transcript tV))
(: protein-pV (protein pV))
(: transcribed_to-V-tV (transcribed_to (gene V) (transcript tV)))
(: translates_to-tV-pV (translates_to (transcript tV (protein pV))))
(: gene-V (gene V))
(: go_gene_product-GO:0000023-pV (go_gene_product (ontology_term GO:0000023) (protein pV)))
(: transcript-tX (transcript tX))
(: protein-pX (protein pX))
(: transcribed_to-X-tX (transcribed_to (gene X) (transcript tX)))
(: translates_to-tX-pX (translates_to (transcript tX (protein pX))))
(: gene-X (gene X))
(: go_gene_product-GO:0000023-pX (go_gene_product (ontology_term GO:0000023) (protein pX)))
(: ontology_term-GO:0000024 (ontology_term GO:0000024))
(: go_gene_product-GO:0000024-p1 (go_gene_product (ontology_term GO:0000024) (protein p1)))
(: transcript-tQ (transcript tQ))
(: protein-pQ (protein pQ))
(: transcribed_to-Q-tQ (transcribed_to (gene Q) (transcript tQ)))
(: translates_to-tQ-pQ (translates_to (transcript tQ (protein pQ))))
(: gene-Q (gene Q))
(: go_gene_product-GO:0000024-pQ (go_gene_product (ontology_term GO:0000024) (protein pQ)))
(: transcript-tQ (transcript tQ))
(: protein-pQ (protein pQ))
(: transcribed_to-Q-tQ (transcribed_to (gene Q) (transcript tQ)))
(: translates_to-tQ-pQ (translates_to (transcript tQ (protein pQ))))
(: gene-Q (gene Q))
(: go_gene_product-GO:0000024-pQ (go_gene_product (ontology_term GO:0000024) (protein pQ)))
(: transcript-tZ (transcript tZ))
(: protein-pZ (protein pZ))
(: transcribed_to-Z-tZ (transcribed_to (gene Z) (transcript tZ)))
(: translates_to-tZ-pZ (translates_to (transcript tZ (protein pZ))))
(: gene-Z (gene Z))
(: go_gene_product-GO:0000024-pZ (go_gene_product (ontology_term GO:0000024) (protein pZ)))
(: transcript-tT (transcript tT))
(: protein-pT (protein pT))
(: transcribed_to-T-tT (transcribed_to (gene T) (transcript tT)))
(: translates_to-tT-pT (translates_to (transcript tT (protein pT))))
(: gene-T (gene T))
(: go_gene_product-GO:0000024-pT (go_gene_product (ontology_term GO:0000024) (protein pT)))
(: ontology_term-GO:0000025 (ontology_term GO:0000025))
(: go_gene_product-GO:0000025-p7 (go_gene_product (ontology_term GO:0000025) (protein p7)))
(: transcript-tG (transcript tG))
(: protein-pG (protein pG))
(: transcribed_to-G-tG (transcribed_to (gene G) (transcript tG)))
(: translates_to-tG-pG (translates_to (transcript tG (protein pG))))
(: gene-G (gene G))
(: go_gene_product-GO:0000025-pG (go_gene_product (ontology_term GO:0000025) (protein pG)))
(: transcript-tB (transcript tB))
(: protein-pB (protein pB))
(: transcribed_to-B-tB (transcribed_to (gene B) (transcript tB)))
(: translates_to-tB-pB (translates_to (transcript tB (protein pB))))
(: gene-B (gene B))
(: go_gene_product-GO:0000025-pB (go_gene_product (ontology_term GO:0000025) (protein pB)))
(: transcript-tC (transcript tC))
(: protein-pC (protein pC))
(: transcribed_to-C-tC (transcribed_to (gene C) (transcript tC)))
(: translates_to-tC-pC (translates_to (transcript tC (protein pC))))
(: gene-C (gene C))
(: go_gene_product-GO:0000025-pC (go_gene_product (ontology_term GO:0000025) (protein pC)))
(: transcript-tQ (transcript tQ))
(: protein-pQ (protein pQ))
(: transcribed_to-Q-tQ (transcribed_to (gene Q) (transcript tQ)))
(: translates_to-tQ-pQ (translates_to (transcript tQ (protein pQ))))
(: gene-Q (gene Q))
(: go_gene_product-GO:0000025-pQ (go_gene_product (ontology_term GO:0000025) (protein pQ)))
(: ontology_term-GO:0000026 (ontology_term GO:0000026))
(: go_gene_product-GO:0000026-p9 (go_gene_product (ontology_term GO:0000026) (protein p9)))
(: transcript-tX (transcript tX))
(: protein-pX (protein pX))
(: transcribed_to-X-tX (transcribed_to (gene X) (transcript tX)))
(: translates_to-tX-pX (translates_to (transcript tX (protein pX))))
(: gene-X (gene X))
(: go_gene_product-GO:0000026-pX (go_gene_product (ontology_term GO:0000026) (protein pX)))
(: transcript-tQ (transcript tQ))
(: protein-pQ (protein pQ))
(: transcribed_to-Q-tQ (transcribed_to (gene Q) (transcript tQ)))
(: translates_to-tQ-pQ (translates_to (transcript tQ (protein pQ))))
(: gene-Q (gene Q))
(: go_gene_product-GO:0000026-pQ (go_gene_product (ontology_term GO:0000026) (protein pQ)))
(: transcript-tQ (transcript tQ))
(: protein-pQ (protein pQ))
(: transcribed_to-Q-tQ (transcribed_to (gene Q) (transcript tQ)))
(: translates_to-tQ-pQ (translates_to (transcript tQ (protein pQ))))
(: gene-Q (gene Q))
(: go_gene_product-GO:0000026-pQ (go_gene_product (ontology_term GO:0000026) (protein pQ)))
(: transcript-tB (transcript tB))
(: protein-pB (protein pB))
(: transcribed_to-B-tB (transcribed_to (gene B) (transcript tB)))
(: translates_to-tB-pB (translates_to (transcript tB (protein pB))))
(: gene-B (gene B))
(: go_gene_product-GO:0000026-pB (go_gene_product (ontology_term GO:0000026) (protein pB)))