-
Notifications
You must be signed in to change notification settings - Fork 0
/
pbao-simple-non-classified.obo
2096 lines (1803 loc) · 63.7 KB
/
pbao-simple-non-classified.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/pbao/releases/2023-08-24/pbao-simple-non-classified.owl
ontology: https://purl.brain-bican.org/ontology/pbao/pbao-simple-non-classified.owl
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/unspecified
property_value: http://purl.org/dc/terms/title "Primate Brain Atlas Ontology" xsd:string
property_value: owl:versionInfo "2023-08-24" xsd:string
[Term]
id: ABA:Brain
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "brain (ABA)" xsd:string
[Term]
id: ABA:CTX1
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "cortical layer I (ABA)" xsd:string
[Term]
id: ABA:CTX1-6b
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "layer of neocortex (ABA)" xsd:string
[Term]
id: ABA:CTX2
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "cortical layer II (ABA)" xsd:string
[Term]
id: ABA:CTX3
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "cortical layer III (ABA)" xsd:string
[Term]
id: ABA:CTX4
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "cortical layer IV (ABA)" xsd:string
[Term]
id: ABA:CTX5
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "cortical layer V (ABA)" xsd:string
[Term]
id: ABA:CTX6
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "cortical layer VI (ABA)" xsd:string
[Term]
id: ABA:ENTITY
name: ABA entity
relationship: only_in_taxon NCBITaxon:10090
relationship: part_of NCBITaxon:10090
property_value: prefLabel "ABA entity" xsd:string
[Term]
id: ABA:SNI
relationship: part_of NCBITaxon:10090
property_value: IAO:0000589 "substantia nigra pars lateralis (ABA)" xsd:string
[Term]
id: NCBITaxon:10090
property_value: prefLabel "Mus musculus" xsd:string
[Term]
id: NCBITaxon:9443
property_value: prefLabel "Primates" xsd:string
[Term]
id: PBA:10000
name: layer I of rostral cingulate cortex
synonym: "rCG1" EXACT []
relationship: part_of PBA:294021786 ! layer I
property_value: prefLabel "layer I of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10001
name: layer II of rostral cingulate cortex
synonym: "rCG2" EXACT []
relationship: part_of PBA:294021800 ! layer II
property_value: prefLabel "layer II of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10002
name: layer III of rostral cingulate cortex
synonym: "rCG3" EXACT []
relationship: part_of PBA:294021824 ! layer III
property_value: prefLabel "layer III of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10003
name: granular layer IV of rostral cingulate cortex
synonym: "rCG4" EXACT []
relationship: part_of PBA:294021852 ! layer IV
property_value: prefLabel "granular layer IV of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10004
name: layer V of rostral cingulate cortex
synonym: "rCG5" EXACT []
relationship: part_of PBA:294021878 ! layer V
property_value: prefLabel "layer V of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10005
name: layer VI of rostral cingulate cortex
synonym: "rCG6" EXACT []
relationship: part_of PBA:294021896 ! layer VI
property_value: prefLabel "layer VI of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10007
name: white matter of rostral cingulate cortex
synonym: "rCGwm" EXACT []
relationship: part_of PBA:294022044 ! white matter
property_value: prefLabel "white matter of rostral cingulate cortex" xsd:string
[Term]
id: PBA:10008
name: medial orbital frontal cortex (area 14)
synonym: "mOF" EXACT []
relationship: part_of PBA:294021746 ! neocortex
property_value: prefLabel "medial orbital frontal cortex (area 14)" xsd:string
[Term]
id: PBA:10009
name: layer I of medial orbitofrontal cortex
synonym: "mOF1" EXACT []
relationship: part_of PBA:294021786 ! layer I
property_value: prefLabel "layer I of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10010
name: layer II of medial orbitofrontal cortex
synonym: "mOF2" EXACT []
relationship: part_of PBA:294021800 ! layer II
property_value: prefLabel "layer II of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10011
name: layer III of medial orbitofrontal cortex
synonym: "mOF3" EXACT []
relationship: part_of PBA:294021824 ! layer III
property_value: prefLabel "layer III of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10012
name: granular layer IV of medial orbitofrontal cortex
synonym: "mOF4" EXACT []
relationship: part_of PBA:294021852 ! layer IV
property_value: prefLabel "granular layer IV of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10013
name: layer V of medial orbitofrontal cortex
synonym: "mOF5" EXACT []
relationship: part_of PBA:294021878 ! layer V
property_value: prefLabel "layer V of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10014
name: layer VI of medial orbitofrontal cortex
synonym: "mOF6" EXACT []
relationship: part_of PBA:294021896 ! layer VI
property_value: prefLabel "layer VI of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10016
name: white matter of medial orbitofrontal cortex
synonym: "mOFwm" EXACT []
relationship: part_of PBA:294022044 ! white matter
property_value: prefLabel "white matter of medial orbitofrontal cortex" xsd:string
[Term]
id: PBA:10017
name: caudal orbital frontal cortex (area 13)
synonym: "cOF" EXACT []
relationship: part_of PBA:294021746 ! neocortex
property_value: prefLabel "caudal orbital frontal cortex (area 13)" xsd:string
[Term]
id: PBA:10018
name: layer I of caudal orbitofrontal cortex
synonym: "cOF1" EXACT []
relationship: part_of PBA:294021786 ! layer I
property_value: prefLabel "layer I of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10019
name: layer II of caudal orbitofrontal cortex
synonym: "cOF2" EXACT []
relationship: part_of PBA:294021800 ! layer II
property_value: prefLabel "layer II of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10020
name: layer III of caudal orbitofrontal cortex
synonym: "cOF3" EXACT []
relationship: part_of PBA:294021824 ! layer III
property_value: prefLabel "layer III of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10021
name: granular layer IV of caudal orbitofrontal cortex
synonym: "cOF4" EXACT []
relationship: part_of PBA:294021852 ! layer IV
property_value: prefLabel "granular layer IV of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10022
name: layer V of caudal orbitofrontal cortex
synonym: "cOF5" EXACT []
relationship: part_of PBA:294021878 ! layer V
property_value: prefLabel "layer V of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10023
name: layer VI of caudal orbitofrontal cortex
synonym: "cOF6" EXACT []
relationship: part_of PBA:294021896 ! layer VI
property_value: prefLabel "layer VI of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10025
name: white matter of caudal orbitofrontal cortex
synonym: "cOFwm" EXACT []
relationship: part_of PBA:294022044 ! white matter
property_value: prefLabel "white matter of caudal orbitofrontal cortex" xsd:string
[Term]
id: PBA:10026
name: primary visual cortex (V1, striate cortex, area 17)
synonym: "V1" EXACT []
relationship: part_of PBA:4004 ! occipital cortex
property_value: IAO:0000589 "Brodmann (1909) area 17 (PBA)" xsd:string
property_value: prefLabel "primary visual cortex (V1, striate cortex, area 17)" xsd:string
[Term]
id: PBA:10027
name: layer I of V1
synonym: "V1-1" EXACT []
relationship: part_of PBA:294021786 ! layer I
property_value: prefLabel "layer I of V1" xsd:string
[Term]
id: PBA:10028
name: layer II of V1
synonym: "V1-2" EXACT []
relationship: part_of PBA:294021800 ! layer II
property_value: prefLabel "layer II of V1" xsd:string
[Term]
id: PBA:10029
name: layer III of V1
synonym: "V1-3" EXACT []
relationship: part_of PBA:294021824 ! layer III
property_value: prefLabel "layer III of V1" xsd:string
[Term]
id: PBA:10030
name: granular layer IV of V1
synonym: "V1-4" EXACT []
relationship: part_of PBA:294021852 ! layer IV
property_value: prefLabel "granular layer IV of V1" xsd:string
[Term]
id: PBA:10031
name: layer IVA of V1
synonym: "V1-4A" EXACT []
relationship: part_of PBA:10030 ! granular layer IV of V1
property_value: prefLabel "layer IVA of V1" xsd:string
[Term]
id: PBA:10032
name: layer IVB of V1
synonym: "V1-4B" EXACT []
relationship: part_of PBA:10030 ! granular layer IV of V1
property_value: prefLabel "layer IVB of V1" xsd:string
[Term]
id: PBA:10033
name: layer IVCa of V1
synonym: "V14Ca" EXACT []
relationship: part_of PBA:10030 ! granular layer IV of V1
property_value: prefLabel "layer IVCa of V1" xsd:string
[Term]
id: PBA:10034
name: layer IVCb of V1
synonym: "V14Cb" EXACT []
relationship: part_of PBA:10030 ! granular layer IV of V1
property_value: prefLabel "layer IVCb of V1" xsd:string
[Term]
id: PBA:10035
name: layer V of V1
synonym: "V1-5" EXACT []
relationship: part_of PBA:294021878 ! layer V
property_value: prefLabel "layer V of V1" xsd:string
[Term]
id: PBA:10036
name: layer VI of V1
synonym: "V1-6" EXACT []
relationship: part_of PBA:294021896 ! layer VI
property_value: prefLabel "layer VI of V1" xsd:string
[Term]
id: PBA:10038
name: white matter of V1
synonym: "V1wm" EXACT []
relationship: part_of PBA:294022044 ! white matter
property_value: prefLabel "white matter of V1" xsd:string
[Term]
id: PBA:10039
name: parastriate cortex (V2, area 18)
synonym: "V2" EXACT []
relationship: part_of PBA:4004 ! occipital cortex
property_value: IAO:0000589 "Brodmann (1909) area 18 (PBA)" xsd:string
property_value: prefLabel "parastriate cortex (V2, area 18)" xsd:string
[Term]
id: PBA:10040
name: layer I of V2
synonym: "V2-1" EXACT []
relationship: part_of PBA:294021786 ! layer I
property_value: prefLabel "layer I of V2" xsd:string
[Term]
id: PBA:10041
name: layer II of V2
synonym: "V2-2" EXACT []
relationship: part_of PBA:294021800 ! layer II
property_value: prefLabel "layer II of V2" xsd:string
[Term]
id: PBA:10042
name: layer III of V2
synonym: "V2-3" EXACT []
relationship: part_of PBA:294021824 ! layer III
property_value: prefLabel "layer III of V2" xsd:string
[Term]
id: PBA:10043
name: granular layer IV of V2
synonym: "V2-4" EXACT []
relationship: part_of PBA:294021852 ! layer IV
property_value: prefLabel "granular layer IV of V2" xsd:string
[Term]
id: PBA:10048
name: layer V of V2
synonym: "V2_L5" EXACT []
relationship: part_of PBA:294021878 ! layer V
property_value: prefLabel "layer V of V2" xsd:string
[Term]
id: PBA:10049
name: layer VI of V2
synonym: "V2-6" EXACT []
relationship: part_of PBA:294021896 ! layer VI
property_value: prefLabel "layer VI of V2" xsd:string
[Term]
id: PBA:10051
name: white matter of V2
synonym: "V2wm" EXACT []
relationship: part_of PBA:294022044 ! white matter
property_value: prefLabel "white matter of V2" xsd:string
[Term]
id: PBA:10053
name: prosubiculum
synonym: "ProS" EXACT []
relationship: part_of PBA:128012354 ! subicular cortex
property_value: prefLabel "prosubiculum" xsd:string
[Term]
id: PBA:10054
name: subiculum
synonym: "S" EXACT []
relationship: part_of PBA:128012354 ! subicular cortex
property_value: IAO:0000589 "subiculum (PBA)" xsd:string
property_value: prefLabel "subiculum" xsd:string
[Term]
id: PBA:10055
name: presubicular cortex (presubiculum)
synonym: "PrS" EXACT []
relationship: part_of PBA:4003 ! hippocampal cortex (hippocampal formation)
property_value: prefLabel "presubicular cortex (presubiculum)" xsd:string
[Term]
id: PBA:10058
name: CA1 region
synonym: "CA1" EXACT []
relationship: part_of PBA:128012244 ! hippocampal proper
property_value: IAO:0000589 "CA1 field of hippocampus (PBA)" xsd:string
property_value: prefLabel "CA1 region" xsd:string
[Term]
id: PBA:10059
name: stratum oriens of CA1
synonym: "CA1or" EXACT []
relationship: part_of PBA:128012264 ! hippocampal subplate of CA1
property_value: IAO:0000589 "CA1 stratum oriens (PBA)" xsd:string
property_value: prefLabel "stratum oriens of CA1" xsd:string
[Term]
id: PBA:10060
name: stratum pyramidale of CA1
synonym: "CA1py" EXACT []
relationship: part_of PBA:128012258 ! hippocampal plate of CA1
property_value: IAO:0000589 "pyramidal layer of CA1 (PBA)" xsd:string
property_value: prefLabel "stratum pyramidale of CA1" xsd:string
[Term]
id: PBA:10061
name: stratum radiatum of CA1
synonym: "CA1ra" EXACT []
relationship: part_of PBA:128012250 ! marginal zone of CA1
property_value: IAO:0000589 "CA1 stratum radiatum (PBA)" xsd:string
property_value: prefLabel "stratum radiatum of CA1" xsd:string
[Term]
id: PBA:10062
name: stratum lacunosum-moleculare of CA1
synonym: "CA1lm" EXACT []
relationship: part_of PBA:128012250 ! marginal zone of CA1
property_value: IAO:0000589 "CA1 stratum lacunosum moleculare (PBA)" xsd:string
property_value: prefLabel "stratum lacunosum-moleculare of CA1" xsd:string
[Term]
id: PBA:10063
name: CA2 region
synonym: "CA2" EXACT []
relationship: part_of PBA:128012244 ! hippocampal proper
property_value: IAO:0000589 "CA2 field of hippocampus (PBA)" xsd:string
property_value: prefLabel "CA2 region" xsd:string
[Term]
id: PBA:10064
name: stratum oriens of CA2
synonym: "CA2or" EXACT []
relationship: part_of PBA:128012298 ! hippocampal subplate of CA2
property_value: IAO:0000589 "CA2 stratum oriens (PBA)" xsd:string
property_value: prefLabel "stratum oriens of CA2" xsd:string
[Term]
id: PBA:10065
name: stratum pyramidale of CA2
synonym: "CA2py" EXACT []
relationship: part_of PBA:128012292 ! hippocampal plate of CA2
property_value: IAO:0000589 "pyramidal layer of CA2 (PBA)" xsd:string
property_value: prefLabel "stratum pyramidale of CA2" xsd:string
[Term]
id: PBA:10066
name: stratum radiatum of CA2
synonym: "CA2ra" EXACT []
relationship: part_of PBA:128012284 ! marginal zone of CA2
property_value: IAO:0000589 "CA2 stratum radiatum (PBA)" xsd:string
property_value: prefLabel "stratum radiatum of CA2" xsd:string
[Term]
id: PBA:10067
name: stratum lacunosum-moleculare of CA2
synonym: "CA2lm" EXACT []
relationship: part_of PBA:128012284 ! marginal zone of CA2
property_value: IAO:0000589 "CA2 stratum lacunosum moleculare (PBA)" xsd:string
property_value: prefLabel "stratum lacunosum-moleculare of CA2" xsd:string
[Term]
id: PBA:10068
name: CA3 region
synonym: "CA3" EXACT []
relationship: part_of PBA:128012244 ! hippocampal proper
property_value: IAO:0000589 "CA3 field of hippocampus (PBA)" xsd:string
property_value: prefLabel "CA3 region" xsd:string
[Term]
id: PBA:10069
name: stratum oriens of CA3
synonym: "CA3or" EXACT []
relationship: part_of PBA:128012332 ! hippocampal subplate of CA3
property_value: IAO:0000589 "CA3 stratum oriens (PBA)" xsd:string
property_value: prefLabel "stratum oriens of CA3" xsd:string
[Term]
id: PBA:10070
name: stratum pyramidale of CA3
synonym: "CA3py" EXACT []
relationship: part_of PBA:128012326 ! hippocampal plate of CA3
property_value: IAO:0000589 "pyramidal layer of CA3 (PBA)" xsd:string
property_value: prefLabel "stratum pyramidale of CA3" xsd:string
[Term]
id: PBA:10071
name: hippocampal stratum lucidum of CA3
synonym: "CA3sl" EXACT []
relationship: part_of PBA:10068 ! CA3 region
property_value: IAO:0000589 "CA3 stratum lucidum (PBA)" xsd:string
property_value: prefLabel "hippocampal stratum lucidum of CA3" xsd:string
[Term]
id: PBA:10072
name: stratum radiatum of CA3
synonym: "CA3ra" EXACT []
relationship: part_of PBA:128012318 ! marginal zone of CA3
property_value: IAO:0000589 "CA3 stratum radiatum (PBA)" xsd:string
property_value: prefLabel "stratum radiatum of CA3" xsd:string
[Term]
id: PBA:10073
name: stratum lacunosum-moleculare of CA3
synonym: "CA3lm" EXACT []
relationship: part_of PBA:128012318 ! marginal zone of CA3
property_value: IAO:0000589 "CA3 stratum lacunosum moleculare (PBA)" xsd:string
property_value: prefLabel "stratum lacunosum-moleculare of CA3" xsd:string
[Term]
id: PBA:10074
name: CA4 region
synonym: "CA4" EXACT []
relationship: part_of PBA:128012244 ! hippocampal proper
property_value: IAO:0000589 "CA4 field of hippocampus (PBA)" xsd:string
property_value: prefLabel "CA4 region" xsd:string
[Term]
id: PBA:10075
name: dentate gyrus (dentate cortex)
synonym: "DG" EXACT []
relationship: part_of PBA:4003 ! hippocampal cortex (hippocampal formation)
property_value: prefLabel "dentate gyrus (dentate cortex)" xsd:string
[Term]
id: PBA:10076
name: molecular layer of dentate gyrus (cortex)
synonym: "DGmo" EXACT []
relationship: part_of PBA:128012220 ! marginal zone of dentate gyrus (cortex)
property_value: prefLabel "molecular layer of dentate gyrus (cortex)" xsd:string
[Term]
id: PBA:10077
name: granular layer of dentate gyrus (cortex)
synonym: "DGgr" EXACT []
relationship: part_of PBA:128012226 ! granular layer anlage of dentate gyrus (cortex)
property_value: prefLabel "granular layer of dentate gyrus (cortex)" xsd:string
[Term]
id: PBA:10078
name: subgranular zone of dentate gyrus (cortex)
synonym: "DGsg" EXACT []
relationship: part_of PBA:128012232 ! subgranular layer anlage of dentate gyrus (cortex)
property_value: prefLabel "subgranular zone of dentate gyrus (cortex)" xsd:string
[Term]
id: PBA:10079
name: polyform layer of dentate gyrus (cortex)
synonym: "DGpf" EXACT []
relationship: part_of PBA:128012238 ! polyform layer anlage of dentate gyrus (cortex)
property_value: prefLabel "polyform layer of dentate gyrus (cortex)" xsd:string
[Term]
id: PBA:10080
name: striatum
synonym: "STR" EXACT []
relationship: part_of PBA:4001 ! basal nuclei (basal ganglia)
property_value: IAO:0000589 "striatum (PBA)" xsd:string
property_value: prefLabel "striatum" xsd:string
[Term]
id: PBA:10081
name: dorsal striatum
synonym: "dSTR" EXACT []
relationship: part_of PBA:10080 ! striatum
property_value: IAO:0000589 "dorsal striatum (PBA)" xsd:string
property_value: prefLabel "dorsal striatum" xsd:string
[Term]
id: PBA:10082
name: caudate nucleus
synonym: "Ca" EXACT []
relationship: part_of PBA:10081 ! dorsal striatum
property_value: IAO:0000589 "caudate nucleus (PBA)" xsd:string
property_value: prefLabel "caudate nucleus" xsd:string
[Term]
id: PBA:10086
name: putamen
synonym: "Pu" EXACT []
relationship: part_of PBA:10081 ! dorsal striatum
property_value: IAO:0000589 "putamen (PBA)" xsd:string
property_value: prefLabel "putamen" xsd:string
[Term]
id: PBA:10091
name: ventral striatum
synonym: "vSTR" EXACT []
relationship: part_of PBA:10080 ! striatum
property_value: IAO:0000589 "ventral striatum (PBA)" xsd:string
property_value: prefLabel "ventral striatum" xsd:string
[Term]
id: PBA:10092
name: nucleus accumbens
synonym: "NAC" EXACT []
relationship: part_of PBA:10091 ! ventral striatum
property_value: IAO:0000589 "nucleus accumbens (PBA)" xsd:string
property_value: prefLabel "nucleus accumbens" xsd:string
[Term]
id: PBA:10093
name: core of nucleus accumbens
synonym: "NACc" EXACT []
relationship: part_of PBA:10092 ! nucleus accumbens
property_value: IAO:0000589 "core of nucleus accumbens (PBA)" xsd:string
property_value: prefLabel "core of nucleus accumbens" xsd:string
[Term]
id: PBA:10094
name: shell of nucleus accumbens
synonym: "NACs" EXACT []
relationship: part_of PBA:10092 ! nucleus accumbens
property_value: IAO:0000589 "shell of nucleus accumbens (PBA)" xsd:string
property_value: prefLabel "shell of nucleus accumbens" xsd:string
[Term]
id: PBA:10095
name: islands of Calleja
synonym: "IsCj" EXACT []
relationship: part_of PBA:10091 ! ventral striatum
property_value: IAO:0000589 "island of Calleja (PBA)" xsd:string
property_value: prefLabel "islands of Calleja" xsd:string
[Term]
id: PBA:10096
name: olfactory tubercle
synonym: "Tu" EXACT []
relationship: part_of PBA:10091 ! ventral striatum
property_value: IAO:0000589 "olfactory tubercle (PBA)" xsd:string
property_value: prefLabel "olfactory tubercle" xsd:string
[Term]
id: PBA:10097
name: globus pallidus
synonym: "GP" EXACT []
relationship: part_of PBA:4001 ! basal nuclei (basal ganglia)
property_value: IAO:0000589 "globus pallidus (PBA)" xsd:string
property_value: prefLabel "globus pallidus" xsd:string
[Term]
id: PBA:10098
name: internal segment of globus pallidus
synonym: "GPi" EXACT []
relationship: part_of PBA:10097 ! globus pallidus
property_value: IAO:0000589 "medial globus pallidus (PBA)" xsd:string
property_value: prefLabel "internal segment of globus pallidus" xsd:string
[Term]
id: PBA:10099
name: external segment of globus pallidus
synonym: "GPe" EXACT []
relationship: part_of PBA:10097 ! globus pallidus
property_value: IAO:0000589 "lateral globus pallidus (PBA)" xsd:string
property_value: prefLabel "external segment of globus pallidus" xsd:string
[Term]
id: PBA:10102
name: internal capsule
synonym: "ic" EXACT []
relationship: part_of PBA:4001 ! basal nuclei (basal ganglia)
property_value: IAO:0000589 "internal capsule of telencephalon (PBA)" xsd:string
property_value: prefLabel "internal capsule" xsd:string
[Term]
id: PBA:10103
name: anterior amygdaloid area
synonym: "AA" EXACT []
relationship: part_of PBA:4002 ! amygdaloid complex
property_value: IAO:0000589 "anterior amygdaloid area (PBA)" xsd:string
property_value: prefLabel "anterior amygdaloid area" xsd:string
[Term]
id: PBA:10106
name: basal nucleus (basolateral nucleus)
synonym: "B" EXACT []
relationship: part_of PBA:128012678 ! basolateral nuclear complex
property_value: prefLabel "basal nucleus (basolateral nucleus)" xsd:string
[Term]
id: PBA:10107
name: intermediate division of basal nucleus
synonym: "Bi" EXACT []
relationship: part_of PBA:10106 ! basal nucleus (basolateral nucleus)
property_value: prefLabel "intermediate division of basal nucleus" xsd:string
[Term]
id: PBA:10108
name: dorsal (magnocellular) division of basal nucleus
synonym: "Bd" EXACT []
relationship: part_of PBA:10106 ! basal nucleus (basolateral nucleus)
property_value: prefLabel "dorsal (magnocellular) division of basal nucleus" xsd:string
[Term]
id: PBA:10109
name: ventral (parvocellular) division of basal nucleus
synonym: "Bv" EXACT []
relationship: part_of PBA:10106 ! basal nucleus (basolateral nucleus)
property_value: prefLabel "ventral (parvocellular) division of basal nucleus" xsd:string
[Term]
id: PBA:10110
name: accessory basal nucleus (basomedial nucleus)
synonym: "AB" EXACT []
relationship: part_of PBA:128012678 ! basolateral nuclear complex
property_value: prefLabel "accessory basal nucleus (basomedial nucleus)" xsd:string
[Term]
id: PBA:10111
name: dorsal (magnocellular) division of accessory basal nucleus
synonym: "ABd" EXACT []
relationship: part_of PBA:10110 ! accessory basal nucleus (basomedial nucleus)
property_value: prefLabel "dorsal (magnocellular) division of accessory basal nucleus" xsd:string
[Term]
id: PBA:10112
name: ventral (parvocellular) division of accessory basal nucleus
synonym: "ABv" EXACT []
relationship: part_of PBA:10110 ! accessory basal nucleus (basomedial nucleus)
property_value: prefLabel "ventral (parvocellular) division of accessory basal nucleus" xsd:string
[Term]
id: PBA:10116
name: lateral nucleus
synonym: "L" EXACT []
relationship: part_of PBA:128012678 ! basolateral nuclear complex
property_value: IAO:0000589 "lateral amygdaloid nucleus (PBA)" xsd:string
property_value: prefLabel "lateral nucleus" xsd:string
[Term]
id: PBA:10117
name: dorsal division of lateral nucleus, lateral part
synonym: "Ldl" EXACT []
relationship: part_of PBA:10116 ! lateral nucleus
property_value: prefLabel "dorsal division of lateral nucleus, lateral part" xsd:string
[Term]
id: PBA:10118
name: dorsal division of lateral nucleus, medial part
synonym: "Ldm" EXACT []
relationship: part_of PBA:10116 ! lateral nucleus
property_value: prefLabel "dorsal division of lateral nucleus, medial part" xsd:string
[Term]
id: PBA:10119
name: ventral division of lateral nucleus, lateral part
synonym: "Lvl" EXACT []
relationship: part_of PBA:10116 ! lateral nucleus
property_value: prefLabel "ventral division of lateral nucleus, lateral part" xsd:string
[Term]
id: PBA:10120
name: ventral division of lateral nucleus, medial part
synonym: "Lvm" EXACT []
relationship: part_of PBA:10116 ! lateral nucleus
property_value: prefLabel "ventral division of lateral nucleus, medial part" xsd:string
[Term]
id: PBA:10121
name: central amygdaloid nucleus
synonym: "CE" EXACT []
relationship: part_of PBA:4002 ! amygdaloid complex
property_value: IAO:0000589 "central amygdaloid nucleus (PBA)" xsd:string
property_value: prefLabel "central amygdaloid nucleus" xsd:string
[Term]
id: PBA:10123
name: lateral division of central nucleus
synonym: "CEl" EXACT []
relationship: part_of PBA:10121 ! central amygdaloid nucleus
property_value: prefLabel "lateral division of central nucleus" xsd:string
[Term]
id: PBA:10124
name: medial division of central nucleus
synonym: "CEm" EXACT []
relationship: part_of PBA:10121 ! central amygdaloid nucleus
property_value: prefLabel "medial division of central nucleus" xsd:string
[Term]
id: PBA:10125
name: medial nucleus
synonym: "Me" EXACT []
relationship: part_of PBA:128012616 ! corticomedial amygdaloid nucleus
property_value: IAO:0000589 "medial vestibular nucleus (PBA)" xsd:string
property_value: prefLabel "medial nucleus" xsd:string
[Term]
id: PBA:10128
name: paralaminar nucleus
synonym: "PL" EXACT []
relationship: part_of PBA:128012678 ! basolateral nuclear complex
property_value: prefLabel "paralaminar nucleus" xsd:string
[Term]
id: PBA:10132
name: intercalated nucleus of amygdala
synonym: "INA" EXACT []
relationship: part_of PBA:4002 ! amygdaloid complex
property_value: IAO:0000589 "intercalated amygdaloid nuclei (PBA)" xsd:string
property_value: prefLabel "intercalated nucleus of amygdala" xsd:string
[Term]
id: PBA:10134
name: rostral periamygdaloid cortex (rPAC)
synonym: "rPAC" EXACT []
relationship: part_of PBA:128012620 ! periamygdaloid cortex (cortical amygdaloid nucleus)
property_value: prefLabel "rostral periamygdaloid cortex (rPAC)" xsd:string
[Term]
id: PBA:10135
name: amygdalohippocampal area
synonym: "AHA" EXACT []
relationship: part_of PBA:128012616 ! corticomedial amygdaloid nucleus
property_value: IAO:0000589 "amygdalohippocampal area (PBA)" xsd:string
property_value: prefLabel "amygdalohippocampal area" xsd:string
[Term]
id: PBA:10136
name: amygdalohippocampal area, magnocellualr part
synonym: "AHAmc" EXACT []
relationship: part_of PBA:10135 ! amygdalohippocampal area
property_value: IAO:0000589 "amygdalohippocampal area, magnocellular division (PBA)" xsd:string
property_value: prefLabel "amygdalohippocampal area, magnocellualr part" xsd:string
[Term]
id: PBA:10137
name: amygdalohippocampal area, parvocelluar part
synonym: "AHApc" EXACT []
relationship: part_of PBA:10135 ! amygdalohippocampal area
property_value: IAO:0000589 "amygdalohippocampal area, parvocellular division (PBA)" xsd:string
property_value: prefLabel "amygdalohippocampal area, parvocelluar part" xsd:string
[Term]
id: PBA:10139
name: amygdaloid intramedullary gray
synonym: "IMG" EXACT []
relationship: part_of PBA:4002 ! amygdaloid complex
property_value: prefLabel "amygdaloid intramedullary gray" xsd:string
[Term]
id: PBA:10140
name: amygdalopiriform transition area
synonym: "APir" EXACT []
relationship: part_of PBA:4002 ! amygdaloid complex
property_value: IAO:0000589 "amygdalopiriform transition area (PBA)" xsd:string
property_value: prefLabel "amygdalopiriform transition area" xsd:string
[Term]
id: PBA:10141
name: basal nucleus of Meynert
synonym: "BNM" EXACT []
relationship: part_of PBA:128012976 ! basal forebrain
property_value: IAO:0000589 "basal nucleus of telencephalon (PBA)" xsd:string
property_value: prefLabel "basal nucleus of Meynert" xsd:string
[Term]
id: PBA:128011350
name: telencephalon
synonym: "Tel" EXACT []
relationship: part_of PBA:3999 ! brain
property_value: IAO:0000589 "telencephalon (PBA)" xsd:string
property_value: prefLabel "telencephalon" xsd:string
[Term]
id: PBA:128011354
name: cerebral cortex
synonym: "Cx" EXACT []
relationship: part_of PBA:128011350 ! telencephalon
property_value: IAO:0000589 "cerebral cortex (PBA)" xsd:string
property_value: prefLabel "cerebral cortex" xsd:string
[Term]
id: PBA:128011368
name: subpial granular zone of dorsolateral prefrontal cortex
synonym: "dlPFsg" EXACT []
relationship: part_of PBA:294021766 ! subpial granular zone
property_value: prefLabel "subpial granular zone of dorsolateral prefrontal cortex" xsd:string
[Term]
id: PBA:128011372
name: marginal zone of dorsolateral prefrontal cortex
synonym: "dlPFmz" EXACT []
relationship: part_of PBA:294021774 ! marginal zone
property_value: prefLabel "marginal zone of dorsolateral prefrontal cortex" xsd:string
[Term]
id: PBA:128011378
name: cortical plate of dorsolateral prefrontal cortex
synonym: "dlPFcp" EXACT []
relationship: part_of PBA:294021920 ! cortical plate (inner)
property_value: prefLabel "cortical plate of dorsolateral prefrontal cortex" xsd:string
[Term]
id: PBA:128011614
name: marginal zone of rostral cingulate cortex
synonym: "rCGmz" EXACT []
relationship: part_of PBA:294021774 ! marginal zone
property_value: prefLabel "marginal zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011624
name: outer cortical plate of rostral cingulate cortex
synonym: "rCGcpo" EXACT []
relationship: part_of PBA:294021842 ! cortical plate (outer)
property_value: prefLabel "outer cortical plate of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011638
name: inner cortical plate (infragranular layer) of rostral cingulate cortex
synonym: "rCGcpi" EXACT []
relationship: part_of PBA:294021920 ! cortical plate (inner)
property_value: prefLabel "inner cortical plate (infragranular layer) of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011646
name: subplate zone of rostral cingulate cortex
synonym: "rCGsp" EXACT []
relationship: part_of PBA:294021932 ! subplate
property_value: prefLabel "subplate zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011650
name: intermediate zone of rostral cingulate cortex
synonym: "rCGiz" EXACT []
relationship: part_of PBA:294021942 ! intermediate zone
property_value: prefLabel "intermediate zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011654
name: subventricular zone of rostral cingulate cortex
synonym: "rCGsz" EXACT []
relationship: part_of PBA:294021970 ! subventricular zone
property_value: prefLabel "subventricular zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011658
name: outer subventricular zone of rostral cingulate cortex
synonym: "rCGszo" EXACT []
relationship: part_of PBA:294021980 ! subventricular zone (outer)
property_value: prefLabel "outer subventricular zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011662
name: inner subventricular zone of rostral cingulate cortex
synonym: "rCGszi" EXACT []
relationship: part_of PBA:294022000 ! subventricular zone (inner)
property_value: prefLabel "inner subventricular zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011666
name: ventricular zone of rostral cingulate cortex
synonym: "rCGvz" EXACT []
relationship: part_of PBA:294022030 ! ventricular zone
property_value: prefLabel "ventricular zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011670
name: outer ventricular zone of rostral cingulate cortex
synonym: "rCGvzo" EXACT []
relationship: part_of PBA:294022010 ! ventricular zone (outer)
property_value: prefLabel "outer ventricular zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011674
name: inner ventricular zone of rostral cingulate cortex
synonym: "rCGvzi" EXACT []
relationship: part_of PBA:294022020 ! ventricular zone (inner)
property_value: prefLabel "inner ventricular zone of rostral cingulate cortex" xsd:string
[Term]
id: PBA:128011776
name: marginal zone of S1
synonym: "S1mz" EXACT []
relationship: part_of PBA:294021774 ! marginal zone
property_value: prefLabel "marginal zone of S1" xsd:string
[Term]
id: PBA:128011788
name: outer cortical plate of S1
synonym: "S1cpo" EXACT []
relationship: part_of PBA:294021842 ! cortical plate (outer)
property_value: prefLabel "outer cortical plate of S1" xsd:string
[Term]
id: PBA:128011796
name: layer II of S1
synonym: "S1-2" EXACT []
relationship: part_of PBA:294021800 ! layer II