forked from geneontology/noctua-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
55c3ef4c00000001.ttl
1497 lines (1231 loc) · 265 KB
/
55c3ef4c00000001.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/55c3ef4c00000001> a <http://www.w3.org/2002/07/owl#Ontology> .
<http://geneontology.org/lego/evidence> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/modelstate> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/BFO_0000050> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/BFO_0000066> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002333> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/x> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/y> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/json-model> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/RO_0002233> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002406> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002408> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.geneontology.org/formats/oboInOwl#id> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/RO_0002212> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/RO_0002413> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://identifiers.org/mgi/MGI:97547> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:97547"^^<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> "Pfkl Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0003872> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005524> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000266> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000002> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000015> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0008150> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/CL_0000019> 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/ECO_0005020> <http://www.geneontology.org/formats/oboInOwl#id> "ECO:0005020"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:87994> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:87994"^^<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> "Aldoa Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0004332> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0000205> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005488> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0061615> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:95640> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:95640"^^<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> "Gapdh Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/mgi/MGI:98797> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:98797"^^<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> "Tpi1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0004365> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004807> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:2441717> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:95393> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:95393"^^<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> "Eno1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/mgi/MGI:97552> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:97552"^^<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> "Pgam1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/mgi/MGI:97555> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:97555"^^<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> "Pgk1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/mgi/MGI:97604> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:97604"^^<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> "Pklr Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001> <http://geneontology.org/lego/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/json-model> "{\"id\":\"gomodel:55c3ef4c00000001\",\"individuals\":[{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000012\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"6150\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000011\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"3675\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000010\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"5700\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000038\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:11250083\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004619\",\"label\":\"phosphoglycerate mutase activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"hint-layout-x\",\"value\":\"10304\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"960\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000038\",\"value-type\":\"IRI\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000036\",\"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-08-10\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000033\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:943046\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004618\",\"label\":\"phosphoglycerate kinase activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-y\",\"value\":\"2016\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"67600.001953125\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000033\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca6c3e00000001\",\"type\":[{\"type\":\"class\",\"id\":\"CHEBI:16947\",\"label\":\"citrate(3-)\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:kltm\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000009\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"8328\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000048\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:17626619\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000047\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:8172601\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000046\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000008\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000007\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000006\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000042\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:2693209\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000041\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:2693209\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000040\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:25637246\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000028\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000001\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0008150\",\"label\":\"biological_process\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"hint-layout-y\",\"value\":\"1060\"},{\"key\":\"hint-layout-x\",\"value\":\"6956.2666015625\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000026\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:3796661\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004365\",\"label\":\"glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"2544\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000026\",\"value-type\":\"IRI\"},{\"key\":\"hint-layout-x\",\"value\":\"7408\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000024\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:204065\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000022\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:98797\",\"label\":\"Tpi1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"190\"},{\"key\":\"hint-layout-x\",\"value\":\"5126\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004807\",\"label\":\"triose-phosphate isomerase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"5237.3330078125\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"2725.3330078125\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000020\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GOC:dph\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000039\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:25637246\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000038\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000037\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:943046\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000036\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000035\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:7323947\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000034\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000033\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000032\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000031\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000030\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:11250083\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000018\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000017\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:604178\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000016\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"9320\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000015\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:87994\",\"label\":\"Aldoa Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"7058\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004332\",\"label\":\"fructose-bisphosphate aldolase activity\"}],\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000017\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"1392\"},{\"key\":\"hint-layout-x\",\"value\":\"4320\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061615\",\"label\":\"glycolytic process through fructose-6-phosphate\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"4658.13330078125\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000020\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"hint-layout-y\",\"value\":\"176\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000008\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004332\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000029\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:7295297\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000028\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:7295297\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000026\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:4736978\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000025\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:4736978\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000021\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6446714\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000008\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6446714\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000007\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"302\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"2660\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000006\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"6\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"3484\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003872\",\"label\":\"6-phosphofructokinase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"26.25\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000009\",\"value-type\":\"IRI\"},{\"key\":\"hint-layout-x\",\"value\":\"147.5\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000004\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"470\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"2280\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005524\",\"label\":\"ATP binding\"}],\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000008\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"1858\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"1406.666748046875\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000016\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000015\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"4350\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000013\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000012\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000011\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000010\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000002\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000003\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000004\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000005\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0008150\",\"label\":\"biological_process\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"1040\"},{\"key\":\"hint-layout-x\",\"value\":\"7726.13330078125\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000010\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000020\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca7fba00000004\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:95640\",\"label\":\"Gapdh Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"hint-layout-x\",\"value\":\"3900\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca7fba00000003\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97555\",\"label\":\"Pgk1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"hint-layout-x\",\"value\":\"5925\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca7fba00000002\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97552\",\"label\":\"Pgam1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"hint-layout-x\",\"value\":\"5475\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"GO:0004807\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000037\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"PMID:4736978\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000036\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000266\",\"label\":\"sequence orthology evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"UniProtKB:P12928\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000035\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000034\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97604\",\"label\":\"Pklr Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005524\",\"label\":\"ATP binding\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000036\",\"value-type\":\"IRI\"},{\"key\":\"hint-layout-y\",\"value\":\"7624.000244140625\"},{\"key\":\"hint-layout-x\",\"value\":\"17688\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000025\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000024\",\"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-08-11\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000022\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000021\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000020\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/591e948c00000000\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000019\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000018\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"5250\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000017\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"7275\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005488\",\"label\":\"binding\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"1216\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-x\",\"value\":\"1282\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000019\",\"value-type\":\"IRI\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000015\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:7295297\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000014\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004743\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000013\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0004634\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000012\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004619\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000011\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004618\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000010\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0004365\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000029\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"266\"},{\"key\":\"hint-layout-x\",\"value\":\"6184\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000028\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000027\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000026\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"4125\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0070405\",\"label\":\"ammonium ion binding\"}],\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000027\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"hint-layout-y\",\"value\":\"1444.2666015625\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000024\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000022\",\"type\":[{\"type\":\"class\",\"id\":\"CHEBI:17680\",\"label\":\"D-glucose 1,6-bisphosphate\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"3496\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"714\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000021\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"4125\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000020\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"4350\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000007\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0003872\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000006\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"6600\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000005\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97604\",\"label\":\"Pklr Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"6375\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004743\",\"label\":\"pyruvate kinase activity\"}],\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000015\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"7231.999755859375\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-x\",\"value\":\"25328\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000003\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"PMID:7323947\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000002\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:95393\",\"label\":\"Eno1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"546\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"12946\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004634\",\"label\":\"phosphopyruvate hydratase activity\"}],\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000003\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"1133824\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"hint-layout-y\",\"value\":\"60672\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000045\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:15665293\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005488\",\"label\":\"binding\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"4176\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"1468\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000018\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000017\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"402\"},{\"key\":\"hint-layout-x\",\"value\":\"6860\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000016\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"4350\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016208\",\"label\":\"AMP binding\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"1540\"},{\"key\":\"hint-layout-y\",\"value\":\"3188\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000018\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000014\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"6174\"},{\"key\":\"hint-layout-y\",\"value\":\"482\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000013\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"3470\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"362\"}]}],\"facts\":[{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000024\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000021\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000029\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000012\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/591e948c00000005\",\"property\":\"RO:0002213\",\"property-label\":\"positively regulates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000009\",\"value-type\":\"IRI\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000010\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000031\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/591e948c00000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000003\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55ca7fba00000003\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000037\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000018\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55ca7fba00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000045\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/591e948c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000006\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000009\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/591e948c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000008\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000021\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000011\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000036\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000013\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000041\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000013\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000026\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000013\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d439b600000015\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000020\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000007\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000048\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000007\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000036\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000035\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000025\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000025\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000018\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000009\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000008\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000016\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000006\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000029\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000028\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000014\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000000\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000022\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/591e948c00000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000002\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/591e948c00000001\",\"property\":\"RO:0002212\",\"property-label\":\"negatively_regulates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000004\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000012\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000038\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000011\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000012\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000020\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000002\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000035\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/591e948c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/591e948c00000007\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2017-05-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000009\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000046\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000020\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000034\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000022\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000042\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:55c3ef4c00000001/55ca6c3e00000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000011\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000017\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000010\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000017\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000016\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000015\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000039\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55ca7fba00000002\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000030\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000016\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000040\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000037\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000028\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000022\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000032\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000021\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000033\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000024\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000006\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000047\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000028\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000010\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000024\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000034\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000026\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"property\":\"BFO:0000050\",\"property-label\":\"part_of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000014\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]}],\"annotations\":[{\"key\":\"state\",\"value\":\"development\"},{\"key\":\"date\",\"value\":\"2017-05-19\"},{\"key\":\"title\",\"value\":\"Mouse glycolysis through F-6-P in liver\"},{\"key\":\"comment\",\"value\":\"New model.\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"http://www.geneontology.org/formats/oboInOwl#id\",\"value\":\"gomodel:55c3ef4c00000001\"},{\"key\":\"contributor\",\"value\":\"GOC:kltm\"}]}"^^<http://www.w3.org/2001/XMLSchema#string> , "{\"id\":\"gomodel:55c3ef4c00000001\",\"individuals\":[{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000012\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000011\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000010\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000033\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"source\",\"value\":\"PMID:943046\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000037\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:4736978\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000036\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000266\",\"label\":\"sequence orthology evidence used in manual assertion\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"UniProtKB:P12928\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000035\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000034\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97604\",\"label\":\"Pklr Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005524\",\"label\":\"ATP binding\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-x\",\"value\":\"17688\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000036\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"7624.000244140625\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000016\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"4350\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca7fba00000002\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97552\",\"label\":\"Pgam1 Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"5475\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004634\",\"label\":\"phosphopyruvate hydratase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"81504.001953125\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000003\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-y\",\"value\":\"4032\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000007\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0003872\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004807\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000025\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000024\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000022\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000021\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000020\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000032\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca6c3e00000001\",\"type\":[{\"type\":\"class\",\"id\":\"CHEBI:16947\",\"label\":\"citrate(3-)\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"GOC:kltm\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:204065\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000033\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000029\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"6184\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"266\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000034\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000010\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004365\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000026\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:4736978\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000014\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0004743\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000029\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:7295297\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000008\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0004332\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000019\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000018\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"5250\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000017\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"7275\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005488\",\"label\":\"binding\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"hint-layout-y\",\"value\":\"3288\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000019\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"1692\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000015\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:7295297\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000035\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:7323947\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000013\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"GO:0004634\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000012\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"source\",\"value\":\"GO:0004619\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000011\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"GO:0004618\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000037\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:943046\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000038\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000039\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:25637246\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000030\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:11250083\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000031\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000038\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:11250083\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004619\",\"label\":\"phosphoglycerate mutase activity\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"3152\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000038\",\"value-type\":\"IRI\"},{\"key\":\"hint-layout-x\",\"value\":\"3160\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000036\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000048\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000036\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000046\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000009\",\"label\":\"transcript expression evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:17626619\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004618\",\"label\":\"phosphoglycerate kinase activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"67600.001953125\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000033\",\"value-type\":\"IRI\"},{\"key\":\"hint-layout-y\",\"value\":\"2016\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-05-15\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000027\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca7fba00000003\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97555\",\"label\":\"Pgk1 Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"5925\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0070405\",\"label\":\"ammonium ion binding\"}],\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000027\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"3024\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000024\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005006\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000022\",\"type\":[{\"type\":\"class\",\"id\":\"CHEBI:17680\",\"label\":\"D-glucose 1,6-bisphosphate\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"3496\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"714\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000021\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"4125\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000020\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"4350\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000006\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"6600\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000005\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97604\",\"label\":\"Pklr Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"hint-layout-x\",\"value\":\"6375\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004743\",\"label\":\"pyruvate kinase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"7231.999755859375\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-x\",\"value\":\"25328\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000015\",\"value-type\":\"IRI\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000003\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:7323947\"},{\"key\":\"date\",\"value\":\"2015-08-11\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c9accc00000002\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:95393\",\"label\":\"Eno1 Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"546\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"12946\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000015\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"4350\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000040\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:25637246\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000028\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000026\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:3796661\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004365\",\"label\":\"glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"2112\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-x\",\"value\":\"28704\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000026\",\"value-type\":\"IRI\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000024\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005488\",\"label\":\"binding\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"4400.000244140625\"},{\"key\":\"hint-layout-x\",\"value\":\"128\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000018\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000017\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"402\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"6860\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000020\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000205\",\"label\":\"curator inference\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"source\",\"value\":\"GOC:dph\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0016208\",\"label\":\"AMP binding\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"1088\"},{\"key\":\"hint-layout-y\",\"value\":\"4064\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000018\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000014\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"6174\"},{\"key\":\"hint-layout-y\",\"value\":\"482\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000013\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"362\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"3470\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000012\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"hint-layout-x\",\"value\":\"6150\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000011\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-x\",\"value\":\"3675\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000010\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"5700\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000041\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:2693209\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000042\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:2693209\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55ca7fba00000004\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:95640\",\"label\":\"Gapdh Mmus\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"3900\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0061615\",\"label\":\"glycolytic process through fructose-6-phosphate\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000020\",\"value-type\":\"IRI\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000045\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000015\",\"label\":\"mutant phenotype evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:15665293\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000015\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:87994\",\"label\":\"Aldoa Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"7058\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000047\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:8172601\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000018\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000033\",\"label\":\"traceable author statement\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"ISBN:0-87901-047-9\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000017\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"source\",\"value\":\"PMID:604178\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000016\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"9320\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000028\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:7295297\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004332\",\"label\":\"fructose-bisphosphate aldolase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-y\",\"value\":\"5407.999755859375\"},{\"key\":\"hint-layout-x\",\"value\":\"57136\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000017\",\"value-type\":\"IRI\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000009\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"8328\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000025\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"source\",\"value\":\"PMID:4736978\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000023\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000021\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000020\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000026\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-y\",\"value\":\"75\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"4125\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d23de300000028\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0004807\",\"label\":\"triose-phosphate isomerase activity\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"26565.3330078125\"},{\"key\":\"hint-layout-y\",\"value\":\"4917.33349609375\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000023\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2016-05-15\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000022\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:98797\",\"label\":\"Tpi1 Mmus\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-x\",\"value\":\"5126\"},{\"key\":\"hint-layout-y\",\"value\":\"190\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000009\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6446714\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000008\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0000002\",\"label\":\"direct assay evidence\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6446714\"},{\"key\":\"date\",\"value\":\"2015-08-10\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000007\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"2660\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"302\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000006\",\"type\":[{\"type\":\"class\",\"id\":\"MGI:MGI:97547\",\"label\":\"Pfkl Mmus\"}],\"annotations\":[{\"key\":\"hint-layout-x\",\"value\":\"3484\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"hint-layout-y\",\"value\":\"6\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0003872\",\"label\":\"6-phosphofructokinase activity\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000009\",\"value-type\":\"IRI\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-y\",\"value\":\"1520\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000004\",\"type\":[{\"type\":\"class\",\"id\":\"MA:0000358\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"470\"},{\"key\":\"hint-layout-x\",\"value\":\"2280\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000016\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"type\":[{\"type\":\"class\",\"id\":\"GO:0005524\",\"label\":\"ATP binding\"}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"date\",\"value\":\"2016-05-15\"},{\"key\":\"hint-layout-x\",\"value\":\"3744\"},{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000008\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"hint-layout-y\",\"value\":\"2277.333251953125\"}]},{\"id\":\"gomodel:55c3ef4c00000001/55d439b600000013\",\"type\":[{\"type\":\"class\",\"id\":\"ECO:0005020\"}],\"annotations\":[{\"key\":\"date\",\"value\":\"2015-08-19\"},{\"key\":\"source\",\"value\":\"PMID:6450202\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"}]}],\"facts\":[{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000010\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000014\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000024\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55ca7fba00000002\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000030\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000021\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000024\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000014\",\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000006\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000047\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55ca7fba00000003\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000037\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000021\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000022\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000032\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000035\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000025\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000007\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000048\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000028\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000026\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000013\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"RO:0002233\",\"property-label\":\"has input\",\"object\":\"gomodel:55c3ef4c00000001/55ca6c3e00000001\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000011\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000025\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000012\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000028\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000020\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000016\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000011\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"property\":\"RO:0002408\",\"property-label\":\"directly inhibits\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000037\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000031\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000007\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000018\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000029\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000012\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000013\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000041\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000037\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000022\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000023\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000008\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000015\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000039\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000021\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000033\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000009\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000046\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000032\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000012\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000038\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000019\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000020\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000034\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000033\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000034\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000026\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000017\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000010\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000036\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000015\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000017\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000016\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000025\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55ca7fba00000004\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000045\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"RO:0002413\",\"property-label\":\"directly provides input for\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c3ef4c00000024\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-10\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000022\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000042\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000021\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000009\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000016\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000018\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000009\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55d23de300000011\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000036\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000002\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55d439b600000015\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000020\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c3ef4c00000014\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000016\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000040\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"BFO:0000050\",\"property-label\":\"part of\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000010\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55c9accc00000013\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-11\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000001\",\"property\":\"RO:0002333\",\"property-label\":\"enabled_by\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000002\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000035\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55d23de300000025\",\"property\":\"RO:0002406\",\"property-label\":\"directly activates\",\"object\":\"gomodel:55c3ef4c00000001/55c3ef4c00000005\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d23de300000028\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-18\"}]},{\"subject\":\"gomodel:55c3ef4c00000001/55c9accc00000004\",\"property\":\"BFO:0000066\",\"property-label\":\"occurs in\",\"object\":\"gomodel:55c3ef4c00000001/55c9accc00000006\",\"annotations\":[{\"key\":\"evidence\",\"value\":\"gomodel:55c3ef4c00000001/55d439b600000029\",\"value-type\":\"IRI\"},{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"date\",\"value\":\"2015-08-19\"}]}],\"annotations\":[{\"key\":\"contributor\",\"value\":\"http://orcid.org/0000-0001-7476-6306\"},{\"key\":\"title\",\"value\":\"Mouse glycolysis through F-6-P in liver\"},{\"key\":\"comment\",\"value\":\"New model.\"},{\"key\":\"contributor\",\"value\":\"GOC:kltm\"},{\"key\":\"contributor\",\"value\":\"GOC:sjc\"},{\"key\":\"state\",\"value\":\"development\"},{\"key\":\"date\",\"value\":\"2016-05-15\"}]}"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:55c3ef4c00000001"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "New model."^^<http://www.w3.org/2001/XMLSchema#string> ;
<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> "Mouse glycolysis through F-6-P in liver"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:kltm"^^<http://www.w3.org/2001/XMLSchema#string> , "GOC:sjc"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000002> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000008> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000001> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000004> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55d439b600000015> ;
<http://geneontology.org/lego/hint/layout/x> "39"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "37"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005524> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000004> <http://geneontology.org/lego/hint/layout/x> "2280"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "470"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000009> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000007> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000006> ;
<http://geneontology.org/lego/hint/layout/x> "787"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "398"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000014> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003872> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000006> <http://geneontology.org/lego/hint/layout/x> "3484"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "6"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97547> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000007> <http://geneontology.org/lego/hint/layout/x> "2660"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "302"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000008> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6446714"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000009> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6446714"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000020> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000014> ;
<http://geneontology.org/lego/hint/layout/x> "429"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0061615> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000014> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000017> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000016> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000015> ;
<http://geneontology.org/lego/hint/layout/x> "1149"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "135"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000021> , <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000025> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004332> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000015> <http://geneontology.org/lego/hint/layout/x> "7058"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:87994> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000016> <http://geneontology.org/lego/hint/layout/x> "9320"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000017> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:604178"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000018> 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-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000020> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GOC:dph"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000021> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000023> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000013> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000022> ;
<http://geneontology.org/lego/hint/layout/x> "809"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000025> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004807> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000022> <http://geneontology.org/lego/hint/layout/x> "5126"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "190"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:98797> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000023> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:204065"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000024> 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-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000025> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000026> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000009> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55ca7fba00000004> ;
<http://geneontology.org/lego/hint/layout/x> "577"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "223"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000032> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004365> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000026> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000015> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:3796661"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000028> 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-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000032> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000033> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000012> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55ca7fba00000003> ;
<http://geneontology.org/lego/hint/layout/x> "403"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "590"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000037> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004618> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000033> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:943046"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000036> 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-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000037> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000038> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000010> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55ca7fba00000002> ;
<http://geneontology.org/lego/hint/layout/x> "174"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "698"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000001> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004619> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000038> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-10"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11250083"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000001> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000003> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000011> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000002> ;
<http://geneontology.org/lego/hint/layout/x> "1022"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "603"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002413> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000004> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004634> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000002> <http://geneontology.org/lego/hint/layout/x> "12946"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "546"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:95393> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000003> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:7323947"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000004> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000015> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000006> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000005> ;
<http://geneontology.org/lego/hint/layout/x> "69"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "407"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004743> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000005> <http://geneontology.org/lego/hint/layout/x> "6375"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97604> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000006> <http://geneontology.org/lego/hint/layout/x> "6600"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000007> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0003872"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000008> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004332"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000009> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004807"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000010> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004365"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000011> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004618"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000012> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004619"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000013> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004634"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000014> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000205> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "GO:0004743"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000015> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:7295297"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000016> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000019> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000001> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000018> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000017> ;
<http://geneontology.org/lego/hint/layout/x> "713"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "694"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/55c3ef4c00000001/55ca6c3e00000001> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005488> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "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> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000017> <http://geneontology.org/lego/hint/layout/x> "7275"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97547> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000018> <http://geneontology.org/lego/hint/layout/x> "5250"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000019> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000020> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000021> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000022> 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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000023> 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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000025> 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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000033> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000036> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000001> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000035> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000034> ;
<http://geneontology.org/lego/hint/layout/x> "12"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "189"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002408> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000004> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005524> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000034> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97604> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000035> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000036> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000266> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "UniProtKB:P12928"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55c9accc00000037> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:4736978"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55ca6c3e00000001> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CHEBI_16947> ;
<http://purl.org/dc/elements/1.1/contributor> "GOC:kltm"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-11"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55ca7fba00000002> <http://geneontology.org/lego/hint/layout/x> "5475"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97552> ;
<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> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55ca7fba00000003> <http://geneontology.org/lego/hint/layout/x> "5925"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97555> ;
<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> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55ca7fba00000004> <http://geneontology.org/lego/hint/layout/x> "3900"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:95640> ;
<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> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000009> <http://geneontology.org/lego/hint/layout/x> "8328"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000010> <http://geneontology.org/lego/hint/layout/x> "5700"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000011> <http://geneontology.org/lego/hint/layout/x> "3675"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000012> <http://geneontology.org/lego/hint/layout/x> "6150"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000013> <http://geneontology.org/lego/hint/layout/x> "3470"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "362"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000014> <http://geneontology.org/lego/hint/layout/x> "6174"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "482"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000015> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000018> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000005> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000017> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000016> ;
<http://geneontology.org/lego/hint/layout/y> "604"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016208> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000016> <http://geneontology.org/lego/hint/layout/x> "4350"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97547> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000017> <http://geneontology.org/lego/hint/layout/x> "6860"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "402"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000018> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-18"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000019> <http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000005> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000021> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000020> ;
<http://geneontology.org/lego/hint/layout/x> "1149"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002233> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000022> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005488> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000020> <http://geneontology.org/lego/hint/layout/x> "4350"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97547> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000021> <http://geneontology.org/lego/hint/layout/x> "4125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000022> <http://geneontology.org/lego/hint/layout/x> "3496"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "714"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/CHEBI_17680> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000023> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005006> ;
<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-08-18"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000024> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005006> ;
<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-08-18"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000025> <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000027> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000005> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000029> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55c3ef4c00000001/55d23de300000026> ;
<http://geneontology.org/lego/hint/layout/x> "1133"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "452"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002406> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0070405> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000026> <http://geneontology.org/lego/hint/layout/x> "4125"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97547> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000027> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005006> ;
<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-08-18"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000028> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-18"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d23de300000029> <http://geneontology.org/lego/hint/layout/x> "6184"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "266"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/MA_0000358> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000009> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000010> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000011> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000012> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000013> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000015> <http://geneontology.org/lego/hint/layout/x> "4350"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "75"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:97547> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000016> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000020> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000021> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000023> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000025> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:4736978"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000026> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:4736978"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000028> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:7295297"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000029> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:7295297"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000030> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:11250083"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000031> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000009> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17626619"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000032> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000033> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000034> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000035> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:7323947"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000036> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000009> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17626619"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000037> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:943046"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000038> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000009> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17626619"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000039> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:25637246"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000040> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:25637246"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000041> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:2693209"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000042> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:2693209"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000045> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000015> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:15665293"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000046> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000009> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17626619"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000047> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:8172601"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/55d439b600000048> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000009> ;
<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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:17626619"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000000> 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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000001> <http://geneontology.org/lego/hint/layout/x> "324"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "332"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002212> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0008150> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000002> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000003> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000004> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000005> <http://geneontology.org/lego/hint/layout/x> "1047"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "340"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002213> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000010> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0008150> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0002-1706-4196"^^<http://www.w3.org/2001/XMLSchema#string> , "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-07-21"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000006> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005006> ;
<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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000007> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005006> ;
<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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000008> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000009> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005006> ;
<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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/591e948c00000010> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0005020> ;
<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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:6450202"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/59237a3c00000016> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/ECO_0000002> ;
<http://purl.org/dc/elements/1.1/contributor> "http://orcid.org/0000-0001-7476-6306"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2017-05-23"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "PMID:4736978"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55c3ef4c00000001/59237a3c00000025> 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> "2017-05-23"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> "ISBN:0-87901-047-9"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/CHEBI_16947> <http://www.geneontology.org/formats/oboInOwl#id> "CHEBI:16947"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/CHEBI_17680> <http://www.geneontology.org/formats/oboInOwl#id> "CHEBI:17680"^^<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> "D-glucose 1,6-bisphosphate"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/ECO_0000009> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/ECO_0005006> <http://www.geneontology.org/formats/oboInOwl#id> "ECO:0005006"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004618> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004619> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004634> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004743> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0016208> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0070405> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/MA_0000358> <http://www.geneontology.org/formats/oboInOwl#id> "MA:0000358"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Class> .
<http://www.w3.org/2000/01/rdf-schema#comment> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2000/01/rdf-schema#label> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://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> .
_:t106397 <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/CHEBI_16947> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "CHEBI:16947"^^<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> .
_:t106398 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:95393> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Eno1 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> .
_:t106399 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:95640> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:95640"^^<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> .
_:t106400 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:95640> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Gapdh 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> .
_:t106401 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97547> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:97547"^^<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> .
_:t106402 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97547> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Pfkl 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> .
_:t106403 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97552> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:97552"^^<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> .
_:t106404 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97552> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Pgam1 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> .
_:t106405 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97555> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:97555"^^<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> .
_:t106406 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97555> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Pgk1 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> .
_:t106407 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97604> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:97604"^^<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> .
_:t106408 <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/CHEBI_17680> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "CHEBI:17680"^^<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> .
_:t106409 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:97604> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Pklr 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> .
_:t106410 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.geneontology.org/formats/oboInOwl#id> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:98797> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:98797"^^<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> .
_:t106411 <http://www.w3.org/2002/07/owl#annotatedProperty> <http://www.w3.org/2000/01/rdf-schema#label> ;
<http://www.w3.org/2002/07/owl#annotatedSource> <http://identifiers.org/mgi/MGI:98797> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Tpi1 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> .
_:t106412 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000003> ;
<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/55c3ef4c00000001/55c3ef4c00000002> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55c3ef4c00000001/591e948c00000001> ;
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> "2017-05-19"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t106413 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55d439b600000021> ;
<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/55c3ef4c00000001/55c3ef4c00000002> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000004> ;
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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t106414 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55d439b600000020> ;
<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/55c3ef4c00000001/55c3ef4c00000002> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55c3ef4c00000001/55d439b600000015> ;
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-08-19"^^<http://www.w3.org/2001/XMLSchema#string> .
_:t106415 <http://geneontology.org/lego/evidence> <http://model.geneontology.org/55c3ef4c00000001/55c9accc00000021> ;
<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/55c3ef4c00000001/55c3ef4c00000002> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55c3ef4c00000001/55c3ef4c00000005> ;
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-08-11"^^<http://www.w3.org/2001/XMLSchema#string> .