forked from obophenotype/brain_data_standards_ontologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbdscratch-base.json
20680 lines (20680 loc) · 868 KB
/
bdscratch-base.json
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
{
"graphs" : [ {
"nodes" : [ {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_59",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Lamp5 Ntn1 Npy2r - CS201810310_59"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Lamp5 Ntn1 Npy2r"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 059 - CS201810310_59"
}, {
"id" : "http://brain_data_standards/scratch_3f07421e-28da-11eb-a744-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L5 ET"
} ]
},
"type" : "CLASS",
"lbl" : "HM 029-030"
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0002292",
"type" : "PROPERTY",
"lbl" : "expresses"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_57",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Lamp5 Fam19a1 Pax6 - CS201810310_57"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Lamp5 Fam19a1 Pax6"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 057 - CS201810310_57"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_118",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Astro Aqp4 - CS201810310_118"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Astro Aqp4|Astrocyte"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 118 - CS201810310_118"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_119",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "OPC Pdgfra Grm5 - CS201810310_119"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "OPC Pdgfra Grm5"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 119 - CS201810310_119"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_58",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Lamp5 Fam19a1 Tmem182 - CS201810310_58"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Lamp5 Fam19a1 Tmem182"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 058 - CS201810310_58"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_55",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b Hsd17b2 - CS201810310_55"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b Hsd17b2"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 055 - CS201810310_55"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_56",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Lamp5 Krt73"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Lamp5 Krt73 - CS201810310_56"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 056 - CS201810310_56"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_114",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Tpbg - CS201810310_114"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Pvalb Tpbg"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 114 - CS201810310_114"
}, {
"id" : "http://brain_data_standards/scratch_ad0230b8-3a54-11eb-bd48-b29c4ac64a97",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6"
} ]
},
"type" : "CLASS",
"lbl" : "MTG 061-063"
}, {
"id" : "http://brain_data_standards/scratch_3eca29d8-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Lamp5 Lsp1"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 061"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_115",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Vipr2 - CS201810310_115"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Pvalb Vipr2|Chandelier"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 115 - CS201810310_115"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_116",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Meis2 Adamts19|Meis2"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Meis2 Adamts19 - CS201810310_116"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 116 - CS201810310_116"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_117",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "CR Lhx5 - CS201810310_117"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "CR Lhx5|Cajal Retzius"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 117 - CS201810310_117"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_110",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Pvalb Sema3e Kank4"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Sema3e Kank4 - CS201810310_110"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 110 - CS201810310_110"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_111",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Pvalb Gpr149 Islr"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Gpr149 Islr - CS201810310_111"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 111 - CS201810310_111"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_112",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Reln Itm2a - CS201810310_112"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Pvalb Reln Itm2a"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 112 - CS201810310_112"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_113",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Pvalb Reln Tac1"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Reln Tac1 - CS201810310_113"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 113 - CS201810310_113"
}, {
"id" : "http://brain_data_standards/scratch_8a2b7c26-28d3-11eb-8565-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L2/3 IT_3"
} ]
},
"type" : "CLASS",
"lbl" : "RNAseq 060"
}, {
"id" : "http://brain_data_standards/scratch_3ecab4ca-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Peri Kcnj8"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 128"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_120",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "OPC Pdgfra Ccnb1"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "OPC Pdgfra Ccnb1 - CS201810310_120"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 120 - CS201810310_120"
}, {
"id" : "http://brain_data_standards/scratch_ad02242e-3a54-11eb-bd48-b29c4ac64a97",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Inh L2-4 PVALB WFDC2"
} ]
},
"type" : "CLASS",
"lbl" : "MTG 042"
}, {
"id" : "http://brain_data_standards/scratch_ad023108-3a54-11eb-bd48-b29c4ac64a97",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Exc L5-6 THEMIS DCSTAMP"
} ]
},
"type" : "CLASS",
"lbl" : "MTG 061"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_53",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b P2ry12"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b P2ry12 - CS201810310_53"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 053 - CS201810310_53"
}, {
"id" : "http://brain_data_standards/scratch_ad021808-3a54-11eb-bd48-b29c4ac64a97",
"type" : "CLASS",
"lbl" : "MTG 024-025"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_54",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b VISp Crh"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b VISp Crh - CS201810310_54"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 054 - CS201810310_54"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_51",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b ALM Olfr111 Spon1"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b ALM Olfr111 Spon1 - CS201810310_51"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 051 - CS201810310_51"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_52",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b ALM Olfr111 Nxph1"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b ALM Olfr111 Nxph1 - CS201810310_52"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 052 - CS201810310_52"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_50",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b VISp Col8a1 Rxfp1 - CS201810310_50"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b VISp Col8a1 Rxfp1"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 050 - CS201810310_50"
}, {
"id" : "http://brain_data_standards/scratch_3eca4dfa-28da-11eb-9dce-0242ac110002",
"type" : "CLASS",
"lbl" : "VISp_ALM 078-079"
}, {
"id" : "http://brain_data_standards/scratch_3ec9a10c-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L2/3 IT"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 001-006"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_48",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b Col8a1 Rprm - CS201810310_48"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b Col8a1 Rprm"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 048 - CS201810310_48"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_49",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6b VISp Mup5 - CS201810310_49"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6b VISp Mup5"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 049 - CS201810310_49"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_46",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT VISp Ctxn3 Sla"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT VISp Ctxn3 Sla - CS201810310_46"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 046 - CS201810310_46"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_129",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "SMC Acta2 - CS201810310_129"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "SMC Acta2|SMC"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 129 - CS201810310_129"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_47",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT VISp Gpr139 - CS201810310_47"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT VISp Gpr139"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 047 - CS201810310_47"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_44",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT VISp Nxph2 Wls - CS201810310_44"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT VISp Nxph2 Wls"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 044 - CS201810310_44"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_45",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT VISp Ctxn3 Brinp3"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT VISp Ctxn3 Brinp3 - CS201810310_45"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 045 - CS201810310_45"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_125",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "VLMC Spp1 Hs3st6"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "VLMC Spp1 Hs3st6 - CS201810310_125"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 125 - CS201810310_125"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_126",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "VLMC Osr1 Mc5r"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "VLMC Osr1 Mc5r - CS201810310_126"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 126 - CS201810310_126"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_127",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "VLMC Spp1 Col15a1"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "VLMC Spp1 Col15a1 - CS201810310_127"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 127 - CS201810310_127"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_128",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Peri Kcnj8|Pericyte"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Peri Kcnj8 - CS201810310_128"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 128 - CS201810310_128"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_121",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Oligo Rassf10 - CS201810310_121"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Oligo Rassf10"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 121 - CS201810310_121"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_122",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Oligo Serpinb1a"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Oligo Serpinb1a - CS201810310_122"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 122 - CS201810310_122"
}, {
"id" : "http://brain_data_standards/scratch_3ec9ec52-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L5 PT ALM Hpgd"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 036"
}, {
"id" : "http://brain_data_standards/scratch_8a2be9f4-28d3-11eb-8565-0242ac110002",
"type" : "CLASS",
"lbl" : "RNAseq 099-102"
}, {
"id" : "http://brain_data_standards/scratch_8a2b8f7c-28d3-11eb-8565-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 IT_1"
} ]
},
"type" : "CLASS",
"lbl" : "RNAseq 067"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_123",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Oligo Synpr - CS201810310_123"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Oligo Synpr"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 123 - CS201810310_123"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_124",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "VLMC Osr1 Cd74"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "VLMC Osr1 Cd74 - CS201810310_124"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 124 - CS201810310_124"
}, {
"id" : "http://brain_data_standards/scratch_ad023734-3a54-11eb-bd48-b29c4ac64a97",
"type" : "CLASS",
"lbl" : "MTG 070-072"
}, {
"id" : "http://brain_data_standards/scratch_8a2b6632-28d3-11eb-8565-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Pvalb Calb1_2"
} ]
},
"type" : "CLASS",
"lbl" : "RNAseq 053"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_130",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Endo Ctla2a"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Endo Ctla2a - CS201810310_130"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 130 - CS201810310_130"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_131",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Endo Cytl1 - CS201810310_131"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Endo Cytl1"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 131 - CS201810310_131"
}, {
"id" : "http://brain_data_standards/scratch_3f06fe76-28da-11eb-a744-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "CGE"
} ]
},
"type" : "CLASS",
"lbl" : "HM 001-011"
}, {
"id" : "http://brain_data_standards/scratch_3eca5b24-28da-11eb-9dce-0242ac110002",
"type" : "CLASS",
"lbl" : "VISp_ALM 085-115"
}, {
"id" : "http://brain_data_standards/scratch_3ec9cc18-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L5 IT ALM Tmem163 Arhgap25"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 019"
}, {
"id" : "http://brain_data_standards/scratch_3ec9c88a-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L5 IT ALM Tmem163 Dmrtb1"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 018"
}, {
"id" : "http://brain_data_standards/scratch_ad0224ec-3a54-11eb-bd48-b29c4ac64a97",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Inh L5-6 SST MIR548F2"
} ]
},
"type" : "CLASS",
"lbl" : "MTG 044"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_42",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT ALM Cpa6 - CS201810310_42"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT ALM Cpa6"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 042 - CS201810310_42"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_43",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT VISp Krt80 Sla - CS201810310_43"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT VISp Krt80 Sla"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 043 - CS201810310_43"
}, {
"id" : "http://brain_data_standards/scratch_3ec9b0b6-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L2/3 IT ALM Macc1 Lrg1"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 006"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_40",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 NP ALM Trh"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 NP ALM Trh - CS201810310_40"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 040 - CS201810310_40"
}, {
"id" : "http://brain_data_standards/scratch_8a2b9e72-28d3-11eb-8565-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L5 PT_2"
} ]
},
"type" : "CLASS",
"lbl" : "RNAseq 071"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_41",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6 CT Nxph2 Sla - CS201810310_41"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "L6 CT Nxph2 Sla"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 041 - CS201810310_41"
}, {
"id" : "http://brain_data_standards/scratch_3eca46f2-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Vip Arhgap36 Hmcn1"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 074"
}, {
"id" : "http://brain_data_standards/scratch_ad023324-3a54-11eb-bd48-b29c4ac64a97",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L6"
} ]
},
"type" : "CLASS",
"lbl" : "MTG 065-069"
}, {
"id" : "http://brain_data_standards/scratch_8a2c0222-28d3-11eb-8565-0242ac110002",
"type" : "CLASS",
"lbl" : "RNAseq 108-109"
}, {
"id" : "http://brain_data_standards/scratch_ad0217b8-3a54-11eb-bd48-b29c4ac64a97",
"type" : "CLASS",
"lbl" : "MTG 024-027"
}, {
"id" : "http://brain_data_standards/scratch_8a2b1380-28d3-11eb-8565-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Vip Mybpc1_2"
} ]
},
"type" : "CLASS",
"lbl" : "RNAseq 021"
}, {
"id" : "http://brain_data_standards/scratch_8a2c0948-28d3-11eb-8565-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Peri"
} ]
},
"type" : "CLASS",
"lbl" : "RNAseq 112"
}, {
"id" : "http://brain_data_standards/scratch_3eca7b54-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Sst Esm1"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 101"
}, {
"id" : "http://brain_data_standards/scratch_3f073800-28da-11eb-a744-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Exc L3/5 IT"
} ]
},
"type" : "CLASS",
"lbl" : "HM 023"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_79",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Vip Rspo1 Itga4"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Vip Rspo1 Itga4 - CS201810310_79"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 079 - CS201810310_79"
}, {
"id" : "http://brain_data_standards/scratch_ad0227ee-3a54-11eb-bd48-b29c4ac64a97",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Exc L2 LAMP5 LTK"
} ]
},
"type" : "CLASS",
"lbl" : "MTG 046"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_77",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Vip Rspo4 Rxfp1 Chat - CS201810310_77"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Vip Rspo4 Rxfp1 Chat"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 077 - CS201810310_77"
}, {
"id" : "http://brain_data_standards/scratch_8a2b0ae8-28d3-11eb-8565-0242ac110002",
"type" : "CLASS",
"lbl" : "RNAseq 018-027"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_78",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Vip Lect1 Oxtr - CS201810310_78"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Vip Lect1 Oxtr"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 078 - CS201810310_78"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_136",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Neuronal - CS201810310_136"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n3|Neuronal"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 001-117 - CS201810310_136"
}, {
"id" : "http://brain_data_standards/scratch_3ec9b746-28da-11eb-9dce-0242ac110002",
"type" : "CLASS",
"lbl" : "VISp_ALM 008-009"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_137",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n4"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : " - CS201810310_137"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 001-115 - CS201810310_137"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_138",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n5|Glutamatergic"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Glutamatergic - CS201810310_138"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 001-055 - CS201810310_138"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_139",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : " - CS201810310_139"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n6"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 001-036 - CS201810310_139"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_132",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "PVM Mrc1|PVM"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "PVM Mrc1 - CS201810310_132"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 132 - CS201810310_132"
}, {
"id" : "http://brain_data_standards/scratch_3ec9bade-28da-11eb-9dce-0242ac110002",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "L5 IT VISp Batf3"
} ]
},
"type" : "CLASS",
"lbl" : "VISp_ALM 010"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_133",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "Microglia Siglech|Microglia"
}, {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : "Microglia Siglech - CS201810310_133"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 133 - CS201810310_133"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_134",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : " - CS201810310_134"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n1"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "All cells - CS201810310_134"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_135",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : " - CS201810310_135"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n2"
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "VISp_ALM 001-123 - CS201810310_135"
}, {
"id" : "http://brain_data_standards/scratch_3ec9da3c-28da-11eb-9dce-0242ac110002",
"type" : "CLASS",
"lbl" : "VISp_ALM 029-036"
}, {
"id" : "http://brain_data_standards/scratch_3ecaa9c6-28da-11eb-9dce-0242ac110002",
"type" : "CLASS",
"lbl" : "VISp_ALM 124-129"
}, {
"id" : "http://www.semanticweb.org/brain_data_standards/AllenDend_CS201810310_140",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2004/02/skos/core#prefLabel",
"val" : " - CS201810310_140"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#has_exact_synonym",
"val" : "n7"
} ]
},