forked from geneontology/noctua-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path567b544200000029.ttl
1316 lines (1070 loc) · 179 KB
/
567b544200000029.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/567b544200000029> 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/GO_0003674> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002333> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/x> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/y> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/json-model> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/ECO_0000314> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/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://geneontology.org/lego/evidence-with> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/ECO_0000315> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000304> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043161> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005634> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000305> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0000981> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0006366> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/RO_0002234> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/GO_0016236> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000033> 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/CL_0000235> <http://www.geneontology.org/formats/oboInOwl#id> "CL:0000235"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030163> a <http://www.w3.org/2002/07/owl#Class> .
<http://www.informatics.jax.org/accession/MGI:MGI:1277186> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1277186"^^<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 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:1921494> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1921494"^^<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 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029> <http://geneontology.org/lego/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/json-model> "{\"id\":\"gomodel:567b544200000029\",\"individuals\":[{\"id\":\"gomodel:567b544200000029/567b544200000109\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000059\",\"type\":[{\"type\":\"class\",\"id\":\"NCBITaxon:1773\",\"label\":\"Mycobacterium tuberculosis\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000058\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000057\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000056\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000055\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000054\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000053\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061739\",\"label\":\"protein lipidation involved in autophagosome assembly\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"439\"},{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"154\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000120\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000017\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000016\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1309998\",\"label\":\"Marco Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000015\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000014\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:98257\",\"label\":\"Msr1 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000013\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000012\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000011\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000010\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000047\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"with\",\"value\":\"MGI:3587769|MGI:1934631\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000046\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:107931\",\"label\":\"Sqstm1 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000045\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"with\",\"value\":\"MGI:3587769|MGI:1934631\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000044\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000043\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000042\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0030163\",\"label\":\"protein catabolic process\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"395\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"537\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000008\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000040\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"with\",\"value\":\"MGI:3587769|MGI:1934631\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000006\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000005\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000004\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000002\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000001\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000039\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000038\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000037\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000036\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000035\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1921494\",\"label\":\"Atg7 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000034\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003674\",\"label\":\"molecular_function\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"hint-layout-y\",\"value\":\"41\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"76\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000033\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000032\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006909\",\"label\":\"phagocytosis\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"0.6666717529296875\"},{\"key\":\"hint-layout-x\",\"value\":\"1592.3333282470703\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000031\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000030\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016236\",\"label\":\"macroautophagy\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"405\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"42\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000099\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:107931\",\"label\":\"Sqstm1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000098\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005515\",\"label\":\"protein binding\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"684.9999847412109\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"832.3333282470703\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000097\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000096\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000095\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000094\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000093\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1277186\",\"label\":\"Atg5 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000092\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003674\",\"label\":\"molecular_function\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"764.9999847412109\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"547\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000091\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000090\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000315\",\"label\":\"mutant phenotype evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000137\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000136\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000135\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000981\",\"label\":\"RNA polymerase II transcription factor activity, sequence-specific DNA binding\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"248\"},{\"key\":\"hint-layout-x\",\"value\":\"839.9999542236328\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000134\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000133\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000132\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000131\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000007\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:108420\",\"label\":\"Nfe2l2 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000089\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000088\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000087\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1915091\",\"label\":\"Atg3 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000086\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003674\",\"label\":\"molecular_function\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"871\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"192\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000083\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000341\",\"label\":\"specific protein inhibition by antibody evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000082\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000341\",\"label\":\"specific protein inhibition by antibody evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000081\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000020\",\"label\":\"specific protein inhibition evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000080\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000020\",\"label\":\"specific protein inhibition evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000128\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000127\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000126\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006366\",\"label\":\"transcription from RNA polymerase II promoter\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"398.99998474121094\"},{\"key\":\"hint-layout-x\",\"value\":\"1605\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000125\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000124\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000123\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:108420\",\"label\":\"Nfe2l2 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000122\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000121\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000009\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006366\",\"label\":\"transcription from RNA polymerase II promoter\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"233\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"1121\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000079\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000078\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035264\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000077\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000076\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:98257\",\"label\":\"Msr1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000075\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0008329\",\"label\":\"signaling pattern recognition receptor activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-y\",\"value\":\"21\"},{\"key\":\"hint-layout-x\",\"value\":\"824.0000152587891\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000072\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000071\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000070\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000119\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000118\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0043161\",\"label\":\"proteasome-mediated ubiquitin-dependent protein catabolic process\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"1109.9999542236328\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"472.99998474121094\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000117\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000116\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005634\",\"label\":\"nucleus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000115\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:108420\",\"label\":\"Nfe2l2 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000114\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0000981\",\"label\":\"RNA polymerase II transcription factor activity, sequence-specific DNA binding\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"544.9999847412109\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1354.9999542236328\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000113\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000112\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:108420\",\"label\":\"Nfe2l2 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000111\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000110\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000069\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1309998\",\"label\":\"Marco Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000068\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0008329\",\"label\":\"signaling pattern recognition receptor activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1345.5999755859375\"},{\"key\":\"hint-layout-y\",\"value\":\"306\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000067\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000066\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1914693\",\"label\":\"Map1lc3b Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000065\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000064\",\"type\":[{\"type\":\"class\",\"id\":\"NCBITaxon:1765\",\"label\":\"Mycobacterium bovis\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000063\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000062\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000314\",\"label\":\"direct assay evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000061\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000060\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0006909\",\"label\":\"phagocytosis\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1308.7333984375\"},{\"key\":\"hint-layout-y\",\"value\":\"73\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/568b0f9600000022\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-01-05\"},{\"key\":\"source\",\"value\":\"PMID:2403564\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000107\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000106\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000105\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000304\",\"label\":\"traceable author statement used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:24035364\"},{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000104\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000103\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1858732\",\"label\":\"Keap1 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000102\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005515\",\"label\":\"protein binding\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"hint-layout-x\",\"value\":\"1123.9999542236328\"},{\"key\":\"hint-layout-y\",\"value\":\"787.9999847412109\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000101\",\"type\":[{\"type\":\"class\",\"id\":\"CL:0000235\",\"label\":\"macrophage\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000100\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:1858732\",\"label\":\"Keap1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:567b544200000029/567b544200000108\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000305\",\"label\":\"curator inference used in manual assertion\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-12-28\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:24035364\"}]}],\"facts\":[{\"subject\":\"gomodel:567b544200000029/567b544200000060\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000064\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000065\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000075\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000076\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000079\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000102\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000118\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000125\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000126\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/568b0f9600000016\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000017\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000034\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000035\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000040\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000030\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000031\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000037\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000042\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000030\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000045\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000086\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000053\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000091\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000126\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000127\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000128\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/568b0f9600000009\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/568b0f9600000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000011\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000042\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000043\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000044\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000068\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000032\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000082\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000068\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000069\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000071\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000053\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000054\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000055\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000042\",\"property\":\"RO:0002408\",\"object\":\"gomodel:567b544200000029/567b544200000098\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000108\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/568b0f9600000009\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000029/567b544200000075\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000118\",\"property\":\"RO:0002408\",\"object\":\"gomodel:567b544200000029/567b544200000114\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000121\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000053\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000066\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000067\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000042\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000046\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000047\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000118\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000123\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000124\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000126\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000131\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000132\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000092\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000053\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000097\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000034\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000053\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000057\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000135\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000137\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000004\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000098\",\"property\":\"RO:0002408\",\"object\":\"gomodel:567b544200000029/567b544200000102\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000110\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000068\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000060\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000083\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000092\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000093\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000096\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000135\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000136\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000006\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000135\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/568b0f9600000007\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000008\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000032\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000059\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000062\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000102\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000103\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000111\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000053\",\"property\":\"BFO:0000063\",\"object\":\"gomodel:567b544200000029/567b544200000042\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000056\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000098\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000101\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000105\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000126\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000029/567b544200000068\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000133\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000075\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000032\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000080\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000114\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000029/567b544200000126\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000134\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000032\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000033\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000038\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000086\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000087\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000090\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000053\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000030\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000058\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000135\",\"property\":\"RO:0002406\",\"object\":\"gomodel:567b544200000029/568b0f9600000009\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000022\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000114\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000115\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000122\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000034\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000036\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000039\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000114\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000116\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000117\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000060\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000061\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000063\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000075\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000077\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000078\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000075\",\"property\":\"BFO:0000050\",\"object\":\"gomodel:567b544200000029/567b544200000060\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000081\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000102\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000104\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000109\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/568b0f9600000009\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/568b0f9600000014\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000015\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000086\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000088\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000089\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/568b0f9600000009\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/568b0f9600000012\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000013\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000114\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/568b0f9600000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000002\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000118\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000119\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000120\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000102\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000112\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000113\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000098\",\"property\":\"RO:0002233\",\"object\":\"gomodel:567b544200000029/567b544200000100\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000107\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000092\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000094\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000095\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000118\",\"property\":\"RO:0002408\",\"object\":\"gomodel:567b544200000029/567b544200000135\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/568b0f9600000005\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-05\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000068\",\"property\":\"BFO:0000066\",\"object\":\"gomodel:567b544200000029/567b544200000070\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000072\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]},{\"subject\":\"gomodel:567b544200000029/567b544200000098\",\"property\":\"RO:0002333\",\"object\":\"gomodel:567b544200000029/567b544200000099\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:567b544200000029/567b544200000106\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-12-28\"}]}],\"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\":\"BFO:0000063\",\"label\":\"precedes\"},{\"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\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-01-06\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"title\",\"value\":\"PMID24035364-Atg7-macrophage\"},{\"key\":\"state\",\"value\":\"development\"}]}"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:567b544200000029"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2002/07/owl#imports> <http://purl.obolibrary.org/obo/go/extensions/go-lego.owl> ;
<http://purl.org/dc/elements/1.1/title> "PMID24035364-Atg7-macrophage"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000030> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000031> ;
<http://geneontology.org/lego/hint/layout/x> "405"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "42"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016236> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000031> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000032> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000033> ;
<http://geneontology.org/lego/hint/layout/x> "1592.3333282470703"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "0.6666717529296875"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000059> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006909> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000033> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000034> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000053> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000036> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000035> ;
<http://geneontology.org/lego/hint/layout/x> "76"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "41"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://purl.obolibrary.org/obo/GO_0003674> , <http://www.w3.org/2002/07/owl#NamedIndividual> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000035> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1921494> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000036> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000037> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000038> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000039> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000040> <http://geneontology.org/lego/evidence-with> "MGI:3587769|MGI:1934631"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000042> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000030> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000043> ;
<http://geneontology.org/lego/hint/layout/x> "537"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "395"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000046> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/567b544200000029/567b544200000098> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030163> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000043> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000044> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000045> <http://geneontology.org/lego/evidence-with> "MGI:3587769|MGI:1934631"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000046> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:107931> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000047> <http://geneontology.org/lego/evidence-with> "MGI:3587769|MGI:1934631"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000053> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000030> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000054> ;
<http://geneontology.org/lego/hint/layout/x> "154"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "439"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000066> ;
<http://purl.obolibrary.org/obo/BFO_0000063> <http://model.geneontology.org/567b544200000029/567b544200000042> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061739> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000054> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000055> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000056> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000057> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000058> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000059> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/NCBITaxon_1773> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000060> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000061> ;
<http://geneontology.org/lego/hint/layout/x> "1308.7333984375"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "73"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000064> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006909> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000061> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000062> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000063> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000064> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/NCBITaxon_1765> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000065> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000066> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1914693> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000067> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000068> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000032> , <http://model.geneontology.org/567b544200000029/567b544200000060> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000070> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000069> ;
<http://geneontology.org/lego/hint/layout/x> "1345.5999755859375"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "306"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0008329> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000069> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1309998> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000070> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000071> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000072> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000075> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000032> , <http://model.geneontology.org/567b544200000029/567b544200000060> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000077> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000076> ;
<http://geneontology.org/lego/hint/layout/x> "824.0000152587891"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "21"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0008329> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000076> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:98257> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000077> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000078> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035264"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000079> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000080> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000020> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000081> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000020> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000082> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000341> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000083> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000341> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000086> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000053> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000088> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000087> ;
<http://geneontology.org/lego/hint/layout/x> "192"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "871"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://purl.obolibrary.org/obo/GO_0003674> , <http://www.w3.org/2002/07/owl#NamedIndividual> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000087> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1915091> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000088> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000089> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000090> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000091> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000092> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000053> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000094> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000093> ;
<http://geneontology.org/lego/hint/layout/x> "547"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "764.9999847412109"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://purl.obolibrary.org/obo/GO_0003674> , <http://www.w3.org/2002/07/owl#NamedIndividual> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000093> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1277186> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000094> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000095> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000096> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000097> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000098> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000101> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000099> ;
<http://geneontology.org/lego/hint/layout/x> "832.3333282470703"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "684.9999847412109"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000100> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/567b544200000029/567b544200000102> ;
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-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000099> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:107931> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000100> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1858732> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000101> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000102> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/567b544200000029/567b544200000118> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000104> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000103> ;
<http://geneontology.org/lego/hint/layout/x> "1123.9999542236328"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "787.9999847412109"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000112> ;
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-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000103> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1858732> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000104> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000105> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000106> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000107> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000108> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000109> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000110> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000111> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000112> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:108420> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000113> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000114> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000116> , <http://model.geneontology.org/567b544200000029/568b0f9600000001> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/567b544200000115> ;
<http://geneontology.org/lego/hint/layout/x> "1354.9999542236328"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "544.9999847412109"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000029/567b544200000126> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000981> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000115> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:108420> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000116> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000117> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000118> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000119> ;
<http://geneontology.org/lego/hint/layout/x> "1109.9999542236328"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "472.99998474121094"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/567b544200000123> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/567b544200000029/567b544200000114> , <http://model.geneontology.org/567b544200000029/567b544200000135> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043161> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000119> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000120> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000121> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000033> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000122> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000123> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:108420> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000124> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000125> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000126> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000127> , <http://model.geneontology.org/567b544200000029/567b544200000131> ;
<http://geneontology.org/lego/hint/layout/x> "1605"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "398.99998474121094"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/568b0f9600000016> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000029/567b544200000068> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006366> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000127> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000128> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000131> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000132> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000133> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000134> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000135> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/567b544200000136> , <http://model.geneontology.org/567b544200000029/567b544200000137> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/567b544200000029/568b0f9600000007> ;
<http://geneontology.org/lego/hint/layout/x> "839.9999542236328"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "248"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000029/568b0f9600000009> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0000981> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/567b544200000136> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/567b544200000137> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000001> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000002> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000004> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000314> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000005> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000315> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000006> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000007> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:108420> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000008> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000304> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000009> <http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/567b544200000029/568b0f9600000010> , <http://model.geneontology.org/567b544200000029/568b0f9600000012> ;
<http://geneontology.org/lego/hint/layout/x> "1121"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "233"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/567b544200000029/568b0f9600000014> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/567b544200000029/567b544200000075> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0006366> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<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/567b544200000029/568b0f9600000010> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000011> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000012> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000013> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000014> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:98257> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000015> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000016> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://www.informatics.jax.org/accession/MGI:MGI:1309998> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000017> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000022> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:2403564"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/567b544200000029/568b0f9600000023> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000305> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2016-01-05"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:24035364"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/BFO_0000063> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/ECO_0000020> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000341> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0006383> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0006909> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0008329> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/NCBITaxon_1765> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/NCBITaxon_1773> a <http://www.w3.org/2002/07/owl#Class> .
<http://www.informatics.jax.org/accession/MGI:MGI:107931> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:107931"^^<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> "Sqstm1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:108420> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:108420"^^<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> "Nfe2l2 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:1309998> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1309998"^^<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> "Marco Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:1858732> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1858732"^^<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> "Keap1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:1914693> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1914693"^^<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> "Map1lc3b Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:1915091> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1915091"^^<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 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.informatics.jax.org/accession/MGI:MGI:98257> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:98257"^^<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> "Msr1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<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> .
_:t35045 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://purl.obolibrary.org/obo/CL_0000235> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "CL:0000235"^^<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> .
_:t35046 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:1858732> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:1858732"^^<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> .
_:t35047 <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://www.informatics.jax.org/accession/MGI:MGI:1858732> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Keap1 Mmus"^^<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> .
_:t35048 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:1914693> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:1914693"^^<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> .
_:t35049 <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://www.informatics.jax.org/accession/MGI:MGI:1914693> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Map1lc3b Mmus"^^<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> .
_:t35050 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:1915091> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:1915091"^^<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> .
_:t35051 <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://www.informatics.jax.org/accession/MGI:MGI:1915091> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Atg3 Mmus"^^<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> .
_:t35052 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:1921494> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:1921494"^^<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> .
_:t35053 <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://www.informatics.jax.org/accession/MGI:MGI:1921494> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Atg7 Mmus"^^<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> .
_:t35054 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:98257> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:98257"^^<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> .
_:t35055 <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://www.informatics.jax.org/accession/MGI:MGI:98257> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Msr1 Mmus"^^<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> .
_:t35056 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:107931> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:107931"^^<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> .
_:t35057 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000037> ;
<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/567b544200000029/567b544200000030> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000031> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35058 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000038> ;
<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/567b544200000029/567b544200000032> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000033> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35059 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000062> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000029/567b544200000032> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000059> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35060 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000057> ;
<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/567b544200000029/567b544200000034> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000053> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35061 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000039> ;
<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/567b544200000029/567b544200000034> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000036> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35062 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000040> ;
<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/567b544200000029/567b544200000034> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000035> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35063 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000045> ;
<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/567b544200000029/567b544200000042> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000030> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35064 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000044> ;
<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/567b544200000029/567b544200000042> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000043> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35065 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000047> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000029/567b544200000042> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000046> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35066 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000108> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002408> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000029/567b544200000042> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000098> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35067 <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://www.informatics.jax.org/accession/MGI:MGI:107931> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Sqstm1 Mmus"^^<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> .
_:t35068 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000058> ;
<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/567b544200000029/567b544200000053> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000030> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35069 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000056> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/BFO_0000063> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000029/567b544200000053> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000042> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35070 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000055> ;
<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/567b544200000029/567b544200000053> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000054> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35071 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000067> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000029/567b544200000053> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000066> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35072 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000063> ;
<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/567b544200000029/567b544200000060> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000061> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35073 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000065> ;
<http://www.w3.org/2002/07/owl#annotatedProperty> <http://purl.obolibrary.org/obo/RO_0002233> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://model.geneontology.org/567b544200000029/567b544200000060> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000064> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35074 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000082> ;
<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/567b544200000029/567b544200000068> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000032> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35075 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000083> ;
<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/567b544200000029/567b544200000068> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000060> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35076 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000072> ;
<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/567b544200000029/567b544200000068> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000070> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35077 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000071> ;
<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/567b544200000029/567b544200000068> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000069> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35078 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://www.informatics.jax.org/accession/MGI:MGI:108420> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:108420"^^<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> .
_:t35079 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000080> ;
<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/567b544200000029/567b544200000075> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000032> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35080 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000081> ;
<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/567b544200000029/567b544200000075> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/567b544200000029/567b544200000060> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-12-28"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t35081 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/567b544200000029/567b544200000078> ;