-
Notifications
You must be signed in to change notification settings - Fork 3
/
55dce5d200000001.ttl
1047 lines (844 loc) · 115 KB
/
55dce5d200000001.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/55dce5d200000001> a <http://www.w3.org/2002/07/owl#Ontology> .
<http://geneontology.org/lego/evidence> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/x> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/hint/layout/y> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/modelstate> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/RO_0002333> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.org/pav/providedBy> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<https://w3id.org/biolink/vocab/in_taxon> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/GO_0005634> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/BFO_0000066> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/BFO_0000050> a <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://purl.obolibrary.org/obo/GO_0042802> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005737> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005739> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005829> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005886> a <http://www.w3.org/2002/07/owl#Class> .
<http://geneontology.org/lego/canonical_record> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/derived> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://geneontology.org/lego/iuphar_id> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/IAO_0000115> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.geneontology.org/formats/oboInOwl#id> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.obolibrary.org/obo/GO_0009897> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005622> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005096> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030246> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043025> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:2145950> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005856> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0045202> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0048488> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0042393> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0045121> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0003779> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0015629> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030137> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030425> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0060170> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0030117> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0005543> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:700009> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0004439> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0008092> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0032587> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043197> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:103574> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0017124> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0043209> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:88323> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:88323"^^<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> "Cd24a Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0031528> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:1277151> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1277151"^^<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> "Snca Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0043195> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0050544> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:88261> a <http://www.w3.org/2002/07/owl#Class> .
<http://purl.obolibrary.org/obo/GO_0016234> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:1345181> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1345181"^^<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> "Pacsin1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://purl.obolibrary.org/obo/GO_0030665> a <http://www.w3.org/2002/07/owl#Class> .
<http://identifiers.org/mgi/MGI:1354961> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:1354961"^^<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> "Synj1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/mgi/MGI:2442794> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:2442794"^^<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> "Dennd1a Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://identifiers.org/mgi/MGI:2151070> <http://www.geneontology.org/formats/oboInOwl#id> "MGI:MGI:2151070"^^<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> "Ophn1 Mmus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001> <http://geneontology.org/lego/modelstate> "development"^^<http://www.w3.org/2001/XMLSchema#string> ;
<https://w3id.org/biolink/vocab/in_taxon> <http://purl.obolibrary.org/obo/NCBITaxon_10090> ;
<http://www.geneontology.org/formats/oboInOwl#id> "gomodel:55dce5d200000001"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2022-09-22: GO:0031362 replaced by GO:0009897" , "Demo of seeding for Paul"^^<http://www.w3.org/2001/XMLSchema#string> , "Test"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/title> "Synaptic vesicle endocytosis (Mus), seeded"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2022-09-22"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000002> <http://geneontology.org/lego/hint/layout/x> "755"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "9"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0048488> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000005> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:2442794> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0048488 MGI:MGI:3694831|PMID:17182770 IDA P DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000066(MA:0000191)|BFO:0000066(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000006> <http://geneontology.org/lego/hint/layout/x> "1910"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "537"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:1277151> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0048488 MGI:MGI:3850310|PMID:18980610 IMP P synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090616 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000008> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:88323> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0048488 MGI:MGI:3625625|PMID:16606832 IMP MGI:MGI:2179996 P CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20060808 MGI BFO:0000066(MA:0000165)|BFO:0000066(CL:0000108)|BFO:0000066(MA:0000165)|BFO:0000066(CL:0000100) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000009> <http://geneontology.org/lego/hint/layout/x> "678"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "531"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:1345181> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0048488 MGI:MGI:5304995|PMID:21926968 IMP P protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130319 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000011> <http://geneontology.org/lego/hint/layout/x> "186"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "537"^^<http://www.w3.org/2001/XMLSchema#string> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:2151070> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0048488 MGI:MGI:4359148|PMID:19481455 IMP P oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI BFO:0000066(MA:0000191)|BFO:0000066(CL:0000117) VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:2151070 Ophn1 GO:0048488 MGI:MGI:4359148|PMID:19481455 IGI MGI:MGI:700009 P oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI BFO:0000066(MA:0000952)|BFO:0000066(CL:0000117) VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000012> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://identifiers.org/mgi/MGI:1354961> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1354961 Synj1 GO:0048488 MGI:MGI:3797309|PMID:18093523 IMP MGI:MGI:2179801 P synaptojanin 1 A930006D20Rik protein taxon:10090 20090902 MGI VEGA:OTTMUSP00000035111 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000013> <http://geneontology.org/lego/hint/layout/x> "1425"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "250"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000005> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000023> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000024> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000025> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000026> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0017124> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0017124 MGI:MGI:3694831|PMID:17182770 IPI MGI:MGI:700009|MGI:MGI:1338069 F DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070821 MGI VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000014> <http://geneontology.org/lego/hint/layout/x> "1867"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "129"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000006> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000027> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000030> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000033> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000036> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000039> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000042> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000045> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0042393> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0042393 MGI:MGI:4399019|PMID:16959795 IDA F synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000015> <http://geneontology.org/lego/hint/layout/x> "1624"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "188"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000006> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000028> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000031> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000034> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000037> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000040> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000043> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000046> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0050544> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0050544 MGI:MGI:3629421|PMID:16734431 IDA F synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000066(MA:0000168) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000016> <http://geneontology.org/lego/hint/layout/x> "2083"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "107"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000006> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000029> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000032> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000035> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000038> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000041> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000044> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000047> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0042802> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0042802 MGI:MGI:1888800|PMID:10978144 IDA F synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20050908 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000017> <http://geneontology.org/lego/hint/layout/x> "1200"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "250"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000008> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000048> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000049> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000050> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000051> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000052> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030246> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0030246 MGI:MGI:3759177|PMID:15633604 IDA F CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20070925 UniProt ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000018> <http://geneontology.org/lego/hint/layout/x> "750"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "250"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000009> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000053> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000055> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000057> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0008092> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0008092 MGI:MGI:1929303|PMID:11082044 IDA F protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20030109 MGI VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000019> <http://geneontology.org/lego/hint/layout/x> "506"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "204"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000009> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000054> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000056> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000058> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005543> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0005543 MGI:MGI:4454229|PMID:20404169 IDA F protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130304 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000020> <http://geneontology.org/lego/hint/layout/x> "86"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "129"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000011> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000059> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000061> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000063> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000065> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0003779> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0003779 MGI:MGI:2674209|PMID:12932438 IDA F oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20031028 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000021> <http://geneontology.org/lego/hint/layout/x> "294"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "205"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000011> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000060> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000062> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000064> , <http://model.geneontology.org/55dce5d200000001/55dce5d200000066> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005096> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0005096 MGI:MGI:4359148|PMID:19481455 IMP F oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000022> <http://geneontology.org/lego/hint/layout/x> "975"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://geneontology.org/lego/hint/layout/y> "250"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.obolibrary.org/obo/RO_0002333> <http://model.geneontology.org/55dce5d200000001/55dce5d200000012> ;
<http://purl.obolibrary.org/obo/BFO_0000066> <http://model.geneontology.org/55dce5d200000001/55dce5d200000067> ;
<http://purl.obolibrary.org/obo/BFO_0000050> <http://model.geneontology.org/55dce5d200000001/55dce5d200000002> ;
a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0004439> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1354961 Synj1 GO:0004439 MGI:MGI:3803033|PMID:18591654 IMP MGI:MGI:2179801 F synaptojanin 1 A930006D20Rik protein taxon:10090 20090902 MGI VEGA:OTTMUSP00000035111 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000023> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030665> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0030665 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000024> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043025> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0043025 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000050(MA:0000191)|BFO:0000050(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000025> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0045202> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0045202 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000050(MA:0000191)|BFO:0000050(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000026> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030425> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0030425 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000050(MA:0000191)|BFO:0000050(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000027> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005739> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005739 MGI:MGI:3607411|PMID:16260631 IMP MGI:MGI:2389489 C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 GOC UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000028> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005739> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005739 MGI:MGI:3607411|PMID:16260631 IMP MGI:MGI:2389489 C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 GOC UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000029> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005739> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005739 MGI:MGI:3607411|PMID:16260631 IMP MGI:MGI:2389489 C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 GOC UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000030> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005886> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005886 MGI:MGI:3714448|PMID:17475220 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000050(CL:0000232) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000031> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005886> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005886 MGI:MGI:3714448|PMID:17475220 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000050(CL:0000232) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000032> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005886> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005886 MGI:MGI:3714448|PMID:17475220 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000050(CL:0000232) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000033> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016234> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5516416|PMID:24076025 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140529 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5582171|PMID:17222866 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140812 ParkinsonsUK-UCL UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000034> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016234> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5516416|PMID:24076025 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140529 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5582171|PMID:17222866 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140812 ParkinsonsUK-UCL UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000035> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0016234> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5516416|PMID:24076025 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140529 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5582171|PMID:17222866 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140812 ParkinsonsUK-UCL UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000036> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0045202> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0045202 MGI:MGI:1888857|PMID:10964942 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20120517 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000037> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0045202> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0045202 MGI:MGI:1888857|PMID:10964942 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20120517 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000038> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0045202> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0045202 MGI:MGI:1888857|PMID:10964942 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20120517 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000039> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005634 MGI:MGI:4399019|PMID:16959795 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000040> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005634 MGI:MGI:4399019|PMID:16959795 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000041> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005634> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005634 MGI:MGI:4399019|PMID:16959795 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000042> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005856> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005856 MGI:MGI:3770092|PMID:17077307 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080909 MGI BFO:0000050(MA:0000891) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000043> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005856> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005856 MGI:MGI:3770092|PMID:17077307 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080909 MGI BFO:0000050(MA:0000891) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000044> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005856> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005856 MGI:MGI:3770092|PMID:17077307 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080909 MGI BFO:0000050(MA:0000891) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000045> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005829> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005829 MGI:MGI:3850310|PMID:18980610 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090612 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000046> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005829> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005829 MGI:MGI:3850310|PMID:18980610 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090612 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000047> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005829> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005829 MGI:MGI:3850310|PMID:18980610 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090612 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000048> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005622> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0005622 MGI:MGI:3614932|PMID:16390867 IMP C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071005 GOC ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000049> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0060170> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0060170 MGI:MGI:2178911|PMID:11978835 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071126 MGI BFO:0000050(CL:0000065) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000050> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0031528> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0031528 MGI:MGI:2178911|PMID:11978835 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071126 MGI BFO:0000050(CL:0000065) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000051> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0045121> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0045121 MGI:MGI:3759338|PMID:15493995 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071002 UniProt ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000052> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0009897> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "Automated change 2022-09-22: GO:0031362 replaced by GO:0009897" ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2022-09-22"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:59144|PMID:2118158 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20070907 MGI ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:65397|PMID:8125140 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071008 MGI BFO:0000050(CL:0000624) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:3757622|PMID:7908303 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071012 MGI BFO:0000050(CL:0000453) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:3757626|PMID:1346270 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071011 MGI BFO:0000050(CL:0000236) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:2686748|PMID:14707049 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071127 MGI BFO:0000050(CL:0000084) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000053> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030137> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0030137 MGI:MGI:1341470|PMID:9746365 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20000812 MGI VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000054> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030137> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0030137 MGI:MGI:1341470|PMID:9746365 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20000812 MGI VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000055> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043209> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0043209 MGI:MGI:3834050|PMID:17634366 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20141110 UniProt BFO:0000050(CL:0000128) VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000056> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043209> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0043209 MGI:MGI:3834050|PMID:17634366 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20141110 UniProt BFO:0000050(CL:0000128) VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000057> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0032587> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0032587 MGI:MGI:4454229|PMID:20404169 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130304 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000058> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0032587> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0032587 MGI:MGI:4454229|PMID:20404169 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130304 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000059> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0005737 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000060> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0005737> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0005737 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000061> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043197> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043197 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000062> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043197> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043197 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000063> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043195> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043195 MGI:MGI:4359148|PMID:19481455 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI BFO:0000050(MA:0000952)|BFO:0000050(CL:0000117) VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000064> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0043195> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043195 MGI:MGI:4359148|PMID:19481455 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI BFO:0000050(MA:0000952)|BFO:0000050(CL:0000117) VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000065> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0015629> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0015629 MGI:MGI:2674209|PMID:12932438 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20031028 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000066> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0015629> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0015629 MGI:MGI:2674209|PMID:12932438 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20031028 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://model.geneontology.org/55dce5d200000001/55dce5d200000067> a <http://www.w3.org/2002/07/owl#NamedIndividual> , <http://purl.obolibrary.org/obo/GO_0030117> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1354961 Synj1 GO:0030117 MGI:MGI:2176305|PMID:11879655 IDA C synaptojanin 1 A930006D20Rik protein taxon:10090 20031126 MGI VEGA:OTTMUSP00000035111 """^^<http://www.w3.org/2001/XMLSchema#string> .
<http://www.w3.org/2000/01/rdf-schema#comment> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2000/01/rdf-schema#label> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2000/01/rdf-schema#seeAlso> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2002/07/owl#versionInfo> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2004/02/skos/core#altLabel> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2004/02/skos/core#exactMatch> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2004/02/skos/core#note> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/terms/title> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/title> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/contributor> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/date> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://purl.org/dc/elements/1.1/source> a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<http://www.w3.org/2001/XMLSchema#string> a <http://www.w3.org/2000/01/rdf-schema#Datatype> .
_:t1797799 <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/55dce5d200000001/55dce5d200000013> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000024> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0043025 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000050(MA:0000191)|BFO:0000050(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797800 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000041> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005634 MGI:MGI:4399019|PMID:16959795 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797801 <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/55dce5d200000001/55dce5d200000020> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000065> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0015629 MGI:MGI:2674209|PMID:12932438 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20031028 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797802 <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:2442794> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Dennd1a 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> .
_:t1797803 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000006> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0042802 MGI:MGI:1888800|PMID:10978144 IDA F synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20050908 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797804 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000046> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005829 MGI:MGI:3850310|PMID:18980610 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090612 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797805 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000043> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005856 MGI:MGI:3770092|PMID:17077307 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080909 MGI BFO:0000050(MA:0000891) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797806 <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/55dce5d200000001/55dce5d200000018> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000057> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0032587 MGI:MGI:4454229|PMID:20404169 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130304 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797807 <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/55dce5d200000001/55dce5d200000021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000062> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043197 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797808 <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/55dce5d200000001/55dce5d200000017> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000050> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0031528 MGI:MGI:2178911|PMID:11978835 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071126 MGI BFO:0000050(CL:0000065) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797809 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000047> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005829 MGI:MGI:3850310|PMID:18980610 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090612 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797810 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000030> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005886 MGI:MGI:3714448|PMID:17475220 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000050(CL:0000232) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797811 <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/55dce5d200000001/55dce5d200000017> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000051> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0045121 MGI:MGI:3759338|PMID:15493995 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071002 UniProt ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797812 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000006> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0042393 MGI:MGI:4399019|PMID:16959795 IDA F synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797813 <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:1354961> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:1354961"^^<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> .
_:t1797814 <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:1354961> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Synj1 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> .
_:t1797815 <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:2442794> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:2442794"^^<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> .
_:t1797816 <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/55dce5d200000001/55dce5d200000021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000064> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043195 MGI:MGI:4359148|PMID:19481455 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI BFO:0000050(MA:0000952)|BFO:0000050(CL:0000117) VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797817 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000034> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5516416|PMID:24076025 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140529 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5582171|PMID:17222866 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140812 ParkinsonsUK-UCL UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797818 <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:2151070> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:2151070"^^<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> .
_:t1797819 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000036> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0045202 MGI:MGI:1888857|PMID:10964942 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20120517 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797820 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000038> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0045202 MGI:MGI:1888857|PMID:10964942 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20120517 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797821 <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/55dce5d200000001/55dce5d200000017> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000052> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:59144|PMID:2118158 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20070907 MGI ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:65397|PMID:8125140 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071008 MGI BFO:0000050(CL:0000624) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:3757622|PMID:7908303 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071012 MGI BFO:0000050(CL:0000453) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:3757626|PMID:1346270 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071011 MGI BFO:0000050(CL:0000236) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:88323 Cd24a GO:0031362 MGI:MGI:2686748|PMID:14707049 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071127 MGI BFO:0000050(CL:0000084) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797822 <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/55dce5d200000001/55dce5d200000021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000060> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0005737 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797823 <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:2151070> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Ophn1 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> .
_:t1797824 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000040> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005634 MGI:MGI:4399019|PMID:16959795 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20091007 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797825 <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/55dce5d200000001/55dce5d200000013> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000026> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0030425 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000050(MA:0000191)|BFO:0000050(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797826 <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/55dce5d200000001/55dce5d200000017> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000048> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0005622 MGI:MGI:3614932|PMID:16390867 IMP C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071005 GOC ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797827 <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/55dce5d200000001/55dce5d200000021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000066> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0015629 MGI:MGI:2674209|PMID:12932438 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20031028 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797828 <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/55dce5d200000001/55dce5d200000018> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000009> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0008092 MGI:MGI:1929303|PMID:11082044 IDA F protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20030109 MGI VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797829 <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/55dce5d200000001/55dce5d200000019> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000056> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0043209 MGI:MGI:3834050|PMID:17634366 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20141110 UniProt BFO:0000050(CL:0000128) VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797830 <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/55dce5d200000001/55dce5d200000017> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000008> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0030246 MGI:MGI:3759177|PMID:15633604 IDA F CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20070925 UniProt ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797831 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000042> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005856 MGI:MGI:3770092|PMID:17077307 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080909 MGI BFO:0000050(MA:0000891) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797832 <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/55dce5d200000001/55dce5d200000013> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000005> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0017124 MGI:MGI:3694831|PMID:17182770 IPI MGI:MGI:700009|MGI:MGI:1338069 F DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070821 MGI VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797833 <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/55dce5d200000001/55dce5d200000020> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000011> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0003779 MGI:MGI:2674209|PMID:12932438 IDA F oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20031028 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797834 <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/55dce5d200000001/55dce5d200000022> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000067> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1354961 Synj1 GO:0030117 MGI:MGI:2176305|PMID:11879655 IDA C synaptojanin 1 A930006D20Rik protein taxon:10090 20031126 MGI VEGA:OTTMUSP00000035111 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797835 <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:1345181> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "MGI:MGI:1345181"^^<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> .
_:t1797836 <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/55dce5d200000001/55dce5d200000018> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000055> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0043209 MGI:MGI:3834050|PMID:17634366 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20141110 UniProt BFO:0000050(CL:0000128) VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797837 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000032> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005886 MGI:MGI:3714448|PMID:17475220 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000050(CL:0000232) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797838 <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/55dce5d200000001/55dce5d200000022> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000012> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1354961 Synj1 GO:0004439 MGI:MGI:3803033|PMID:18591654 IMP MGI:MGI:2179801 F synaptojanin 1 A930006D20Rik protein taxon:10090 20090902 MGI VEGA:OTTMUSP00000035111 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797839 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000027> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005739 MGI:MGI:3607411|PMID:16260631 IMP MGI:MGI:2389489 C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 GOC UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797840 <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/55dce5d200000001/55dce5d200000018> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000053> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0030137 MGI:MGI:1341470|PMID:9746365 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20000812 MGI VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797841 <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/55dce5d200000001/55dce5d200000020> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000061> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043197 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797842 <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:88323> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Cd24a 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> .
_:t1797843 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000044> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005856 MGI:MGI:3770092|PMID:17077307 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080909 MGI BFO:0000050(MA:0000891) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797844 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000037> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0045202 MGI:MGI:1888857|PMID:10964942 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20120517 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797845 <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/55dce5d200000001/55dce5d200000020> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000059> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0005737 MGI:MGI:5303043|PMID:21874017 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20131201 UniProt VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797846 <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/55dce5d200000001/55dce5d200000019> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000058> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0032587 MGI:MGI:4454229|PMID:20404169 IDA C protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130304 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797847 <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/55dce5d200000001/55dce5d200000017> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000049> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:88323 Cd24a GO:0060170 MGI:MGI:2178911|PMID:11978835 IDA C CD24a antigen cluster of differentiation 24|heat stable antigen|HSA|Ly-52|nectadrin protein taxon:10090 20071126 MGI BFO:0000050(CL:0000065) ENSEMBL:ENSMUSP00000057983 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797848 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000029> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005739 MGI:MGI:3607411|PMID:16260631 IMP MGI:MGI:2389489 C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 GOC UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797849 <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/55dce5d200000001/55dce5d200000016> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000035> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5516416|PMID:24076025 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140529 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5582171|PMID:17222866 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140812 ParkinsonsUK-UCL UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797850 <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/55dce5d200000001/55dce5d200000013> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000025> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2442794 Dennd1a GO:0045202 MGI:MGI:3694831|PMID:17182770 IDA C DENN/MADD domain containing 1A 6030446I19Rik protein taxon:10090 20070822 MGI BFO:0000050(MA:0000191)|BFO:0000050(CL:0000540) VEGA:OTTMUSP00000013687 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797851 <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/55dce5d200000001/55dce5d200000021> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000011> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0005096 MGI:MGI:4359148|PMID:19481455 IMP F oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797852 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000033> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5516416|PMID:24076025 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140529 MGI UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> , """MGI MGI:1277151 Snca GO:0016234 MGI:MGI:5582171|PMID:17222866 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20140812 ParkinsonsUK-UCL UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797853 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000006> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0050544 MGI:MGI:3629421|PMID:16734431 IDA F synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 MGI BFO:0000066(MA:0000168) UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797854 <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/55dce5d200000001/55dce5d200000020> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000063> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:2151070 Ophn1 GO:0043195 MGI:MGI:4359148|PMID:19481455 IDA C oligophrenin 1 C130037N19Rik|Wtgr protein taxon:10090 20110209 MGI BFO:0000050(MA:0000952)|BFO:0000050(CL:0000117) VEGA:OTTMUSP00000019600 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797855 <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/55dce5d200000001/55dce5d200000014> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000045> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005829 MGI:MGI:3850310|PMID:18980610 IDA C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20090612 UniProt UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797856 <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/55dce5d200000001/55dce5d200000019> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000009> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1345181 Pacsin1 GO:0005543 MGI:MGI:4454229|PMID:20404169 IDA F protein kinase C and casein kinase substrate in neurons 1 A830061D09Rik|Syndapin I protein taxon:10090 20130304 UniProt VEGA:OTTMUSP00000023642 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797857 <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/55dce5d200000001/55dce5d200000015> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> <http://model.geneontology.org/55dce5d200000001/55dce5d200000028> ;
a <http://www.w3.org/2002/07/owl#Axiom> ;
<http://purl.org/dc/elements/1.1/contributor> "https://orcid.org/0000-0002-6601-2165"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/date> "2015-08-25"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://purl.org/dc/elements/1.1/source> """MGI MGI:1277151 Snca GO:0005739 MGI:MGI:3607411|PMID:16260631 IMP MGI:MGI:2389489 C synuclein, alpha alpha-synuclein|alphaSYN protein taxon:10090 20080908 GOC UniProtKB:O55042 """^^<http://www.w3.org/2001/XMLSchema#string> .
_:t1797858 <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:1345181> ;
<http://www.w3.org/2002/07/owl#annotatedTarget> "Pacsin1 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> .
_:t1797859 <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/55dce5d200000001/55dce5d200000013> ;