-
Notifications
You must be signed in to change notification settings - Fork 3
/
5667fdd400000077.ttl
1553 lines (1247 loc) · 133 KB
/
5667fdd400000077.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/5667fdd400000077> 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/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/modelstate> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/RO_0002333> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002418> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/pav/providedBy> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<https://w3id.org/biolink/vocab/in_taxon> 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/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_0002629> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002630> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/GO_0005515> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005829> 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_0002411> 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/ECO_0001225> a <http://www.w3.org/2002/07/owl#Class> .
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/canonical_record> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/iuphar_id> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/IAO_0000115> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/RO_0002412> 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_0000329> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0000407> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002413> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/GO_0016236> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000002308> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000002308"^^<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> "ATG9 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000006389> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000006389"^^<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> "ATG13 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0016301> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0019209> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_1990316> 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/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://purl.obolibrary.org/obo/GO_0044877> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004197> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000015> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0034274> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0061739> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000002> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0051260> 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://identifiers.org/sgd/S000000174> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000174"^^<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> "ATG8 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000001214> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000001214"^^<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> "ATG7 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0019778> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0019779> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_1905146> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0032984> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0019777> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000005290> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005290"^^<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> "ATG3 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0072657> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000003827> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000003827"^^<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> "TOR1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/ECO_0000094> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000005167> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005167"^^<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> "ATG4 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0019786> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0051697> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0034045> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000000332> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000332"^^<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> "ATG14 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000003965> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000003965"^^<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> "ATG10 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000005500> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005500"^^<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> "ARG8 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0005942> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0016240> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030399> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0061650> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0061651> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0061753> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0097352> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0061909> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000005186> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005186"^^<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> "ATG2 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000000543> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000543"^^<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> "ATG22 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000001917> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000001917"^^<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> "ATG18 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000004769> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000004769"^^<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> "ATG16 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000005442> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005442"^^<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> "ATG19 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000006021> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000006021"^^<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> "ATG21 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000006070> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000006070"^^<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> "ATG5 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077> <http://geneontology.org/lego/hint/layout/x> "100"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "100"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://www.w3.org/2002/07/owl#versionIRI> <http://model.geneontology.org/5667fdd400000077> ;
<https://w3id.org/biolink/vocab/in_taxon> <http://purl.obolibrary.org/obo/NCBITaxon_559292> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:5667fdd400000077"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" , "Automated change 2023-03-16: RO:0002408 replaced by RO:0002630" , "Automated change 2022-04-14: <http://purl.obolibrary.org/obo/GO_0032403> replaced_by <http://purl.obolibrary.org/obo/GO_0044877>" , "Automated change 2022-04-14: <http://purl.obolibrary.org/obo/GO_0043241> replaced_by <http://purl.obolibrary.org/obo/GO_0032984>" ;
<http://purl.org/dc/elements/1.1/title> "Yeast macroautophagy"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:kltm"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2023-03-16"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000143> <http://geneontology.org/lego/hint/layout/x> "1566.22216796875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "469.9259440104167"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000213> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000145> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000152> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/5667fdd400000077/5667fdd400000355> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061739> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000145> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034274> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000152> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000174> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000167> <http://geneontology.org/lego/hint/layout/x> "1163.8222113715278"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "176.59255642361111"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000168> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000169> ;
<http://purl.obolibrary.org/obo/RO_0002412> <http://model.geneontology.org/5667fdd400000077/5667fdd400000258> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/5667fdd400000077/5667fdd400000177> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0044877> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2022-04-14: <http://purl.obolibrary.org/obo/GO_0032403> replaced_by <http://purl.obolibrary.org/obo/GO_0044877>" ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2022-04-14"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000168> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004769> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000169> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034274> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000177> <http://geneontology.org/lego/hint/layout/x> "1607.9999457465276"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "252"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000178> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000179> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0032984> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2022-04-14: <http://purl.obolibrary.org/obo/GO_0043241> replaced_by <http://purl.obolibrary.org/obo/GO_0032984>" ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2022-04-14"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000178> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004769> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000179> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034274> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000187> <http://geneontology.org/lego/hint/layout/x> "1"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "291"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000188> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000189> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000191> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000224> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0019786> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000188> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005167> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000189> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000407> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000191> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000174> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000213> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034274> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000222> <http://geneontology.org/lego/hint/layout/x> "9"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "99"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000223> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000226> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0019778> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000223> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000001214> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000224> <http://geneontology.org/lego/hint/layout/x> "275"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "334"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000225> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000248> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0019779> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000225> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000001214> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000226> <http://geneontology.org/lego/hint/layout/x> "279"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "116"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000227> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000271> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061651> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000227> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000003965> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000248> <http://geneontology.org/lego/hint/layout/x> "776.2666558159722"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "459.8518337673611"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000249> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000471> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000251> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000258> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061650> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000249> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005290> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000251> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000174> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000258> <http://geneontology.org/lego/hint/layout/x> "1148.88330078125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "493.6666564941406"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000259> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000309> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/5667fdd400000077/5667fdd400000143> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0019787> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000259> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034274> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000271> <http://geneontology.org/lego/hint/layout/x> "575"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "115"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000310> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000167> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0019777> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000309> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005500> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000310> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000006070> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000316> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_1990316> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000320> <http://geneontology.org/lego/hint/layout/x> "523.9110785590277"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "979.4666341145834"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000316> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000335> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/5667fdd400000077/5667fdd400000347> , <http://model.geneontology.org/5667fdd400000077/5667fdd400000351> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016301> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000332> <http://geneontology.org/lego/hint/layout/x> "27"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "608.0000152587891"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000333> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000474> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5667fdd400000077/5667fdd400000320> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0019209> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000333> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000006389> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000335> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000002308> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000347> <http://geneontology.org/lego/hint/layout/x> "1106"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "691"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000348> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/567b544200000234> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/5667fdd400000077/5667fdd400000365> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034497> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000348> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000407> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000351> <http://geneontology.org/lego/hint/layout/x> "1469.0370551215276"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "886.5185275607638"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000352> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000353> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/5667fdd400000077/5667fdd400000355> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034497> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000352> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000407> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000353> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000174> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000355> <http://geneontology.org/lego/hint/layout/x> "2517.066650390625"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "974.11669921875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/5667fdd400000365> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000356> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/5667fdd400000357> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0072657> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000356> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034045> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000357> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000174> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000365> <http://geneontology.org/lego/hint/layout/x> "1602.6665581597224"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1532.4444444444443"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/581e072c00000181> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000045> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000456> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000015> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:10233150"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000457> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000015> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11100732"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000462> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11038174"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000465> <http://geneontology.org/lego/hint/layout/x> "1913.4814995659724"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "136.88888888888889"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000466> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/5667fdd400000077/5667fdd400000468> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004197> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000466> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005167> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000467> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11038174"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000468> <http://geneontology.org/lego/hint/layout/x> "1997.5999891493057"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "417.77777777777777"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000469> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/5667fdd400000077/5667fdd400000355> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0051697> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000469> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005167> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000470> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11038174"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000471> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005829> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000472> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11149920"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000473> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:22885598"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000474> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_1990316> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/5667fdd400000475> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000021> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:15743910"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000230> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:10508157"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000231> <http://geneontology.org/lego/hint/layout/x> "744"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "290"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/567b544200000232> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/5667fdd400000167> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0051260> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000232> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004769> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000233> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0001085> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24905091"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000234> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000001917> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000236> <http://geneontology.org/lego/hint/layout/x> "2935"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "970"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/567b544200000239> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/567b544200000237> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/567b544200000238> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/5667fdd400000077/5667fdd400000355> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034497> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000237> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000407> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000238> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005942> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000239> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000332> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000240> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:16421251"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000241> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:16421251"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000242> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:16421251"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000243> <http://geneontology.org/lego/hint/layout/x> "2828"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "739"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/5667fdd400000077/5667fdd400000355> ;
<http://purl.obolibrary.org/obo/RO_0002212> <http://model.geneontology.org/5667fdd400000077/5667fdd400000465> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000006021> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000244> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000015> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:20154084"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000245> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000015> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:20154084"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000246> <http://geneontology.org/lego/hint/layout/x> "47"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "996"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/567b544200000247> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5667fdd400000077/567b544200000248> ;
<http://purl.obolibrary.org/obo/RO_0002630> <http://model.geneontology.org/5667fdd400000077/5667fdd400000332> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016301> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-06"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000247> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000003827> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000248> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000006389> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000249> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0001068> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:19995911 "^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000250> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0001068> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:19995911 "^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/567b544200000251> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:19995911 "^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000181> <http://geneontology.org/lego/hint/layout/x> "2475.2166748046875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1517.333251953125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/581e072c00000187> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016240> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000187> <http://geneontology.org/lego/hint/layout/x> "5750"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3525.5999755859375"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/59cde02c00000109> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0097352> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000191> <http://geneontology.org/lego/hint/layout/x> "2485.216796875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1272.4500122070312"^^<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> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000230> <http://geneontology.org/lego/hint/layout/x> "1842.666748046875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "2445.800048828125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/5667fdd400000365> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061753> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000232> <http://geneontology.org/lego/hint/layout/x> "624.0001220703125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "2538"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/581e072c00000233> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/5667fdd400000077/581e072c00000230> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005515> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000233> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005442> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000258> <http://geneontology.org/lego/hint/layout/x> "125.333251953125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3397.3333740234375"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/581e072c00000259> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/581e072c00000260> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034639> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000259> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000543> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000260> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000329> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000294> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000094> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17021250"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000301> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0001225> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17021250"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/581e072c00000649> <http://geneontology.org/lego/hint/layout/x> "532.4999847412109"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "716"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/5667fdd400000077/5667fdd400000347> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005186> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/59cde02c00000109> <http://geneontology.org/lego/hint/layout/x> "4424"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3476"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/59cde02c00000112> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061909> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/59cde02c00000110> <http://geneontology.org/lego/hint/layout/x> "1344.2666015625"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3286"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/581e072c00000258> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_1905146> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/59cde02c00000111> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PubMedID:18586673"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/59cde02c00000112> <http://geneontology.org/lego/hint/layout/x> "3116.7998046875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3488"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002418> <http://model.geneontology.org/5667fdd400000077/59cde02c00000113> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/59cde02c00000110> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030399> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5667fdd400000077/59cde02c00000113> <http://geneontology.org/lego/hint/layout/x> "1328.533203125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3684"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5667fdd400000077/581e072c00000258> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_1903008> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/ECO_0000021> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0001068> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0001085> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0019787> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0034639> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_1903008> a <http://www.w3.org/2002/07/owl#Class> .
<http://www.w3.org/2000/01/rdf-schema#comment> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2000/01/rdf-schema#label> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2000/01/rdf-schema#seeAlso> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2002/07/owl#versionInfo> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2004/02/skos/core#altLabel> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2004/02/skos/core#exactMatch> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2004/02/skos/core#note> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/title> 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> .
_:t1310604 <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/5667fdd400000077/581e072c00000232> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000233> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310605 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/581e072c00000294> ;
<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/5667fdd400000077/581e072c00000258> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000260> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310606 <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/5667fdd400000077/5667fdd400000355> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000357> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310607 <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/sgd/S000005167> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005167"^^<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> .
_:t1310608 <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/sgd/S000005442> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG19 Scer"^^<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> .
_:t1310609 <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/5667fdd400000077/581e072c00000187> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310610 <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/sgd/S000001214> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG7 Scer"^^<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> .
_:t1310611 <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/5667fdd400000077/5667fdd400000355> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000365> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310612 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/567b544200000244> ;
<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/5667fdd400000077/567b544200000243> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000465> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310613 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002411> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5667fdd400000077/59cde02c00000110> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000258> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-03"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310614 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/59cde02c00000111> ;
<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/5667fdd400000077/5667fdd400000347> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/567b544200000234> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-10-04"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310615 <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/sgd/S000000174> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000000174"^^<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> .
_:t1310616 <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/sgd/S000000332> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG14 Scer"^^<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> .
_:t1310617 <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/5667fdd400000077/5667fdd400000365> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310618 <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/sgd/S000004769> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000004769"^^<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> .
_:t1310619 <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/5667fdd400000077/5667fdd400000177> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000179> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310620 <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/5667fdd400000077/5667fdd400000143> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000213> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310621 <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/5667fdd400000077/5667fdd400000320> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000347> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310622 <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/5667fdd400000077/581e072c00000181> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310623 <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/sgd/S000003965> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000003965"^^<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> .
_:t1310624 <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/sgd/S000005186> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005186"^^<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> .
_:t1310625 <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/sgd/S000006070> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000006070"^^<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> .
_:t1310626 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002413> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5667fdd400000077/581e072c00000232> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000230> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310627 <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/5667fdd400000077/5667fdd400000248> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000251> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310628 <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/sgd/S000005167> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG4 Scer"^^<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> .
_:t1310629 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/567b544200000242> ;
<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/5667fdd400000077/567b544200000236> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/567b544200000238> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-04"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310630 <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/sgd/S000003965> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG10 Scer"^^<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> .
_:t1310631 <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/5667fdd400000077/5667fdd400000320> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000335> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-09"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310632 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/5667fdd400000462> ;
<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/5667fdd400000077/5667fdd400000187> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000188> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310633 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/5667fdd400000470> ;
<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/5667fdd400000077/5667fdd400000468> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000469> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-11"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1310634 <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/5667fdd400000077/581e072c00000649> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000347> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-4187-2863"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-11-07"^^<http://www.w3.org/2001/XMLSchema#string> .