forked from geneontology/noctua-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5667fdd400000077.ttl
1505 lines (1221 loc) · 230 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/modelstate> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/BFO_0000050> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/BFO_0000066> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002333> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/x> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/y> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/json-model> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/GO_0005515> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002233> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002406> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002408> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.geneontology.org/formats/oboInOwl#id> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/RO_0002411> 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://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_0002212> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/GO_0005942> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0016301> 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/ECO_0000015> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0000045> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0016236> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0034497> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004197> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0032403> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000021> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043241> 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/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://purl.obolibrary.org/obo/GO_0000407> a <http://www.w3.org/2002/07/owl#Class> .
<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_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://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/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/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/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://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/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://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/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/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://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://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/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://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/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<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/json-model> "{\"id\":\"gomodel:5667fdd400000077\",\"individuals\":[{\"id\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061650\",\"label\":\"ubiquitin-like protein conjugating enzyme activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"459.8518337673611\"},{\"key\":\"hint-layout-x\",\"value\":\"776.2666558159722\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000251\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000145\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061739\",\"label\":\"protein lipidation involved in autophagosome assembly\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"1566.22216796875\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"469.9259440104167\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000469\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005167\",\"label\":\"ATG4 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0051697\",\"label\":\"protein delipidation\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"417.77777777777777\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1997.5999891493057\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000467\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:11038174\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000251\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"source\",\"value\":\"PMID:19995911 \"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004197\",\"label\":\"cysteine-type endopeptidase activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"136.88888888888889\"},{\"key\":\"hint-layout-x\",\"value\":\"1913.4814995659724\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000462\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:11038174\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000466\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005167\",\"label\":\"ATG4 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000357\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000356\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034045\",\"label\":\"pre-autophagosomal structure membrane\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0072657\",\"label\":\"protein localization to membrane\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"2517.066650390625\"},{\"key\":\"hint-layout-y\",\"value\":\"974.11669921875\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000353\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000352\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"886.5185275607638\"},{\"key\":\"hint-layout-x\",\"value\":\"1469.0370551215276\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000249\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001068\",\"label\":\"in vitro protein kinase assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:19995911 \"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000248\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006389\",\"label\":\"ATG13 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000247\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000003827\",\"label\":\"TOR1 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000246\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016301\",\"label\":\"kinase activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"47\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"996\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000245\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:20154084\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000244\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:20154084\"},{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000243\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006021\",\"label\":\"ATG21 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"739\"},{\"key\":\"hint-layout-x\",\"value\":\"2828\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000457\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:11100732\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000456\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:10233150\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000240\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"source\",\"value\":\"PMID:16421251\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000348\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"691\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1106\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000191\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000239\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000332\",\"label\":\"ATG14 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000238\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005942\",\"label\":\"phosphatidylinositol 3-kinase complex\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000237\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000236\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-x\",\"value\":\"2935\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"970\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000234\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000001917\",\"label\":\"ATG18 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000233\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001085\",\"label\":\"in vivo protein kinase assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:24905091\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000232\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000004769\",\"label\":\"ATG16 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000231\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0051260\",\"label\":\"protein homooligomerization\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"290\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"744\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000230\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:10508157\"},{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000335\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000002308\",\"label\":\"ATG9 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000333\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006389\",\"label\":\"ATG13 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000168\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000004769\",\"label\":\"ATG16 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000227\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000003965\",\"label\":\"ATG10 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061651\",\"label\":\"Atg12 conjugating enzyme activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"116\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"279\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000225\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000001214\",\"label\":\"ATG7 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019779\",\"label\":\"Atg8 activating enzyme activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-x\",\"value\":\"275\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"334\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000223\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000001214\",\"label\":\"ATG7 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000222\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019778\",\"label\":\"Atg12 activating enzyme activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"9\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"99\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000242\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:16421251\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019786\",\"label\":\"Atg8-specific protease activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"1\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"291\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000188\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005167\",\"label\":\"ATG4 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000189\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000179\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000178\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000004769\",\"label\":\"ATG16 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0043241\",\"label\":\"protein complex disassembly\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"252\"},{\"key\":\"hint-layout-x\",\"value\":\"1607.9999457465276\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016301\",\"label\":\"kinase activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"523.9110785590277\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"979.4666341145834\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000213\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000169\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019777\",\"label\":\"Atg12 transferase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"115\"},{\"key\":\"hint-layout-x\",\"value\":\"575\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0032403\",\"label\":\"protein complex binding\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"176.59255642361111\"},{\"key\":\"hint-layout-x\",\"value\":\"1163.8222113715278\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000316\",\"type\":[{\"type\":\"class\",\"id\":\"GO:1990316\",\"label\":\"ATG1/ULK1 kinase complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000241\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:16421251\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000310\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006070\",\"label\":\"ATG5 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019209\",\"label\":\"kinase activator activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"600\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-x\",\"value\":\"14\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000249\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005290\",\"label\":\"ATG3 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000309\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005500\",\"label\":\"ARG8 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000152\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000250\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001068\",\"label\":\"in vitro protein kinase assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:19995911 \"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000475\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000021\",\"label\":\"physical interaction evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:15743910\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000474\",\"type\":[{\"type\":\"class\",\"id\":\"GO:1990316\",\"label\":\"ATG1/ULK1 kinase complex\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000473\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:22885598\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000472\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:11149920\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000471\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005829\",\"label\":\"cytosol\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000470\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:11038174\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000045\",\"label\":\"autophagosome assembly\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"735\"},{\"key\":\"hint-layout-x\",\"value\":\"1437\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000259\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019787\",\"label\":\"ubiquitin-like protein transferase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"1168.8888346354167\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"454.6666666666667\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]}],\"facts\":[{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000222\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000223\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000456\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000353\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"RO:0002406\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/567b544200000234\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000352\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000243\",\"property\":\"RO:0002212\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000244\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000357\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000356\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000169\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"property\":\"RO:0002408\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000225\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000457\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000246\",\"property\":\"RO:0002408\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000251\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000310\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000246\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/567b544200000247\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000250\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000191\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"RO:0002408\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000222\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000189\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"property\":\"RO:0002406\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000213\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000168\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000333\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000473\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"property\":\"RO:0002406\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000471\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000472\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000259\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/567b544200000237\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000241\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000335\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000348\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000316\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000233\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000469\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000470\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/567b544200000238\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000242\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000188\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000462\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"property\":\"RO:0002406\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000179\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000309\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000152\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000227\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000230\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000474\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000475\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000231\",\"property\":\"RO:0002411\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000466\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000467\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000251\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000178\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000145\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000246\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/567b544200000248\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000249\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000231\",\"property\":\"RO:0002233\",\"object\":\"gomodel:5667fdd400000077/567b544200000232\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000249\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000243\",\"property\":\"RO:0002213\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000245\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"RO:0002333\",\"object\":\"gomodel:5667fdd400000077/567b544200000239\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000240\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]}],\"properties\":[{\"type\":\"property\",\"id\":\"BFO:0000066\",\"label\":\"occurs in\"},{\"type\":\"property\",\"id\":\"RO:0002233\",\"label\":\"has input\"},{\"type\":\"property\",\"id\":\"RO:0002408\",\"label\":\"directly inhibits\"},{\"type\":\"property\",\"id\":\"RO:0002212\",\"label\":\"negatively regulates\"},{\"type\":\"property\",\"id\":\"RO:0002213\",\"label\":\"positively_regulates\"},{\"type\":\"property\",\"id\":\"RO:0002411\",\"label\":\"causally upstream of\"},{\"type\":\"property\",\"id\":\"RO:0002406\",\"label\":\"directly activates\"},{\"type\":\"property\",\"id\":\"BFO:0000050\",\"label\":\"part_of\"},{\"type\":\"property\",\"id\":\"RO:0002333\",\"label\":\"enabled_by\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"100\"},{\"key\":\"hint-layout-y\",\"value\":\"100\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"GOC:kltm\"},{\"key\":\"state\",\"value\":\"development\"},{\"key\":\"title\",\"value\":\"Yeast macroautophagy\"}]}"^^<http://www.w3.org/2001/XMLSchema#string> , "{\"id\":\"gomodel:5667fdd400000077\",\"individuals\":[{\"id\":\"gomodel:5667fdd400000077/567b544200000248\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006389\",\"label\":\"ATG13 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000249\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001068\",\"label\":\"in vitro protein kinase assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:19995911 \"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000247\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000003827\",\"label\":\"TOR1 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000227\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000003965\",\"label\":\"ATG10 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061651\",\"label\":\"Atg12 conjugating enzyme activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"279\"},{\"key\":\"hint-layout-y\",\"value\":\"116\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000225\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000001214\",\"label\":\"ATG7 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019779\",\"label\":\"Atg8 activating enzyme activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"334\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"275\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000223\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000001214\",\"label\":\"ATG7 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000222\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019778\",\"label\":\"Atg12 activating enzyme activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"9\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"99\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000259\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000543\",\"label\":\"ATG22 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000469\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005167\",\"label\":\"ATG4 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0051697\",\"label\":\"protein delipidation\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1997.5999891493057\"},{\"key\":\"hint-layout-y\",\"value\":\"417.77777777777777\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000467\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:11038174\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000466\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005167\",\"label\":\"ATG4 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004197\",\"label\":\"cysteine-type endopeptidase activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"136.88888888888889\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"1913.4814995659724\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000356\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034045\",\"label\":\"pre-autophagosomal structure membrane\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000169\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000168\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000004769\",\"label\":\"ATG16 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0032403\",\"label\":\"protein complex binding\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"176.59255642361111\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1163.8222113715278\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000237\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000236\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"970\"},{\"key\":\"hint-layout-x\",\"value\":\"2935\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000234\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000001917\",\"label\":\"ATG18 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000233\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001085\",\"label\":\"in vivo protein kinase assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24905091\"},{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000232\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000004769\",\"label\":\"ATG16 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000231\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0051260\",\"label\":\"protein homooligomerization\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"290\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"744\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000230\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"source\",\"value\":\"PMID:10508157\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000649\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005186\",\"label\":\"ATG2 Scer\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"532.4999847412109\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"hint-layout-y\",\"value\":\"716\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000294\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000094\",\"label\":\"biological assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"source\",\"value\":\"PMID:17021250\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"691\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1106\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000316\",\"type\":[{\"type\":\"class\",\"id\":\"GO:1990316\",\"label\":\"ATG1/ULK1 kinase complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000191\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016236\",\"label\":\"macroautophagy\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"6433.86669921875\"},{\"key\":\"hint-layout-x\",\"value\":\"5394.666015625\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000301\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001225\",\"label\":\"knockout evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:17021250\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000213\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000310\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006070\",\"label\":\"ATG5 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000457\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:11100732\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000456\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:10233150\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000259\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019787\",\"label\":\"ubiquitin-like protein transferase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"hint-layout-y\",\"value\":\"493.6666564941406\"},{\"key\":\"hint-layout-x\",\"value\":\"1148.88330078125\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0072657\",\"label\":\"protein localization to membrane\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"2517.066650390625\"},{\"key\":\"hint-layout-y\",\"value\":\"974.11669921875\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000353\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000352\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034497\",\"label\":\"protein localization to pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1469.0370551215276\"},{\"key\":\"hint-layout-y\",\"value\":\"886.5185275607638\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000251\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000152\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000187\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0097352\",\"label\":\"autophagosome maturation\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"hint-layout-x\",\"value\":\"9380.267578125\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"5677.3330078125\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000309\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005500\",\"label\":\"ARG8 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000230\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061753\",\"label\":\"substrate localization to autophagosome\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-x\",\"value\":\"3021.8662109375\"},{\"key\":\"hint-layout-y\",\"value\":\"5149.86669921875\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000181\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016240\",\"label\":\"autophagosome docking\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"5421.86669921875\"},{\"key\":\"hint-layout-x\",\"value\":\"7633.3330078125\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000191\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000357\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000174\",\"label\":\"ATG8 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000462\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:11038174\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000348\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000249\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005290\",\"label\":\"ATG3 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061650\",\"label\":\"ubiquitin-like protein conjugating enzyme activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"776.2666558159722\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"459.8518337673611\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000258\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034639\",\"label\":\"L-amino acid efflux transmembrane transporter activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"5514.66650390625\"},{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"hint-layout-x\",\"value\":\"11207.466796875\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000233\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005442\",\"label\":\"ATG19 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000232\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005515\",\"label\":\"protein binding\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"5231.2664794921875\"},{\"key\":\"hint-layout-x\",\"value\":\"2151\"},{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000145\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061739\",\"label\":\"protein lipidation involved in autophagosome assembly\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1566.22216796875\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"469.9259440104167\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000238\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005942\",\"label\":\"phosphatidylinositol 3-kinase complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000189\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000407\",\"label\":\"pre-autophagosomal structure\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000188\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000005167\",\"label\":\"ATG4 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019786\",\"label\":\"Atg8-specific protease activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"1\"},{\"key\":\"hint-layout-y\",\"value\":\"291\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016301\",\"label\":\"kinase activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"523.9110785590277\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"979.4666341145834\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000239\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000000332\",\"label\":\"ATG14 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000045\",\"label\":\"autophagosome assembly\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"5125.3330078125\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"5015.466796875\"},{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000251\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"source\",\"value\":\"PMID:19995911 \"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000250\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0001068\",\"label\":\"in vitro protein kinase assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:19995911 \"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000471\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005829\",\"label\":\"cytosol\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000472\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:11149920\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/581e072c00000260\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000329\",\"label\":\"fungal-type vacuole membrane\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-11-07\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000335\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000002308\",\"label\":\"ATG9 Scer\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000333\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006389\",\"label\":\"ATG13 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019209\",\"label\":\"kinase activator activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"hint-layout-y\",\"value\":\"600\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"14\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000473\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"source\",\"value\":\"PMID:22885598\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000240\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"source\",\"value\":\"PMID:16421251\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000244\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:20154084\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000475\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000021\",\"label\":\"physical interaction evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:15743910\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000474\",\"type\":[{\"type\":\"class\",\"id\":\"GO:1990316\",\"label\":\"ATG1/ULK1 kinase complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000179\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0034274\",\"label\":\"Atg12-Atg5-Atg16 complex\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000178\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000004769\",\"label\":\"ATG16 Scer\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-09\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0043241\",\"label\":\"protein complex disassembly\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"1607.9999457465276\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"252\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000470\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-11\"},{\"key\":\"source\",\"value\":\"PMID:11038174\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000246\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016301\",\"label\":\"kinase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"47\"},{\"key\":\"hint-layout-y\",\"value\":\"996\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000245\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:20154084\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"id\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0019777\",\"label\":\"Atg12 transferase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"115\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"575\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000243\",\"type\":[{\"type\":\"class\",\"id\":\"SGD:S000006021\",\"label\":\"ATG21 Scer\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"2828\"},{\"key\":\"hint-layout-y\",\"value\":\"739\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000242\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:16421251\"},{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]},{\"id\":\"gomodel:5667fdd400000077/567b544200000241\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:16421251\"},{\"key\":\"date\",\"value\":\"2016-01-04\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"}]}],\"facts\":[{\"subject\":\"gomodel:5667fdd400000077/581e072c00000187\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/581e072c00000258\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/567b544200000237\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000241\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000232\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/581e072c00000233\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000259\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:5667fdd400000077/581e072c00000191\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000246\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000251\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000353\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000189\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000471\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000472\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"RO:0002412\",\"property-label\":\"immediately causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000258\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/581e072c00000259\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/581e072c00000301\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000181\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:5667fdd400000077/581e072c00000191\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000169\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000243\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000245\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000335\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000316\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000233\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000469\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000470\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000213\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000357\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000474\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000475\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000222\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/567b544200000239\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000240\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000348\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000258\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/581e072c00000260\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/581e072c00000294\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000310\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000236\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/567b544200000238\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000242\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000246\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/567b544200000248\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000249\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000309\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000352\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000224\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000225\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000457\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000230\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000466\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000467\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000181\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/581e072c00000187\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000168\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/581e072c00000181\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000187\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:5667fdd400000077/581e072c00000191\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000258\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000231\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000145\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000191\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000249\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000246\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/567b544200000247\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000250\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000231\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/567b544200000232\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000649\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/567b544200000234\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000356\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000248\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000251\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000178\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000143\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000152\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/581e072c00000232\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:5667fdd400000077/581e072c00000230\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000320\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000351\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000222\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000223\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000456\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000332\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000333\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000473\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000271\",\"property\":\"RO:0002411\",\"property-label\":\"causally upstream of\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000167\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000187\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000188\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/5667fdd400000462\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000226\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000227\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000230\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000347\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000365\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000177\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000179\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-09\"}]},{\"subject\":\"gomodel:5667fdd400000077/567b544200000243\",\"property\":\"RO:0002212\",\"property-label\":\"negatively_regulates\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000465\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:5667fdd400000077/567b544200000244\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2016-01-04\"}]},{\"subject\":\"gomodel:5667fdd400000077/5667fdd400000468\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:5667fdd400000077/5667fdd400000355\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"date\",\"value\":\"2015-12-11\"}]}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0002-4187-2863\"},{\"key\":\"title\",\"value\":\"Yeast macroautophagy\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"GOC:kltm\"},{\"key\":\"date\",\"value\":\"2016-11-07\"}]}"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:5667fdd400000077"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://www.w3.org/2002/07/owl#versionIRI> <http://model.geneontology.org/5667fdd400000077> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2002/07/owl#imports> <http://purl.obolibrary.org/obo/go/extensions/go-lego.owl> ;
<http://purl.org/dc/elements/1.1/title> "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> , "http://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/5667fdd400000143> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000145> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000213> ;
<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_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> , "http://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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000169> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000168> ;
<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_0002408> <http://model.geneontology.org/5667fdd400000077/5667fdd400000177> ;
<http://purl.obolibrary.org/obo/RO_0002412> <http://model.geneontology.org/5667fdd400000077/5667fdd400000258> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0032403> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "http://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/5667fdd400000168> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004769> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000179> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000178> ;
<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> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043241> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> , "http://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/5667fdd400000178> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/sgd/S000004769> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000189> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000188> ;
<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_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> , "http://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> "http://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> "http://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> "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000223> ;
<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_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> , "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000225> ;
<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_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> , "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000227> ;
<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_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> , "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000471> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000249> ;
<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_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> , "http://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> "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000259> ;
<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_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> , "http://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> "http://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> , "http://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> "http://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> "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000316> ;
<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_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> , "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000474> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000333> ;
<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_0002406> <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> , "http://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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000348> ;
<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/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> , "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/5667fdd400000352> ;
<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/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> , "http://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> "http://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> "http://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://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://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/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> , "http://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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
<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/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> , "http://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> "http://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> "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000466> ;
<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_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> , "http://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> "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/5667fdd400000469> ;
<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_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> , "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> , "http://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> "http://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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/567b544200000237> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/567b544200000239> ;
<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_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> , "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> , "http://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> "http://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> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/567b544200000247> ;
<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_0002233> <http://model.geneontology.org/5667fdd400000077/567b544200000248> ;
<http://purl.obolibrary.org/obo/RO_0002408> <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> , "http://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> "http://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> "http://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> "http://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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
<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/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> "http://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://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/581e072c00000191> ;
<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/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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/5667fdd400000077/5667fdd400000365> ;
<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> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061753> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/581e072c00000233> ;
<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_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> "http://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> "http://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://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/5667fdd400000077/581e072c00000260> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/5667fdd400000077/581e072c00000259> ;
<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> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0034639> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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> "http://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_0002411> <http://model.geneontology.org/5667fdd400000077/59cde02c00000110> ;
<http://purl.obolibrary.org/obo/RO_0002418> <http://model.geneontology.org/5667fdd400000077/59cde02c00000113> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030399> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> "http://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_0000094> 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_0000329> 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_0019777> a <http://www.w3.org/2002/07/owl#Class> .
<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_0019786> 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_0034045> 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_0034639> 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_0051697> 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_0061739> 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_0072657> 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://www.w3.org/2000/01/rdf-schema#label> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/title> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/contributor> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/date> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/source> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2001/XMLSchema#string> a <http://www.w3.org/2000/01/rdf-schema#Datatype> .
_:t43095 <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> .
_:t43096 <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/S000001917> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG18 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> .
_:t43097 <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/581e072c00000187> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/59cde02c00000109> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> .
_:t43098 <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/581e072c00000230> ;
<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> "http://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> .
_:t43099 <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> "http://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> .
_:t43100 <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> "http://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> .
_:t43101 <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> "http://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> .
_:t43102 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/5667fdd400000077/581e072c00000301> ;
<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/581e072c00000258> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/581e072c00000259> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> .
_:t43103 <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> "http://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> .
_:t43104 <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/59cde02c00000109> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/59cde02c00000112> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> .
_:t43105 <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> "http://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> .
_:t43106 <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/59cde02c00000112> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/59cde02c00000110> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> .
_:t43107 <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/S000002308> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000002308"^^<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> .
_:t43108 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002418> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/5667fdd400000077/59cde02c00000112> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/59cde02c00000113> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://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> .
_:t43109 <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/59cde02c00000113> ;
<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> "http://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> .
_:t43110 <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/S000002308> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG9 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> .
_:t43111 <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/S000003827> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000003827"^^<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> .
_:t43112 <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/S000003827> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "TOR1 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> .
_:t43113 <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> .
_:t43114 <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> .
_:t43115 <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> .
_:t43116 <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/S000004769> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG16 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> .
_:t43117 <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> .
_:t43118 <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/S000000174> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG8 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> .
_:t43119 <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> .
_:t43120 <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> .
_:t43121 <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/S000005186> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG2 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> .
_:t43122 <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/S000005290> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005290"^^<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> .
_:t43123 <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/S000005290> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG3 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> .
_:t43124 <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/S000005442> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005442"^^<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> .
_:t43125 <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> .
_:t43126 <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/S000005500> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000005500"^^<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> .
_:t43127 <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/S000005500> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ARG8 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> .
_:t43128 <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/S000006021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000006021"^^<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> .
_:t43129 <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/S000000332> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000000332"^^<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> .
_:t43130 <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/S000006021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG21 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> .
_:t43131 <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> .
_:t43132 <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/S000006070> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG5 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> .
_:t43133 <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/S000006389> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "SGD:S000006389"^^<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> .
_:t43134 <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/S000006389> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "ATG13 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> .
_:t43135 <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/5667fdd400000143> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/5667fdd400000077/5667fdd400000145> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;