forked from geneontology/noctua-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path567b544200000138.ttl
1018 lines (823 loc) · 127 KB
/
567b544200000138.ttl
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
<http://model.geneontology.org/567b544200000138> a <http://www.w3.org/2002/07/owl#Ontology> .
<http://geneontology.org/lego/evidence> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/modelstate> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/BFO_0000050> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/BFO_0000066> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002333> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/x> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/y> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/json-model> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/ECO_0000314> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002233> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002406> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002408> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.geneontology.org/formats/oboInOwl#id> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/GO_0003700> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002213> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002212> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/GO_0005634> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0006366> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002234> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://identifiers.org/uniprot/P07585> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:P07585"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "DCN Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/uniprot/P15692> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:P15692"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "VEGFA Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/uniprot/P35222> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:P35222"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "CTNNB1 Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/uniprot/P35968> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:P35968"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "KDR Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/uniprot/Q14457> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:Q14457"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "BECN1 Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/uniprot/Q9GZU2> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:Q9GZU2"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "PEG3 Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/uniprot/Q9H492> <http://www.geneontology.org/formats/oboInOwl#id> "UniProtKB:Q9H492"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> ;
<http://www.w3.org/2000/01/rdf-schema#label> "MAP1LC3A Hsap"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138> <http://geneontology.org/lego/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/json-model> "{\"id\":\"gomodel:567b544200000138\",\"individuals\":[{\"id\":\"gomodel:567b544200000138/567b544200000141\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:23798385\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000215\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q9GZU2\",\"label\":\"PEG3 Hsap\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000214\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003700\",\"label\":\"transcription factor activity, sequence-specific DNA binding\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"1644.8592393663193\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"512.977783203125\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000172\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000171\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"41\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"428\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000211\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003700\",\"label\":\"transcription factor activity, sequence-specific DNA binding\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"964.8888888888888\"},{\"key\":\"hint-layout-y\",\"value\":\"596\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000210\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q9H492\",\"label\":\"MAP1LC3A Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000219\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0048845\",\"label\":\"venous blood vessel morphogenesis\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"2965.3332790798613\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"1739.8518880208333\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000180\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P35968\",\"label\":\"KDR Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000193\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q14457\",\"label\":\"BECN1 Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000201\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P35968\",\"label\":\"KDR Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000188\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q9GZU2\",\"label\":\"PEG3 Hsap\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000194\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005776\",\"label\":\"autophagosome\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000139\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016236\",\"label\":\"macroautophagy\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-x\",\"value\":\"1963.5555555555557\"},{\"key\":\"hint-layout-y\",\"value\":\"16\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000161\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000223\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000266\",\"label\":\"mitochondrial fission\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"980.7407769097222\"},{\"key\":\"hint-layout-y\",\"value\":\"305.18519422743054\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000169\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006461\",\"label\":\"protein complex assembly\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"2136.4444986979165\"},{\"key\":\"hint-layout-y\",\"value\":\"222.2222222222222\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000209\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000208\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000207\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006366\",\"label\":\"transcription from RNA polymerase II promoter\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"3834.2814670138887\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-y\",\"value\":\"1000.2369791666666\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000199\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P15692\",\"label\":\"VEGFA Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000205\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000204\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000203\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006366\",\"label\":\"transcription from RNA polymerase II promoter\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"1236.414822048611\"},{\"key\":\"hint-layout-x\",\"value\":\"3060.1481119791665\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000202\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000160\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000045\",\"label\":\"autophagosome assembly\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"690\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000200\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004714\",\"label\":\"transmembrane receptor protein tyrosine kinase activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"394.1629774305556\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"407.1999782986111\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000192\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q9GZU2\",\"label\":\"PEG3 Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000191\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P35222\",\"label\":\"CTNNB1 Hsap\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000190\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q9H492\",\"label\":\"MAP1LC3A Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000179\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P07585\",\"label\":\"DCN Hsap\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000140\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000224\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000159\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000158\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0014065\",\"label\":\"phosphatidylinositol 3-kinase signaling\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"16\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000206\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q14457\",\"label\":\"BECN1 Hsap\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000156\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000189\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q14457\",\"label\":\"BECN1 Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000154\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004714\",\"label\":\"transmembrane receptor protein tyrosine kinase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"942.6666666666666\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-x\",\"value\":\"878.6666666666666\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000187\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0043534\",\"label\":\"blood vessel endothelial cell migration\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-x\",\"value\":\"1667.3480902777776\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"2271.7925889756943\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000186\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000185\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0036324\",\"label\":\"vascular endothelial growth factor receptor-2 signaling pathway\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"1459.5555826822917\"},{\"key\":\"hint-layout-x\",\"value\":\"1486.2221137152776\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000225\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0038202\",\"label\":\"TORC1 signaling\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"210\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-y\",\"value\":\"129\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000183\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P15692\",\"label\":\"VEGFA Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000182\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0043184\",\"label\":\"vascular endothelial growth factor receptor 2 binding\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"376.4444444444444\"},{\"key\":\"hint-layout-y\",\"value\":\"660\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000222\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000221\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0051882\",\"label\":\"mitochondrial depolarization\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-y\",\"value\":\"213.64444986979166\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"740\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000220\",\"type\":[{\"type\":\"class\",\"id\":\"UBERON:0001982\",\"label\":\"capillary\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000195\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000142\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0043184\",\"label\":\"vascular endothelial growth factor receptor 2 binding\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-y\",\"value\":\"648.8888888888889\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000197\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000166\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004714\",\"label\":\"transmembrane receptor protein tyrosine kinase activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-y\",\"value\":\"312\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000198\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000196\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006366\",\"label\":\"transcription from RNA polymerase II promoter\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"2717.037163628472\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"hint-layout-y\",\"value\":\"2033.1851942274307\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000168\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000212\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:Q9GZU2\",\"label\":\"PEG3 Hsap\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000213\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000226\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000181\",\"type\":[{\"type\":\"class\",\"id\":\"UniProtKB:P35968\",\"label\":\"KDR Hsap\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000184\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000216\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000218\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"id\":\"gomodel:567b544200000138/567b544200000217\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000071\",\"label\":\"blood vessel endothelial cell\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-29\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]}],\"facts\":[{\"subject\":\"gomodel:567b544200000138/567b544200000171\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000138/567b544200000169\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000138/567b544200000160\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000182\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000138/567b544200000154\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000158\",\"property\":\"RO:0002212\",\"object\":\"gomodel:567b544200000138/567b544200000225\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000142\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000138/567b544200000166\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000139\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000140\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000138/567b544200000141\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000196\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000197\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000211\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000212\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000171\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000138/567b544200000160\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000166\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000158\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000192\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000171\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000188\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000166\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000168\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000154\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000138/567b544200000185\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000185\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000187\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000182\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000184\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000214\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000216\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000160\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000161\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000207\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000169\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000203\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000169\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000219\",\"property\":\"RO:0002234\",\"object\":\"gomodel:567b544200000138/567b544200000220\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000200\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000202\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000160\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000138/567b544200000139\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000203\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000206\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000203\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000205\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000200\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000221\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000185\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000196\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000214\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000138/567b544200000207\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000200\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000211\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000182\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000183\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000171\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000189\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000207\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000209\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000195\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000142\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000138/567b544200000200\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000185\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000186\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000200\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000201\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000154\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000156\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000191\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000142\",\"property\":\"RO:0002408\",\"object\":\"gomodel:567b544200000138/567b544200000182\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000211\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000138/567b544200000203\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000203\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000204\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000207\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000210\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000185\",\"property\":\"RO:0002212\",\"object\":\"gomodel:567b544200000138/567b544200000203\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000207\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000208\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000142\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000179\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000194\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000221\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000222\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000171\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000172\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000214\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000217\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000223\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000224\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000200\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000214\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000211\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000218\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000225\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000226\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000225\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000171\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000190\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000214\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000215\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000154\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000181\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000196\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000138/567b544200000199\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000158\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000159\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000185\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000219\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000196\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000198\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000166\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000180\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000169\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000138/567b544200000193\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000211\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000138/567b544200000213\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]},{\"subject\":\"gomodel:567b544200000138/567b544200000200\",\"property\":\"RO:0002213\",\"object\":\"gomodel:567b544200000138/567b544200000223\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]}],\"properties\":[{\"type\":\"property\",\"id\":\"RO:0002233\",\"label\":\"has input\"},{\"type\":\"property\",\"id\":\"BFO:0000066\",\"label\":\"occurs in\"},{\"type\":\"property\",\"id\":\"RO:0002408\",\"label\":\"directly inhibits\"},{\"type\":\"property\",\"id\":\"RO:0002212\",\"label\":\"negatively regulates\"},{\"type\":\"property\",\"id\":\"RO:0002213\",\"label\":\"positively_regulates\"},{\"type\":\"property\",\"id\":\"RO:0002406\",\"label\":\"directly activates\"},{\"type\":\"property\",\"id\":\"RO:0002333\",\"label\":\"enabled_by\"},{\"type\":\"property\",\"id\":\"BFO:0000050\",\"label\":\"part_of\"},{\"type\":\"property\",\"id\":\"RO:0002234\",\"label\":\"has output\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"title\",\"value\":\"PMID23798385-Dcn-Peg3-autophagy\"},{\"key\":\"state\",\"value\":\"development\"},{\"key\":\"date\",\"value\":\"2015-12-29\"}]}"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:567b544200000138"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2002/07/owl#imports> <http://purl.obolibrary.org/obo/go/extensions/go-lego.owl> ;
<http://purl.org/dc/elements/1.1/title> "PMID23798385-Dcn-Peg3-autophagy"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000139> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000140> ;
<http://geneontology.org/lego/hint/layout/x> "1963.5555555555557"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "16"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016236> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000140> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000141> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:23798385"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000142> <http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000179> ;
<http://geneontology.org/lego/hint/layout/y> "648.8888888888889"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000138/567b544200000166> , <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/567b544200000138/567b544200000182> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043184> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000154> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000156> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000181> ;
<http://geneontology.org/lego/hint/layout/x> "878.6666666666666"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "942.6666666666666"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004714> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000156> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000158> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000159> ;
<http://geneontology.org/lego/hint/layout/x> "16"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002212> <http://model.geneontology.org/567b544200000138/567b544200000225> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0014065> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000159> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000160> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000138/567b544200000139> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000161> ;
<http://geneontology.org/lego/hint/layout/x> "690"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000045> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000161> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000166> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000168> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000180> ;
<http://geneontology.org/lego/hint/layout/y> "312"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/567b544200000138/567b544200000158> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004714> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000168> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000169> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000138/567b544200000160> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000194> , <http://model.geneontology.org/567b544200000138/567b544200000195> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000192> , <http://model.geneontology.org/567b544200000138/567b544200000193> ;
<http://geneontology.org/lego/hint/layout/x> "2136.4444986979165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "222.2222222222222"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000138/567b544200000190> , <http://model.geneontology.org/567b544200000138/567b544200000191> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006461> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000171> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000138/567b544200000160> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000172> ;
<http://geneontology.org/lego/hint/layout/x> "428"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "41"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000138/567b544200000188> , <http://model.geneontology.org/567b544200000138/567b544200000189> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034497> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000172> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000179> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P07585> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000180> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P35968> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000181> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P35968> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000182> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000184> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000183> ;
<http://geneontology.org/lego/hint/layout/x> "376.4444444444444"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "660"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000138/567b544200000154> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043184> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000183> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P15692> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000184> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000185> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000186> ;
<http://geneontology.org/lego/hint/layout/x> "1486.2221137152776"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1459.5555826822917"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/567b544200000138/567b544200000187> , <http://model.geneontology.org/567b544200000138/567b544200000196> , <http://model.geneontology.org/567b544200000138/567b544200000219> ;
<http://purl.obolibrary.org/obo/RO_0002212> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0036324> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000186> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000187> <http://geneontology.org/lego/hint/layout/x> "1667.3480902777776"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "2271.7925889756943"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043534> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000188> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q9GZU2> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000189> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q14457> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000190> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q9H492> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000191> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P35222> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000192> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q9GZU2> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000193> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q14457> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000194> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005776> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000195> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000196> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000197> , <http://model.geneontology.org/567b544200000138/567b544200000198> ;
<http://geneontology.org/lego/hint/layout/x> "2717.037163628472"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "2033.1851942274307"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000138/567b544200000199> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006366> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000197> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000198> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000199> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P15692> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000200> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000202> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000201> ;
<http://geneontology.org/lego/hint/layout/x> "394.1629774305556"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "407.1999782986111"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/567b544200000138/567b544200000211> , <http://model.geneontology.org/567b544200000138/567b544200000214> , <http://model.geneontology.org/567b544200000138/567b544200000221> , <http://model.geneontology.org/567b544200000138/567b544200000223> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004714> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000201> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/P35968> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000202> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000203> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000204> , <http://model.geneontology.org/567b544200000138/567b544200000205> ;
<http://geneontology.org/lego/hint/layout/x> "3060.1481119791665"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1236.414822048611"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000138/567b544200000206> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006366> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000204> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000205> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000206> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q14457> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000207> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000208> , <http://model.geneontology.org/567b544200000138/567b544200000209> ;
<http://geneontology.org/lego/hint/layout/x> "3834.2814670138887"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1000.2369791666666"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000138/567b544200000210> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006366> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000208> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000209> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000210> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q9H492> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000211> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000213> , <http://model.geneontology.org/567b544200000138/567b544200000218> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000212> ;
<http://geneontology.org/lego/hint/layout/x> "964.8888888888888"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "596"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000212> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q9GZU2> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000213> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000214> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000216> , <http://model.geneontology.org/567b544200000138/567b544200000217> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000138/567b544200000215> ;
<http://geneontology.org/lego/hint/layout/x> "1644.8592393663193"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "512.977783203125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000138/567b544200000207> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000215> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/uniprot/Q9GZU2> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000216> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000217> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000218> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000219> <http://geneontology.org/lego/hint/layout/x> "1739.8518880208333"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "2965.3332790798613"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002234> <http://model.geneontology.org/567b544200000138/567b544200000220> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0048845> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000220> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/UBERON_0001982> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000221> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000222> ;
<http://geneontology.org/lego/hint/layout/x> "740"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "213.64444986979166"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0051882> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000222> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000223> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000224> ;
<http://geneontology.org/lego/hint/layout/x> "980.7407769097222"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "305.18519422743054"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000266> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000224> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000225> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000138/567b544200000226> ;
<http://geneontology.org/lego/hint/layout/x> "210"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "129"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/567b544200000138/567b544200000171> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0038202> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000138/567b544200000226> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/CL_0000071> <http://www.geneontology.org/formats/oboInOwl#id> "CL:0000071"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0000045> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0000266> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004714> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005776> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0006461> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0014065> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0016236> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0034497> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0036324> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0038202> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043184> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043534> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0048845> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0051882> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/UBERON_0001982> <http://www.geneontology.org/formats/oboInOwl#id> "UBERON:0001982"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://www.w3.org/2000/01/rdf-schema#label> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/title> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/contributor> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/date> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/source> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2001/XMLSchema#string> a <http://www.w3.org/2000/01/rdf-schema#Datatype> .
_:t6546 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P07585> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UniProtKB:P07585"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6547 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/Q14457> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "BECN1 Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6548 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/Q9GZU2> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UniProtKB:Q9GZU2"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6549 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/Q9GZU2> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "PEG3 Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6550 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/Q9H492> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UniProtKB:Q9H492"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6551 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/Q9H492> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MAP1LC3A Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6552 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://purl.obolibrary.org/obo/CL_0000071> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "CL:0000071"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6553 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://purl.obolibrary.org/obo/UBERON_0001982> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UBERON:0001982"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6554 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000138/567b544200000141> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000139> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000140> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6555 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000142> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000179> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6556 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002406> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000142> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000166> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6557 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P07585> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "DCN Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6558 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002406> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000142> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6559 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002408> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000142> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000182> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6560 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000050> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000154> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6561 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000154> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000156> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6562 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000154> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000181> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6563 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000158> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000159> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6564 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002212> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000158> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000225> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6565 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000050> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000160> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000139> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6566 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000160> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000161> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6567 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000166> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000168> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6568 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P15692> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UniProtKB:P15692"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6569 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000166> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000158> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6570 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000166> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000180> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6571 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000050> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000160> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6572 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000194> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6573 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000195> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6574 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000190> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6575 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000191> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6576 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000192> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6577 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000193> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6578 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000050> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000171> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000160> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6579 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P15692> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "VEGFA Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6580 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000171> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000172> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6581 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000171> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000188> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6582 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000171> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000189> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6583 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002406> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000171> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6584 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000182> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000184> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6585 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000182> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000183> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6586 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002406> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000182> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000154> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6587 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000186> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6588 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002212> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6589 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000187> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6590 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P35222> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UniProtKB:P35222"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6591 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000196> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6592 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000185> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000219> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6593 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000196> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000197> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6594 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000196> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000198> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6595 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000196> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000199> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6596 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000202> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6597 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000211> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6598 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000214> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6599 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000221> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6600 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000223> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6601 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P35222> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "CTNNB1 Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6602 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000200> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000201> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6603 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000204> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6604 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000205> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6605 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6606 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000206> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6607 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000207> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000208> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6608 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000207> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000209> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6609 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002213> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000207> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000169> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6610 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000207> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000210> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6611 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000211> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000213> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6612 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P35968> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "UniProtKB:P35968"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6613 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000211> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000218> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6614 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000211> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000212> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6615 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002406> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000211> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000203> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6616 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000214> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000216> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6617 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000214> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000217> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6618 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002333> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000214> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000215> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6619 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002406> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000214> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000207> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6620 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002234> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000219> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000220> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6621 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000221> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000222> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6622 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000138/567b544200000223> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000138/567b544200000224> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-29"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t6623 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/uniprot/P35968> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "KDR Hsap"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/derived> "true"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Axiom> .
_:t6624 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000066> ;