-
Notifications
You must be signed in to change notification settings - Fork 0
/
dmbao-base.obo
27056 lines (22973 loc) · 846 KB
/
dmbao-base.obo
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
format-version: 1.2
data-version: https://purl.brain-bican.org/ontology/dmbao/releases/2024-07-10/dmbao-base.owl
ontology: https://purl.brain-bican.org/ontology/dmbao/dmbao-base.owl
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/
property_value: http://purl.org/dc/terms/title "Developing Mouse Brain Atlas Ontology" xsd:string
property_value: owl:versionInfo "2024-07-10" xsd:string
[Term]
id: CL:0000000
property_value: prefLabel "cell" xsd:string
[Term]
id: CL:0000008
property_value: prefLabel "migratory cranial neural crest cell" xsd:string
[Term]
id: CL:0000031
property_value: prefLabel "neuroblast (sensu Vertebrata)" xsd:string
[Term]
id: CL:0000034
property_value: prefLabel "stem cell" xsd:string
[Term]
id: CL:0000039
property_value: prefLabel "germ line cell" xsd:string
[Term]
id: CL:0000056
property_value: prefLabel "myoblast" xsd:string
[Term]
id: CL:0000057
property_value: prefLabel "fibroblast" xsd:string
[Term]
id: CL:0000064
property_value: prefLabel "ciliated cell" xsd:string
[Term]
id: CL:0000065
property_value: prefLabel "ependymal cell" xsd:string
[Term]
id: CL:0000066
property_value: prefLabel "epithelial cell" xsd:string
[Term]
id: CL:0000067
property_value: prefLabel "ciliated epithelial cell" xsd:string
[Term]
id: CL:0000071
property_value: prefLabel "blood vessel endothelial cell" xsd:string
[Term]
id: CL:0000075
property_value: prefLabel "columnar/cuboidal epithelial cell" xsd:string
[Term]
id: CL:0000076
property_value: prefLabel "squamous epithelial cell" xsd:string
[Term]
id: CL:0000098
property_value: prefLabel "sensory epithelial cell" xsd:string
[Term]
id: CL:0000099
property_value: prefLabel "interneuron" xsd:string
[Term]
id: CL:0000100
property_value: prefLabel "motor neuron" xsd:string
[Term]
id: CL:0000101
property_value: prefLabel "sensory neuron" xsd:string
[Term]
id: CL:0000108
property_value: prefLabel "cholinergic neuron" xsd:string
[Term]
id: CL:0000115
property_value: prefLabel "endothelial cell" xsd:string
[Term]
id: CL:0000118
property_value: prefLabel "basket cell" xsd:string
[Term]
id: CL:0000119
property_value: prefLabel "cerebellar Golgi cell" xsd:string
[Term]
id: CL:0000121
property_value: prefLabel "Purkinje cell" xsd:string
[Term]
id: CL:0000122
property_value: prefLabel "stellate neuron" xsd:string
[Term]
id: CL:0000125
property_value: prefLabel "glial cell" xsd:string
[Term]
id: CL:0000127
property_value: prefLabel "astrocyte" xsd:string
[Term]
id: CL:0000133
property_value: prefLabel "neurectodermal cell" xsd:string
[Term]
id: CL:0000136
property_value: prefLabel "adipocyte" xsd:string
[Term]
id: CL:0000138
property_value: prefLabel "chondrocyte" xsd:string
[Term]
id: CL:0000147
property_value: prefLabel "pigment cell" xsd:string
[Term]
id: CL:0000149
property_value: prefLabel "visual pigment cell" xsd:string
[Term]
id: CL:0000150
property_value: prefLabel "glandular epithelial cell" xsd:string
[Term]
id: CL:0000151
property_value: prefLabel "secretory cell" xsd:string
[Term]
id: CL:0000165
property_value: prefLabel "neuroendocrine cell" xsd:string
[Term]
id: CL:0000166
property_value: prefLabel "chromaffin cell" xsd:string
[Term]
id: CL:0000187
property_value: prefLabel "muscle cell" xsd:string
[Term]
id: CL:0000188
property_value: prefLabel "cell of skeletal muscle" xsd:string
[Term]
id: CL:0000192
property_value: prefLabel "smooth muscle cell" xsd:string
[Term]
id: CL:0000197
property_value: prefLabel "sensory receptor cell" xsd:string
[Term]
id: CL:0000206
property_value: prefLabel "chemoreceptor cell" xsd:string
[Term]
id: CL:0000207
property_value: prefLabel "olfactory receptor cell" xsd:string
[Term]
id: CL:0000209
property_value: prefLabel "taste receptor cell" xsd:string
[Term]
id: CL:0000210
property_value: prefLabel "photoreceptor cell" xsd:string
[Term]
id: CL:0000221
property_value: prefLabel "ectodermal cell" xsd:string
[Term]
id: CL:0000222
property_value: prefLabel "mesodermal cell" xsd:string
[Term]
id: CL:0000223
property_value: prefLabel "endodermal cell" xsd:string
[Term]
id: CL:0000228
property_value: prefLabel "multinucleate cell" xsd:string
[Term]
id: CL:0000232
property_value: prefLabel "erythrocyte" xsd:string
[Term]
id: CL:0000287
property_value: prefLabel "eye photoreceptor cell" xsd:string
[Term]
id: CL:0000295
property_value: prefLabel "somatotropin secreting cell" xsd:string
[Term]
id: CL:0000327
property_value: prefLabel "extracellular matrix secreting cell" xsd:string
[Term]
id: CL:0000333
property_value: prefLabel "migratory neural crest cell" xsd:string
[Term]
id: CL:0000335
property_value: prefLabel "mesenchyme condensation cell" xsd:string
[Term]
id: CL:0000347
property_value: prefLabel "scleral cell" xsd:string
[Term]
id: CL:0000352
property_value: prefLabel "epiblast cell" xsd:string
[Term]
id: CL:0000365
property_value: prefLabel "animal zygote" xsd:string
[Term]
id: CL:0000438
property_value: prefLabel "luteinizing hormone secreting cell" xsd:string
[Term]
id: CL:0000439
property_value: prefLabel "prolactin secreting cell" xsd:string
[Term]
id: CL:0000440
property_value: prefLabel "melanocyte stimulating hormone secreting cell" xsd:string
[Term]
id: CL:0000457
property_value: prefLabel "biogenic amine secreting cell" xsd:string
[Term]
id: CL:0000459
property_value: prefLabel "noradrenergic cell" xsd:string
[Term]
id: CL:0000467
property_value: prefLabel "adrenocorticotropic hormone secreting cell" xsd:string
[Term]
id: CL:0000526
property_value: prefLabel "afferent neuron" xsd:string
[Term]
id: CL:0000527
property_value: prefLabel "efferent neuron" xsd:string
[Term]
id: CL:0000540
property_value: prefLabel "neuron" xsd:string
[Term]
id: CL:0000555
property_value: prefLabel "neuronal brush cell" xsd:string
[Term]
id: CL:0000566
property_value: prefLabel "angioblastic mesenchymal cell" xsd:string
[Term]
id: CL:0000573
property_value: prefLabel "retinal cone cell" xsd:string
[Term]
id: CL:0000586
property_value: prefLabel "germ cell" xsd:string
[Term]
id: CL:0000598
property_value: prefLabel "pyramidal neuron" xsd:string
[Term]
id: CL:0000604
property_value: prefLabel "retinal rod cell" xsd:string
[Term]
id: CL:0000626
property_value: prefLabel "olfactory granule cell" xsd:string
[Term]
id: CL:0000636
property_value: prefLabel "Mueller cell" xsd:string
[Term]
id: CL:0000642
property_value: prefLabel "folliculostellate cell" xsd:string
[Term]
id: CL:0000680
property_value: prefLabel "muscle precursor cell" xsd:string
[Term]
id: CL:0000700
property_value: prefLabel "dopaminergic neuron" xsd:string
[Term]
id: CL:0000737
property_value: prefLabel "striated muscle cell" xsd:string
[Term]
id: CL:0000740
property_value: prefLabel "retinal ganglion cell" xsd:string
[Term]
id: CL:0000853
property_value: prefLabel "olfactory epithelial supporting cell" xsd:string
[Term]
id: CL:0000988
property_value: prefLabel "hematopoietic cell" xsd:string
[Term]
id: CL:0001031
property_value: prefLabel "cerebellar granule cell" xsd:string
[Term]
id: CL:0001033
property_value: prefLabel "hippocampal granule cell" xsd:string
[Term]
id: CL:0002077
property_value: prefLabel "ecto-epithelial cell" xsd:string
[Term]
id: CL:0002169
property_value: prefLabel "basal cell of olfactory epithelium" xsd:string
[Term]
id: CL:0002312
property_value: prefLabel "somatotroph" xsd:string
[Term]
id: CL:0002319
property_value: prefLabel "neural cell" xsd:string
[Term]
id: CL:0002320
property_value: prefLabel "connective tissue cell" xsd:string
[Term]
id: CL:0002494
property_value: prefLabel "cardiocyte" xsd:string
[Term]
id: CL:0002672
property_value: prefLabel "retinal progenitor cell" xsd:string
[Term]
id: CL:0005000
property_value: prefLabel "spinal cord interneuron" xsd:string
[Term]
id: CL:0007001
property_value: prefLabel "skeletogenic cell" xsd:string
[Term]
id: CL:0008002
property_value: prefLabel "skeletal muscle fiber" xsd:string
[Term]
id: CL:0008007
property_value: prefLabel "visceral muscle cell" xsd:string
[Term]
id: CL:0008019
property_value: prefLabel "mesenchymal cell" xsd:string
[Term]
id: CL:2000089
property_value: prefLabel "dentate gyrus granule cell" xsd:string
[Term]
id: DMBA:111220530
name: ventricular zone of PO
synonym: "POv" EXACT []
relationship: BFO:0000050 DMBA:15577 ! preoptic area
property_value: prefLabel "ventricular zone of PO" xsd:string
[Term]
id: DMBA:111220532
name: mantle zone of PO
synonym: "POm" EXACT []
relationship: BFO:0000050 DMBA:15577 ! preoptic area
property_value: prefLabel "mantle zone of PO" xsd:string
[Term]
id: DMBA:111220534
name: ventricular zone of SPall
synonym: "SPallv" EXACT []
relationship: BFO:0000050 DMBA:15751 ! subpallium
property_value: prefLabel "ventricular zone of SPall" xsd:string
[Term]
id: DMBA:111220536
name: mantle zone of SPall
synonym: "SPallm" EXACT []
relationship: BFO:0000050 DMBA:15751 ! subpallium
property_value: prefLabel "mantle zone of SPall" xsd:string
[Term]
id: DMBA:111220538
name: ventricular zone of CSPall
synonym: "CSPallv" EXACT []
relationship: BFO:0000050 DMBA:15818 ! central subpallium (classic basal ganglia)
property_value: prefLabel "ventricular zone of CSPall" xsd:string
[Term]
id: DMBA:111220540
name: mantle zone of CSPall
synonym: "CSPallm" EXACT []
relationship: BFO:0000050 DMBA:15818 ! central subpallium (classic basal ganglia)
property_value: prefLabel "mantle zone of CSPall" xsd:string
[Term]
id: DMBA:111220542
name: periventricular stratum of CSPall
synonym: "CSPallp" EXACT []
relationship: BFO:0000050 DMBA:111220540 ! mantle zone of CSPall
property_value: prefLabel "periventricular stratum of CSPall" xsd:string
[Term]
id: DMBA:111220544
name: intermediate stratum of CSPall
synonym: "CSPalli" EXACT []
relationship: BFO:0000050 DMBA:111220540 ! mantle zone of CSPall
property_value: prefLabel "intermediate stratum of CSPall" xsd:string
[Term]
id: DMBA:111220546
name: superficial stratum of CSPall
synonym: "CSPalls" EXACT []
relationship: BFO:0000050 DMBA:111220540 ! mantle zone of CSPall
property_value: prefLabel "superficial stratum of CSPall" xsd:string
[Term]
id: DMBA:111220548
name: ventricular zone of Pall
synonym: "Pallv" EXACT []
relationship: BFO:0000050 DMBA:15903 ! pallium
property_value: prefLabel "ventricular zone of Pall" xsd:string
[Term]
id: DMBA:111220550
name: mantle zone of Pall
synonym: "Pallm" EXACT []
relationship: BFO:0000050 DMBA:15903 ! pallium
property_value: prefLabel "mantle zone of Pall" xsd:string
[Term]
id: DMBA:111220552
name: ventricular zone of DPall
synonym: "DPallv" EXACT []
relationship: BFO:0000050 DMBA:16001 ! dorsal pallium/isocortex
property_value: prefLabel "ventricular zone of DPall" xsd:string
[Term]
id: DMBA:111220554
name: mantle zone of DPall
synonym: "DPallm" EXACT []
relationship: BFO:0000050 DMBA:16001 ! dorsal pallium/isocortex
property_value: prefLabel "mantle zone of DPall" xsd:string
[Term]
id: DMBA:111220556
name: periventricular stratum of DPall
synonym: "DPallp" EXACT []
relationship: BFO:0000050 DMBA:111220554 ! mantle zone of DPall
property_value: prefLabel "periventricular stratum of DPall" xsd:string
[Term]
id: DMBA:111220558
name: intermediate stratum of DPall
synonym: "DPalli" EXACT []
relationship: BFO:0000050 DMBA:111220554 ! mantle zone of DPall
property_value: prefLabel "intermediate stratum of DPall" xsd:string
[Term]
id: DMBA:111220560
name: superficial stratum of DPall
synonym: "DPalls" EXACT []
relationship: BFO:0000050 DMBA:111220554 ! mantle zone of DPall
property_value: prefLabel "superficial stratum of DPall" xsd:string
[Term]
id: DMBA:111220562
name: ventricular zone of MPall
synonym: "MPallv" EXACT []
relationship: BFO:0000050 DMBA:16114 ! medial pallium (hippocampal allocortex)
property_value: prefLabel "ventricular zone of MPall" xsd:string
[Term]
id: DMBA:111220564
name: mantle zone of MPall
synonym: "MPallm" EXACT []
relationship: BFO:0000050 DMBA:16114 ! medial pallium (hippocampal allocortex)
property_value: prefLabel "mantle zone of MPall" xsd:string
[Term]
id: DMBA:111220566
name: periventricular stratum of MPall
synonym: "MPallp" EXACT []
relationship: BFO:0000050 DMBA:111220564 ! mantle zone of MPall
property_value: prefLabel "periventricular stratum of MPall" xsd:string
[Term]
id: DMBA:111220568
name: intermediate stratum of MPall
synonym: "MPalli" EXACT []
relationship: BFO:0000050 DMBA:111220564 ! mantle zone of MPall
property_value: prefLabel "intermediate stratum of MPall" xsd:string
[Term]
id: DMBA:111220570
name: superficial stratum of MPall
synonym: "MPalls" EXACT []
relationship: BFO:0000050 DMBA:111220564 ! mantle zone of MPall
property_value: prefLabel "superficial stratum of MPall" xsd:string
[Term]
id: DMBA:111220572
name: layer 6a of PaS
synonym: "PaS-6a" EXACT []
relationship: BFO:0000050 DMBA:16197 ! layer 6 of PaS
property_value: prefLabel "layer 6a of PaS" xsd:string
[Term]
id: DMBA:111220574
name: layer 6b of PaS
synonym: "PaS-6b" EXACT []
relationship: BFO:0000050 DMBA:16197 ! layer 6 of PaS
property_value: prefLabel "layer 6b of PaS" xsd:string
[Term]
id: DMBA:111220576
name: ventricular zone of p3Ch
synonym: "p3Chv" EXACT []
relationship: BFO:0000050 DMBA:16312 ! choroidal tissue of p3
property_value: prefLabel "ventricular zone of p3Ch" xsd:string
[Term]
id: DMBA:111220578
name: mantle zone of p3Ch
synonym: "p3Chm" EXACT []
relationship: BFO:0000050 DMBA:16312 ! choroidal tissue of p3
property_value: prefLabel "mantle zone of p3Ch" xsd:string
[Term]
id: DMBA:111220580
name: ventricular zone of p3APV
synonym: "p3APVv" EXACT []
relationship: BFO:0000050 DMBA:16332 ! posteroventral part of alar p3
property_value: prefLabel "ventricular zone of p3APV" xsd:string
[Term]
id: DMBA:111220582
name: mantle zone of p3APV
synonym: "p3APVm" EXACT []
relationship: BFO:0000050 DMBA:16332 ! posteroventral part of alar p3
property_value: prefLabel "mantle zone of p3APV" xsd:string
[Term]
id: DMBA:111220584
name: ventricular zone of p2Ch
synonym: "p2Chv" EXACT []
relationship: BFO:0000050 DMBA:16378 ! choroidal tissue of p2
property_value: prefLabel "ventricular zone of p2Ch" xsd:string
[Term]
id: DMBA:111220586
name: mantle zone of p2Ch
synonym: "p2Chm" EXACT []
relationship: BFO:0000050 DMBA:16378 ! choroidal tissue of p2
property_value: prefLabel "mantle zone of p2Ch" xsd:string
[Term]
id: DMBA:111220588
name: ventricular zone of p2AL
synonym: "p2ALv" EXACT []
relationship: BFO:0000050 DMBA:16395 ! lateral part of alar p2
property_value: prefLabel "ventricular zone of p2AL" xsd:string
[Term]
id: DMBA:111220590
name: mantle zone of p2AL
synonym: "p2ALm" EXACT []
relationship: BFO:0000050 DMBA:16395 ! lateral part of alar p2
property_value: prefLabel "mantle zone of p2AL" xsd:string
[Term]
id: DMBA:111220592
name: ventricular zone of p2AAV
synonym: "p2AAVv" EXACT []
relationship: BFO:0000050 DMBA:16466 ! anteroventral part of alar thalamus
property_value: prefLabel "ventricular zone of p2AAV" xsd:string
[Term]
id: DMBA:111220594
name: mantle zone of p2AAV
synonym: "p2AAVm" EXACT []
relationship: BFO:0000050 DMBA:16466 ! anteroventral part of alar thalamus
property_value: prefLabel "mantle zone of p2AAV" xsd:string
[Term]
id: DMBA:111220596
name: ventricular zone of PcP
synonym: "PcPv" EXACT []
relationship: BFO:0000050 DMBA:16520 ! precommissural pretectal domain
property_value: prefLabel "ventricular zone of PcP" xsd:string
[Term]
id: DMBA:111220598
name: mantle zone of PcP
synonym: "PcPm" EXACT []
relationship: BFO:0000050 DMBA:16520 ! precommissural pretectal domain
property_value: prefLabel "mantle zone of PcP" xsd:string
[Term]
id: DMBA:111220600
name: ventricular zone of JcP
synonym: "JcPv" EXACT []
relationship: BFO:0000050 DMBA:16548 ! juxtacommissural pretectal domain
property_value: prefLabel "ventricular zone of JcP" xsd:string
[Term]
id: DMBA:111220602
name: mantle zone of JcP
synonym: "JcPm" EXACT []
relationship: BFO:0000050 DMBA:16548 ! juxtacommissural pretectal domain
property_value: prefLabel "mantle zone of JcP" xsd:string
[Term]
id: DMBA:111220604
name: ventricular zone of CoP
synonym: "CoPv" EXACT []
relationship: BFO:0000050 DMBA:16578 ! commissural pretectal domain
property_value: prefLabel "ventricular zone of CoP" xsd:string
[Term]
id: DMBA:111220606
name: mantle zone of CoP
synonym: "CoPm" EXACT []
relationship: BFO:0000050 DMBA:16578 ! commissural pretectal domain
property_value: prefLabel "mantle zone of CoP" xsd:string
[Term]
id: DMBA:111220608
name: ventricular zone of p1AVL
synonym: "p1AVLv" EXACT []
relationship: BFO:0000050 DMBA:16612 ! ventrolateral part of alar p1
property_value: prefLabel "ventricular zone of p1AVL" xsd:string
[Term]
id: DMBA:111220610
name: mantle zone of p1AVL
synonym: "p1AVLm" EXACT []
relationship: BFO:0000050 DMBA:16612 ! ventrolateral part of alar p1
property_value: prefLabel "mantle zone of p1AVL" xsd:string
[Term]
id: DMBA:111220612
name: ventricular zone of isADL
synonym: "isADLv" EXACT []
relationship: BFO:0000050 DMBA:16843 ! dorsolateral (non-cerebellar) part of isA
property_value: prefLabel "ventricular zone of isADL" xsd:string
[Term]
id: DMBA:111220614
name: mantle zone of isADL
synonym: "isADLm" EXACT []
relationship: BFO:0000050 DMBA:16843 ! dorsolateral (non-cerebellar) part of isA
property_value: prefLabel "mantle zone of isADL" xsd:string
[Term]
id: DMBA:111220616
name: ventricular zone of isB
synonym: "isBv" EXACT []
relationship: BFO:0000050 DMBA:16876 ! isthmic basal plate
property_value: prefLabel "ventricular zone of isB" xsd:string
[Term]
id: DMBA:111220618
name: mantle zone of isB
synonym: "isBm" EXACT []
relationship: BFO:0000050 DMBA:16876 ! isthmic basal plate
property_value: prefLabel "mantle zone of isB" xsd:string
[Term]
id: DMBA:111220620
name: ventricular zone of r1A
synonym: "r1Av" EXACT []
relationship: BFO:0000050 DMBA:16919 ! r1 alar plate
property_value: prefLabel "ventricular zone of r1A" xsd:string
[Term]
id: DMBA:111220622
name: mantle zone of r1A
synonym: "r1Am" EXACT []
relationship: BFO:0000050 DMBA:16919 ! r1 alar plate
property_value: prefLabel "mantle zone of r1A" xsd:string
[Term]
id: DMBA:111220624
name: periventricular stratum of r1Ve
synonym: "r1Vep" EXACT []
relationship: BFO:0000050 DMBA:16952 ! mantle zone of r1Ve
property_value: prefLabel "periventricular stratum of r1Ve" xsd:string
[Term]
id: DMBA:111220626
name: intermediate stratum of r1Ve
synonym: "r1Vei" EXACT []
relationship: BFO:0000050 DMBA:16952 ! mantle zone of r1Ve
property_value: prefLabel "intermediate stratum of r1Ve" xsd:string
[Term]
id: DMBA:111220628
name: superficial stratum of r1Ve
synonym: "r1Ves" EXACT []
relationship: BFO:0000050 DMBA:16952 ! mantle zone of r1Ve
property_value: prefLabel "superficial stratum of r1Ve" xsd:string
[Term]
id: DMBA:111220630
name: periventricular stratum of r1Tr
synonym: "r1Trp" EXACT []
relationship: BFO:0000050 DMBA:16956 ! mantle zone of r1Tr
property_value: prefLabel "periventricular stratum of r1Tr" xsd:string
[Term]
id: DMBA:111220632
name: intermediate stratum of r1Tr
synonym: "r1Tri" EXACT []
relationship: BFO:0000050 DMBA:16956 ! mantle zone of r1Tr
property_value: prefLabel "intermediate stratum of r1Tr" xsd:string
[Term]
id: DMBA:111220634
name: superficial stratum of r1Tr
synonym: "r1Trs" EXACT []
relationship: BFO:0000050 DMBA:16956 ! mantle zone of r1Tr
property_value: prefLabel "superficial stratum of r1Tr" xsd:string
[Term]
id: DMBA:111220636
name: periventricular stratum of r1Lim
synonym: "r1Limp" EXACT []
relationship: BFO:0000050 DMBA:16961 ! mantle zone of r1Lim
property_value: prefLabel "periventricular stratum of r1Lim" xsd:string
[Term]
id: DMBA:111220638
name: intermediate stratum of r1Lim
synonym: "r1Limi" EXACT []
relationship: BFO:0000050 DMBA:16961 ! mantle zone of r1Lim
property_value: prefLabel "intermediate stratum of r1Lim" xsd:string
[Term]
id: DMBA:111220640
name: superficial stratum of r1Lim
synonym: "r1Lims" EXACT []
relationship: BFO:0000050 DMBA:16961 ! mantle zone of r1Lim
property_value: prefLabel "superficial stratum of r1Lim" xsd:string
[Term]
id: DMBA:111220642
name: ventricular zone of r1B
synonym: "r1Bv" EXACT []
relationship: BFO:0000050 DMBA:16967 ! r1 basal plate
property_value: prefLabel "ventricular zone of r1B" xsd:string
[Term]
id: DMBA:111220644
name: mantle zone of r1B
synonym: "r1Bm" EXACT []
relationship: BFO:0000050 DMBA:16967 ! r1 basal plate
property_value: prefLabel "mantle zone of r1B" xsd:string
[Term]
id: DMBA:111220646
name: ventricular zone of r2A
synonym: "r2Av" EXACT []
relationship: BFO:0000050 DMBA:17025 ! r2 alar plate
property_value: prefLabel "ventricular zone of r2A" xsd:string
[Term]
id: DMBA:111220648
name: mantle zone of r2A
synonym: "r2Am" EXACT []
relationship: BFO:0000050 DMBA:17025 ! r2 alar plate
property_value: prefLabel "mantle zone of r2A" xsd:string
[Term]
id: DMBA:111220650
name: periventricular stratum of r2Co
synonym: "r2Cop" EXACT []
relationship: BFO:0000050 DMBA:17028 ! mantle zone of r2Co
property_value: prefLabel "periventricular stratum of r2Co" xsd:string
[Term]
id: DMBA:111220652
name: intermediate stratum of r2Co
synonym: "r2Coi" EXACT []
relationship: BFO:0000050 DMBA:17028 ! mantle zone of r2Co
property_value: prefLabel "intermediate stratum of r2Co" xsd:string
[Term]
id: DMBA:111220654
name: superficial stratum of r2Co
synonym: "r2Cos" EXACT []
relationship: BFO:0000050 DMBA:17028 ! mantle zone of r2Co
property_value: prefLabel "superficial stratum of r2Co" xsd:string
[Term]
id: DMBA:111220656
name: periventricular stratum of r2Ve
synonym: "r2Vep" EXACT []
relationship: BFO:0000050 DMBA:17033 ! mantle zone of r2Ve
property_value: prefLabel "periventricular stratum of r2Ve" xsd:string
[Term]
id: DMBA:111220658
name: intermediate stratum of r2Ve
synonym: "r2Vei" EXACT []
relationship: BFO:0000050 DMBA:17033 ! mantle zone of r2Ve
property_value: prefLabel "intermediate stratum of r2Ve" xsd:string
[Term]
id: DMBA:111220660
name: superficial stratum of r2Ve
synonym: "r2Ves" EXACT []
relationship: BFO:0000050 DMBA:17033 ! mantle zone of r2Ve
property_value: prefLabel "superficial stratum of r2Ve" xsd:string
[Term]
id: DMBA:111220662
name: periventricular stratum of r2Tr
synonym: "r2Trp" EXACT []
relationship: BFO:0000050 DMBA:17038 ! mantle zone of r2Tr
property_value: prefLabel "periventricular stratum of r2Tr" xsd:string
[Term]
id: DMBA:111220664
name: intermediate stratum of r2Tr
synonym: "r2Tri" EXACT []
relationship: BFO:0000050 DMBA:17038 ! mantle zone of r2Tr
property_value: prefLabel "intermediate stratum of r2Tr" xsd:string
[Term]
id: DMBA:111220666
name: superficial stratum of r2Tr
synonym: "r2Trs" EXACT []
relationship: BFO:0000050 DMBA:17038 ! mantle zone of r2Tr
property_value: prefLabel "superficial stratum of r2Tr" xsd:string
[Term]
id: DMBA:111220668
name: periventricular stratum of r2Lim
synonym: "r2Limp" EXACT []
relationship: BFO:0000050 DMBA:17044 ! mantle zone of r2Lim
property_value: prefLabel "periventricular stratum of r2Lim" xsd:string
[Term]
id: DMBA:111220670
name: intermediate stratum of r2Lim
synonym: "r2Limi" EXACT []
relationship: BFO:0000050 DMBA:17044 ! mantle zone of r2Lim
property_value: prefLabel "intermediate stratum of r2Lim" xsd:string
[Term]
id: DMBA:111220672
name: superficial stratum of r2Lim
synonym: "r2Lims" EXACT []
relationship: BFO:0000050 DMBA:17044 ! mantle zone of r2Lim
property_value: prefLabel "superficial stratum of r2Lim" xsd:string
[Term]
id: DMBA:111220674
name: ventricular zone of r2B
synonym: "r2Bv" EXACT []
relationship: BFO:0000050 DMBA:17053 ! r2 basal plate
property_value: prefLabel "ventricular zone of r2B" xsd:string
[Term]
id: DMBA:111220676
name: mantle zone of r2B
synonym: "r2Bm" EXACT []
relationship: BFO:0000050 DMBA:17053 ! r2 basal plate
property_value: prefLabel "mantle zone of r2B" xsd:string
[Term]
id: DMBA:111220678
name: ventricular zone of r3A
synonym: "r3Av" EXACT []
relationship: BFO:0000050 DMBA:17095 ! r3 alar plate
property_value: prefLabel "ventricular zone of r3A" xsd:string
[Term]
id: DMBA:111220680
name: mantle zone of r3A
synonym: "r3Am" EXACT []
relationship: BFO:0000050 DMBA:17095 ! r3 alar plate
property_value: prefLabel "mantle zone of r3A" xsd:string
[Term]
id: DMBA:111220682
name: periventricular stratum of r3Co
synonym: "r3Cop" EXACT []
relationship: BFO:0000050 DMBA:17098 ! mantle zone of r3Co
property_value: prefLabel "periventricular stratum of r3Co" xsd:string
[Term]
id: DMBA:111220684
name: intermediate stratum of r3Co
synonym: "r3Coi" EXACT []
relationship: BFO:0000050 DMBA:17098 ! mantle zone of r3Co
property_value: prefLabel "intermediate stratum of r3Co" xsd:string
[Term]
id: DMBA:111220686
name: superficial stratum of r3Co
synonym: "r3Cos" EXACT []
relationship: BFO:0000050 DMBA:17098 ! mantle zone of r3Co
property_value: prefLabel "superficial stratum of r3Co" xsd:string
[Term]
id: DMBA:111220688
name: periventricular stratum of r3Ve
synonym: "r3Vep" EXACT []
relationship: BFO:0000050 DMBA:17103 ! mantle zone of r3Ve
property_value: prefLabel "periventricular stratum of r3Ve" xsd:string
[Term]
id: DMBA:111220690
name: intermediate stratum of r3Ve
synonym: "r3Vei" EXACT []
relationship: BFO:0000050 DMBA:17103 ! mantle zone of r3Ve
property_value: prefLabel "intermediate stratum of r3Ve" xsd:string
[Term]
id: DMBA:111220692
name: superficial stratum of r3Ve
synonym: "r3Ves" EXACT []
relationship: BFO:0000050 DMBA:17103 ! mantle zone of r3Ve
property_value: prefLabel "superficial stratum of r3Ve" xsd:string
[Term]
id: DMBA:111220694
name: periventricular stratum of r3Tr
synonym: "r3Trp" EXACT []
relationship: BFO:0000050 DMBA:17109 ! mantle zone of r3Tr
property_value: prefLabel "periventricular stratum of r3Tr" xsd:string
[Term]
id: DMBA:111220696
name: intermediate stratum of r3Tr
synonym: "r3Tri" EXACT []
relationship: BFO:0000050 DMBA:17109 ! mantle zone of r3Tr
property_value: prefLabel "intermediate stratum of r3Tr" xsd:string
[Term]
id: DMBA:111220698
name: superficial stratum of r3Tr
synonym: "r3Trs" EXACT []
relationship: BFO:0000050 DMBA:17109 ! mantle zone of r3Tr
property_value: prefLabel "superficial stratum of r3Tr" xsd:string
[Term]
id: DMBA:111220700
name: periventricular stratum of r3Lim
synonym: "r3Limp" EXACT []
relationship: BFO:0000050 DMBA:17115 ! mantle zone of r3Lim
property_value: prefLabel "periventricular stratum of r3Lim" xsd:string
[Term]
id: DMBA:111220702
name: intermediate stratum of r3Lim
synonym: "r3Limi" EXACT []
relationship: BFO:0000050 DMBA:17115 ! mantle zone of r3Lim
property_value: prefLabel "intermediate stratum of r3Lim" xsd:string
[Term]
id: DMBA:111220704
name: superficial stratum of r3Lim