-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5666dc6c00000094.ttl
1046 lines (840 loc) · 87.1 KB
/
5666dc6c00000094.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/5666dc6c00000094> 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.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_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://purl.obolibrary.org/obo/GO_0005634> 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://geneontology.org/lego/canonical_record> 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://www.geneontology.org/formats/oboInOwl#hasDbXref> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<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_0005737> 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/GO_0005886> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002411> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<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/GO_0004707> 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_0006366> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000004640> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000004640"^^<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> "MSN2 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0004708> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004709> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004722> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004725> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000001545> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000001545"^^<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> "MSN4 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0006913> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030295> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/sgd/S000000920> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000920"^^<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> "SHO1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000003664> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000003664"^^<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> "PBS2 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GOREL_0002010> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://identifiers.org/sgd/S000004103> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000004103"^^<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> "HOG1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000000152> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000152"^^<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> "PTC3 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000000386> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000386"^^<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> "SMP1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000000669> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000000669"^^<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> "SSK22 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000001409> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000001409"^^<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> "SLN1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000002164> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000002164"^^<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> "PTC1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000002394> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000002394"^^<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> "YPD1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000003996> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000003996"^^<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> "SSK1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000004783> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000004783"^^<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> "HOT1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000005111> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005111"^^<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> "SKO1 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000005314> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005314"^^<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> "SSK2 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/sgd/S000005734> <http://www.geneontology.org/formats/oboInOwl#id> "SGD:S000005734"^^<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> "PTP2 Scer"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094> <http://geneontology.org/lego/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<https://w3id.org/biolink/vocab/in_taxon> <http://purl.obolibrary.org/obo/NCBITaxon_559292> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:5666dc6c00000094"^^<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:0002213 replaced by RO:0002629" , "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" , "Automated change 2023-03-16: RO:0002408 replaced by RO:0002630" ;
<http://purl.org/dc/elements/1.1/title> "HOG High-osmolarity glycerol pathway"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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/5666dc6c00000094/5666dc6c00000098> <http://geneontology.org/lego/hint/layout/x> "2780.533203125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000100> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000099> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005034> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000099> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000920> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000100> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005886> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000361> <http://geneontology.org/lego/hint/layout/x> "673.0962999131945"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "505.80742730034723"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000362> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> , <http://purl.obolibrary.org/obo/GO_0004707> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000362> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004103> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> <http://geneontology.org/lego/hint/layout/x> "405"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "174"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000365> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000364> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000361> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004708> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000364> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000003664> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000365> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000366> <http://geneontology.org/lego/hint/layout/x> "2096"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "458"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000368> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000367> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004709> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000367> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005314> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000368> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000369> <http://geneontology.org/lego/hint/layout/x> "1930.666748046875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "55.13336181640625"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000371> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000370> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004709> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000370> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000669> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000371> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000380> <http://geneontology.org/lego/hint/layout/x> "947.1111111111112"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "414.6666666666667"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000382> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000381> ;
<http://purl.obolibrary.org/obo/RO_0002630> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004722> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000381> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000002164> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000382> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000384> <http://geneontology.org/lego/hint/layout/x> "1009.3333333333334"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "617.3333333333334"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000385> ;
<http://purl.obolibrary.org/obo/RO_0002630> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004722> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000385> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000152> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000396> <http://geneontology.org/lego/hint/layout/x> "1438"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "200"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000398> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000397> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000366> , <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000369> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030295> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000397> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000003996> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000398> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000408> <http://geneontology.org/lego/hint/layout/x> "2846"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1238"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000410> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000409> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000423> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000396> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043424> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000409> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000002394> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000410> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000423> <http://geneontology.org/lego/hint/layout/x> "1721"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000425> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000424> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0009927> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000424> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000001409> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000425> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005886> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000485> <http://geneontology.org/lego/hint/layout/x> "803.0500183105469"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "681.4833374023438"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/GOREL_0002010> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000361> , <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006913> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> <http://geneontology.org/lego/hint/layout/x> "954"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1286.0000610351562"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000495> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000494> ;
<http://purl.obolibrary.org/obo/RO_0002629> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000503> , <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000506> , <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000515> , <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000519> , <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000532> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004707> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000494> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004103> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000495> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000503> <http://geneontology.org/lego/hint/layout/x> "2408"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1932"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000505> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000504> ;
<http://purl.obolibrary.org/obo/GOREL_0000040> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000485> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000504> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000001545> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000505> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000506> <http://geneontology.org/lego/hint/layout/x> "366"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1602"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000508> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000507> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000507> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004640> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000508> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000512> <http://geneontology.org/lego/hint/layout/x> "352"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1054.0000610351562"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000514> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000513> ;
<http://purl.obolibrary.org/obo/RO_0002630> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004725> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000513> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005734> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000514> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000515> <http://geneontology.org/lego/hint/layout/x> "796"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1654"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000517> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000516> ;
<http://purl.obolibrary.org/obo/RO_0002411> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000551> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000551> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000516> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000005111> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000517> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000519> <http://geneontology.org/lego/hint/layout/x> "854"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1110"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000521> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000520> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000520> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004783> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000521> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000532> <http://geneontology.org/lego/hint/layout/x> "822"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "1618"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000534> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000533> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003700> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000533> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000000386> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000534> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000551> <http://geneontology.org/lego/hint/layout/x> "2388"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "3712"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000552> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006366> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-02-01"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/5666dc6c00000094/5666dc6c00000552> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0005034> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0009927> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043424> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GOREL_0000040> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<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> .
_:t379503 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000408> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000396> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002213 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379504 <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/S000005111> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005111"^^<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> .
_:t379505 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002630> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000512> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002408 replaced by RO:0002630" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379506 <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/5666dc6c00000094/5666dc6c00000408> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000409> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379507 <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/S000000386> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SMP1 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> .
_:t379508 <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/5666dc6c00000094/5666dc6c00000098> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000099> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379509 <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/S000005314> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005314"^^<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> .
_:t379510 <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/S000000152> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "PTC3 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> .
_:t379511 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000366> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379512 <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/5666dc6c00000094/5666dc6c00000423> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000425> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379513 <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/S000003996> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SSK1 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> .
_:t379514 <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/S000004103> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "HOG1 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> .
_:t379515 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002630> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000380> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002408 replaced by RO:0002630" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379516 <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/S000003664> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "PBS2 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> .
_:t379517 <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/S000002394> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "YPD1 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> .
_:t379518 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002630> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000384> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002408 replaced by RO:0002630" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379519 <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/S000004640> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000004640"^^<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> .
_:t379520 <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/5666dc6c00000094/5666dc6c00000408> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000423> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379521 <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/5666dc6c00000094/5666dc6c00000532> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000533> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379522 <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/S000002164> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000002164"^^<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> .
_:t379523 <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/S000001409> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SLN1 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> .
_:t379524 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000519> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379525 <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/5666dc6c00000094/5666dc6c00000512> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000513> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379526 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000369> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379527 <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/5666dc6c00000094/5666dc6c00000503> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000504> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379528 <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/S000004640> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MSN2 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> .
_:t379529 <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/S000000669> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SSK22 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> .
_:t379530 <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/5666dc6c00000094/5666dc6c00000519> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000521> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379531 <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/5666dc6c00000094/5666dc6c00000515> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000551> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379532 <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/5666dc6c00000094/5666dc6c00000396> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000398> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379533 <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/S000004783> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000004783"^^<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> .
_:t379534 <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/5666dc6c00000094/5666dc6c00000493> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000494> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379535 <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/S000000669> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000000669"^^<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> .
_:t379536 <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/S000005734> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "PTP2 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> .
_:t379537 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000532> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379538 <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/5666dc6c00000094/5666dc6c00000396> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000397> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379539 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000506> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379540 <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/S000004103> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000004103"^^<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> .
_:t379541 <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/5666dc6c00000094/5666dc6c00000551> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000552> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379542 <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/5666dc6c00000094/5666dc6c00000384> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000385> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379543 <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/5666dc6c00000094/5666dc6c00000515> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000516> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379544 <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/5666dc6c00000094/5666dc6c00000532> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000534> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379545 <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/5666dc6c00000094/5666dc6c00000363> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000364> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379546 <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/5666dc6c00000094/5666dc6c00000515> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000517> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379547 <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/5666dc6c00000094/5666dc6c00000366> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000367> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379548 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/GOREL_0002010> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000485> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379549 <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/5666dc6c00000094/5666dc6c00000506> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000507> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379550 <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/S000003996> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000003996"^^<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> .
_:t379551 <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/S000001545> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000001545"^^<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> .
_:t379552 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000396> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000366> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379553 <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/5666dc6c00000094/5666dc6c00000519> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000520> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379554 <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/5666dc6c00000094/5666dc6c00000503> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000505> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379555 <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/5666dc6c00000094/5666dc6c00000506> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000508> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379556 <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/S000000386> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000000386"^^<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> .
_:t379557 <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/5666dc6c00000094/5666dc6c00000512> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000514> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379558 <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/S000004783> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "HOT1 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> .
_:t379559 <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/S000000920> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SHO1 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> .
_:t379560 <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/S000000920> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000000920"^^<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> .
_:t379561 <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/S000005314> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SSK2 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> .
_:t379562 <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/5666dc6c00000094/5666dc6c00000369> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000370> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379563 <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/S000003664> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000003664"^^<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> .
_:t379564 <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/S000005111> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SKO1 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> .
_:t379565 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000396> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000369> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379566 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000363> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000361> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379567 <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/5666dc6c00000094/5666dc6c00000366> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000368> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379568 <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/S000000152> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000000152"^^<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> .
_:t379569 <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/5666dc6c00000094/5666dc6c00000423> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000424> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379570 <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/5666dc6c00000094/5666dc6c00000408> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000410> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379571 <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/5666dc6c00000094/5666dc6c00000380> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000381> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379572 <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/5666dc6c00000094/5666dc6c00000493> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000495> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379573 <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/5666dc6c00000094/5666dc6c00000361> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000362> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379574 <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/5666dc6c00000094/5666dc6c00000380> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000382> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379575 <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/5666dc6c00000094/5666dc6c00000098> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000100> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-08"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t379576 <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/S000001409> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000001409"^^<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> .
_:t379577 <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/S000002394> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000002394"^^<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> .
_:t379578 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000515> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2023-03-16: RO:0002406 replaced by RO:0002629" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0001-5472-917X"^^<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> .
_:t379579 <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/S000002164> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "PTC1 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> .
_:t379580 <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/S000005734> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005734"^^<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> .
_:t379581 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002629> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5666dc6c00000094/5666dc6c00000493> ;