diff --git a/Dockerfile b/Dockerfile index 084dc81ae5daf8572492d3a27fac22d0125c1649..011844f5576860b2cab17aef2699806a8a75a4e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG BACKEND_URL ENV BACKEND_URL=${BACKEND_URL} ARG DATASET_PREVIEW_URL -ENV DATASET_PREVIEW_URL=${DATASET_PREVIEW_URL:-https://hbp-kg-dataset-previewer.apps.hbp.eu/datasetPreview} +ENV DATASET_PREVIEW_URL=${DATASET_PREVIEW_URL:-https://hbp-kg-dataset-previewer.apps.hbp.eu/v2} ARG STRICT_LOCAL ENV STRICT_LOCAL=${STRICT_LOCAL:-false} diff --git a/deploy/csp/index.js b/deploy/csp/index.js index b30032c30af95b14b9cfccbae16d94eb8cd8d849..11002382d34afb5fef71151eface5f0ed8a57dff 100644 --- a/deploy/csp/index.js +++ b/deploy/csp/index.js @@ -88,12 +88,10 @@ module.exports = (app) => { 'unpkg.com', '*.unpkg.com', '*.jsdelivr.net', - - // Catching Safari 10 bug unsafe-eval - "'sha256-yEVCaeeaeg6koloXfx+6DuFnP7SnjOwYZiWBTRFurJw='", (req, res) => res.locals.nonce ? `'nonce-${res.locals.nonce}'` : null, ...SCRIPT_SRC, - ...WHITE_LIST_SRC + ...WHITE_LIST_SRC, + ...defaultAllowedSites ], reportUri: CSP_REPORT_URI || '/report-violation' }, diff --git a/deploy/datasets/testData/mni152JuBrain.js b/deploy/datasets/testData/mni152JuBrain.js index 788d622c47c85e9318868752bd2c14686df37f7e..4cfe826de11c69cc3d16018564f11f4a53c43601 100644 --- a/deploy/datasets/testData/mni152JuBrain.js +++ b/deploy/datasets/testData/mni152JuBrain.js @@ -185,9 +185,9 @@ module.exports = [ "parcellationRegion": [ { "species": [], - "name": "Area hOc1", + "name": "Area hOc1 (V1, 17, CalcS)", "alias": null, - "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b851eb9d-9502-45e9-8dd8-2861f0e6da3f" + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5151ab8f-d8cb-4e67-a449-afe2a41fb007" } ], "species": [ @@ -297,9 +297,9 @@ module.exports = [ "parcellationRegion": [ { "species": [], - "name": "Area 44d", + "name": "Area 44 (IFG)", "alias": null, - "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/8aeae833-81c8-4e27-a8d6-deee339d6052" + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/8a6be82c-5947-4fff-8348-cf9bf73e4f40" } ], "species": [ diff --git a/docs/releases/v2.2.5.md b/docs/releases/v2.2.5.md new file mode 100644 index 0000000000000000000000000000000000000000..c33bc12728478e3497ba067b36fb4b29c3536bfd --- /dev/null +++ b/docs/releases/v2.2.5.md @@ -0,0 +1,7 @@ +# v2.2.5 + +28 July 2020 + +## Bugfixes + +- Fixed status panel voxel/real toggle ineffective bug (Thanks to Dr El Mysteryo) diff --git a/docs/releases/v2.2.6.md b/docs/releases/v2.2.6.md new file mode 100644 index 0000000000000000000000000000000000000000..717faaf5a20dab8896bfaea6da9e9d4ca6577969 --- /dev/null +++ b/docs/releases/v2.2.6.md @@ -0,0 +1,14 @@ +# v2.2.6 + +## Feat + +- Added Julich Brain v2.4 to the supported atlases + +## Bugfixes + +- Fixed matomo CSP issues +- Updated kg dataset previewer URL + +# Under the hood + +- CI/CD: auto tag releases on github diff --git a/mkdocs.yml b/mkdocs.yml index 4755162c998527cef65bdb3ddcdf08efebcfb9e6..caa47fd57cc45a872ffdc9f7fc681ac9c8eca17e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -41,6 +41,9 @@ pages: - Display non-atlas volumes: 'advanced/otherVolumes.md' - Release notes: - v2.3.0: 'releases/v2.3.0.md' + - v2.2.6: 'releases/v2.2.6.md' + - v2.2.5: 'releases/v2.2.5.md' + - v2.2.4: 'releases/v2.2.4.md' - v2.2.3: 'releases/v2.2.3.md' - v2.2.2: 'releases/v2.2.2.md' - v2.2.1: 'releases/v2.2.1.md' diff --git a/release.sh b/release.sh new file mode 100755 index 0000000000000000000000000000000000000000..2eb23818ae9e75d207b874bbaa1b924d9b83dccf --- /dev/null +++ b/release.sh @@ -0,0 +1,70 @@ +#! /bin/bash + +# This is an automated script for TravisCI +# It is triggered on push to master +# It will create a release and publish to the github repo + +OWNER=HumanBrainProject +REPO=interactive-viewer +USER=xgui3783 +EMAIL=xgui3783@gmail.com +#GITHUB_TOKEN should be populated by CI + +test -z "$GITHUB_TOKEN" && exit 1 + +TAG=$(jq '.version' < package.json) +TAG=${TAG#\"} +TAG=v${TAG%\"} +OBJECT=$(git rev-parse HEAD) +DATE=$(date --iso-8601=seconds) +BODY='{ + "tag": "'$TAG'", + "message": "Annotated release for '$TAG'", + "object": "'$OBJECT'", + "type": "commit", + "tagger": { + "name": "'$USER'", + "email": "'$EMAIL'", + "date": "'$DATE'" + } +}' + +# Create annotated tag + +echo curl -XPOST \ + -H "Accept: application/vnd.github.v3+json" \ + -u "$USER:$GITHUB_TOKEN"\ + -d "$BODY" \ + https://api.github.com/repos/$OWNER/$REPO/git/tags + +# Push tag to remote + +CREATE_REF_BODY='{ + "ref":"refs/tags/'$TAG'", + "sha":"'$OBJECT'" +}' + +echo curl -XPOST\ + -u "$USER:$GITHUB_TOKEN"\ + -H "Accept: application/vnd.github.v3+json" \ + -d "$CREATE_REF_BODY"\ + https://api.github.com/repos/$OWNER/$REPO/git/refs + +# Create release + +RELEASE_NOTES=$(sed -e 's/$/\\n/' docs/releases/$TAG.md) + +RELEASE_BODY='{ + "tag_name":"'$TAG'", + "name":"'$TAG'", + "body":"'$(echo $RELEASE_NOTES)'", + "target_commitish": "master", + "draft":false, + "prerelease":false +}' + +echo curl -XPOST\ + -u "$USER:$GITHUB_TOKEN"\ + -H "Accept: application/vnd.github.v3+json" \ + -d "$RELEASE_BODY" \ + https://api.github.com/repos/$OWNER/$REPO/releases diff --git a/src/glue.ts b/src/glue.ts index e5eedb9ff59eb2e55e21f4ea0259c96f655ab646..671fc0bebf2039930a5278ea645f2936cd553ae1 100644 --- a/src/glue.ts +++ b/src/glue.ts @@ -358,7 +358,8 @@ export class DatasetPreviewGlue implements IDatasetPreviewGlue, OnDestroy{ return { ...json, filename, - datasetId + datasetId, + datasetSchema } }), catchError((_err, _obs) => of(null)) @@ -589,6 +590,7 @@ export class DatasetPreviewGlue implements IDatasetPreviewGlue, OnDestroy{ } private openDatasetPreviewWidget(data: IDatasetPreviewData) { + console.log({ data }) const { datasetId: kgId, filename } = data if (!!this.actionOnWidget) { @@ -645,9 +647,10 @@ export class DatasetPreviewGlue implements IDatasetPreviewGlue, OnDestroy{ public displayDatasetPreview(previewFile: DatasetPreview, dataset: IKgDataEntry){ const { filename, datasetId } = previewFile const { fullId } = dataset - const { kgId } = getIdObj(fullId) + const { kgId, kgSchema } = getIdObj(fullId) const datasetPreviewFile = { + datasetSchema: kgSchema, datasetId: datasetId || kgId, filename } diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json index 6e1956d761c602967fbb81a57fe6d68147294e7b..cad3d9c0e3c929e9733de8550d8e83089d039b54 100644 --- a/src/res/ext/MNI152.json +++ b/src/res/ext/MNI152.json @@ -8,12 +8,17 @@ "useTheme": "dark", "ngId": "mni152", "nehubaConfigURL": "nehubaConfig/MNI152NehubaConfig", + "otherNgIds": [ + "jubrain mni152 v18 left", + "jubrain mni152 v18 right", + "julich brain mni152 v22 left", + "julich brain mni152 v22 right" + ], "parcellations": [ { - "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579", "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579", - "name": "Cytoarchitectonic maps", - "ngId": "jubrain mni152 v18 left", + "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579", + "name": "Cytoarchitectonic Maps", "auxillaryMeshIndices": [ 65535 ], @@ -23,12 +28,11 @@ "originDatasets": [ { "kgSchema": "minds/core/dataset/v1.0.0", - "kgId": "4ac9f0bc-560d-47e0-8916-7b24da9bb0ce" + "kgId": "5249afa7-5e04-4ffd-8039-c3a9231f717c" } ], "properties": { - "version": "1.0", - "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI Colin 27 as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.", + "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI ICBM 2009c Asymmetric as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.", "publications": [ { "doi": "https://doi.org/10.1038/nrn2776", @@ -48,8072 +52,12551 @@ { "name": "telencephalon", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "cerebral nuclei", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "basal forebrain", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "magnocellular group within septum", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Ch 123 (Basal Forebrain)", - "arealabel": "Ch-123", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 124, - 233, - 167 - ], "children": [ { - "name": "Ch 123 (Basal Forebrain) - left hemisphere", + "name": "Ch 123 (Basal Forebrain)", + "status": "left hemisphere", + "labelIndex": 76, "rgb": [ - 124, - 233, - 167 - ], - "labelIndex": 286, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -3648265, - 3367508, - -8957413 - ] + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + } + }, + "_": { + "xml": { + "name": "Ch 123 (Basal Forebrain)", + "id": "286", + "grayvalue": "76" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "Ch 123 (Basal Forebrain) - right hemisphere", + "name": "Ch 123 (Basal Forebrain)", + "status": "right hemisphere", + "labelIndex": 76, "rgb": [ - 124, - 233, - 167 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 286, - "children": [], - "position": [ - 1687097, - 4148387, - -8461290 - ] + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + } + }, + "_": { + "xml": { + "name": "Ch 123 (Basal Forebrain)", + "id": "286", + "grayvalue": "76" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + "_": { + "jubrain-ontology_24.json": { + "name": "Ch 123 (Basal Forebrain)", + "arealabel": "Ch-123", + "status": "publicP", + "labelIndex": "286", + "doi": "https://doi.org/10.25493/7SEP-P2V", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/instances/Dataset/147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Ch 123 (Basal Forebrain)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/bb111a95-e04c-4987-8254-4af4ed8b0022" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "magnocellular group within septum", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "sublenticular part of basal forebrain", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Ch 4 (Basal Forebrain)", - "arealabel": "Ch-4", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 116, - 243, - 12 - ], "children": [ { - "name": "Ch 4 (Basal Forebrain) - left hemisphere", + "name": "Ch 4 (Basal Forebrain)", + "status": "left hemisphere", + "labelIndex": 12, "rgb": [ - 116, - 243, - 12 - ], - "labelIndex": 264, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -17620275, - -2290378, - -12609966 + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "791a14c8-b899-414f-b237-27574a4cce7e", + "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "791a14c8-b899-414f-b237-27574a4cce7e" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + } + }, + "_": { + "xml": { + "name": "Ch 4 (Basal Forebrain)", + "id": "264", + "grayvalue": "12" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "Ch 4 (Basal Forebrain) - right hemisphere", + "name": "Ch 4 (Basal Forebrain)", + "status": "right hemisphere", + "labelIndex": 12, "rgb": [ - 116, - 243, - 12 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 264, - "children": [], - "position": [ - 15978528, - -1288344, - -12582822 + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "791a14c8-b899-414f-b237-27574a4cce7e", + "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "791a14c8-b899-414f-b237-27574a4cce7e" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + } + }, + "_": { + "xml": { + "name": "Ch 4 (Basal Forebrain)", + "id": "264", + "grayvalue": "12" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + "_": { + "jubrain-ontology_24.json": { + "name": "Ch 4 (Basal Forebrain)", + "arealabel": "Ch-4", + "status": "publicP", + "labelIndex": "264", + "doi": "https://doi.org/10.25493/VZJ5-8WJ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/791a14c8-b899-414f-b237-27574a4cce7e" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Ch 4 (Basal Forebrain)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a5c9d95f-8e7c-4454-91b6-a790387370fc" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "sublenticular part of basal forebrain", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "magnocellular group within horizontal limb of diagnoal band", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Ch 123 (Basal Forebrain)", - "arealabel": "Ch-123", "status": "publicP", + "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "Ch 123 (Basal Forebrain)", + "arealabel": "Ch-123", + "status": "publicP", + "labelIndex": "286", + "doi": "https://doi.org/10.25493/7SEP-P2V", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/instances/Dataset/147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "magnocellular group within horizontal limb of diagnoal band", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 124, - 233, - 167 - ], - "children": [ - { - "name": "Ch 123 (Basal Forebrain) - left hemisphere", - "rgb": [ - 124, - 233, - 167 - ], - "labelIndex": 286, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -3648265, - 3367508, - -8957413 - ] - }, - { - "name": "Ch 123 (Basal Forebrain) - right hemisphere", - "rgb": [ - 124, - 233, - 167 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 286, - "children": [], - "position": [ - 1687097, - 4148387, - -8461290 - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" - } - }, - "relatedAreas": [] + "rgb": null } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "basal forebrain", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "amygdala", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "laterobasal group", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "LB (Amygdala)", - "arealabel": "LB", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 188, - 16, - 222 - ], "children": [ { - "name": "LB (Amygdala) - left hemisphere", + "name": "LB (Amygdala)", + "status": "left hemisphere", + "labelIndex": 91, "rgb": [ - 188, - 16, - 222 + 200, + 200, + 200 ], - "labelIndex": 187, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" } - ] + }, + "_": { + "xml": { + "name": "LB (Amygdala)", + "id": "187", + "grayvalue": "91" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "LB (Amygdala) - right hemisphere", + "name": "LB (Amygdala)", + "status": "right hemisphere", + "labelIndex": 91, "rgb": [ - 188, - 16, - 222 + 200, + 200, + 200 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 187, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" } - ] + }, + "_": { + "xml": { + "name": "LB (Amygdala)", + "id": "187", + "grayvalue": "91" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + "_": { + "jubrain-ontology_24.json": { + "name": "LB (Amygdala)", + "arealabel": "LB", + "status": "publicP", + "labelIndex": "187", + "doi": "https://doi.org/10.25493/C3X0-NV3", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/fa4cab6a-1cec-4cec-b481-90aa0cc7d96c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "LB (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/708df0fa-e9a4-4c23-bd85-8957f6d30faf" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "laterobasal group", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "superficial group", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "CM (Amygdala)", - "arealabel": "CM", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 102, - 180, - 202 - ], "children": [ { - "name": "CM (Amygdala) - left hemisphere", + "name": "CM (Amygdala)", + "status": "left hemisphere", + "labelIndex": 43, "rgb": [ - 102, - 180, - 202 + 200, + 200, + 200 ], - "labelIndex": 22, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" } - ] + }, + "_": { + "xml": { + "name": "CM (Amygdala)", + "id": "290", + "grayvalue": "43" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "CM (Amygdala) - right hemisphere", + "name": "CM (Amygdala)", + "status": "right hemisphere", + "labelIndex": 43, "rgb": [ - 102, - 180, - 202 + 200, + 200, + 200 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 22, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + } + }, + "_": { + "xml": { + "name": "CM (Amygdala)", + "id": "290", + "grayvalue": "43" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + "_": { + "jubrain-ontology_24.json": { + "name": "CM (Amygdala)", + "arealabel": "CM", + "status": "publicP", + "labelIndex": "290", + "doi": "https://doi.org/10.25493/36FR-C95", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/21ed6af0-5c39-4153-a3b8-8983530436ac" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CM (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7aba8aef-6430-4fa7-ab54-8ecac558faed" } - }, - "relatedAreas": [] + } }, { "name": "SF (Amygdala)", - "arealabel": "SF", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 18, - 168, - 22 - ], "children": [ { - "name": "SF (Amygdala) - left hemisphere", + "name": "SF (Amygdala)", + "status": "left hemisphere", + "labelIndex": 110, "rgb": [ - 18, - 168, - 22 + 200, + 200, + 200 ], - "labelIndex": 186, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", + "filename": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" } - ] + }, + "_": { + "xml": { + "name": "SF (Amygdala)", + "id": "185", + "grayvalue": "110" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "SF (Amygdala) - right hemisphere", + "name": "SF (Amygdala)", + "status": "right hemisphere", + "labelIndex": 110, "rgb": [ - 18, - 168, - 22 + 200, + 200, + 200 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 186, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", + "filename": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" } - ] + }, + "_": { + "xml": { + "name": "SF (Amygdala)", + "id": "185", + "grayvalue": "110" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + "_": { + "jubrain-ontology_24.json": { + "name": "SF (Amygdala)", + "arealabel": "SF", + "status": "publicP", + "labelIndex": "185", + "doi": "https://doi.org/10.25493/WD31-SEA", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/37a6a7d9-5252-4605-a792-6fefe2fde816" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "SF (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/48929163-bf7b-4471-9f14-991c5225eced" } - }, - "relatedAreas": [] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superficial group", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "fiber masses", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "MF (Amygdala)", - "arealabel": "MF", + "name": "VTM (Amygdala)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 190, - 200, - 9 - ], "children": [ { - "name": "MF (Amygdala) - left hemisphere", + "name": "VTM (Amygdala)", + "status": "left hemisphere", + "labelIndex": 80, "rgb": [ - 190, 200, - 9 - ], - "labelIndex": 235, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -19722222, - -8722222, - -16222222 + 200, + 200 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9", + "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" } - ] + }, + "_": { + "xml": { + "name": "VTM (Amygdala)", + "id": "228", + "grayvalue": "80" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "MF (Amygdala) - right hemisphere", + "name": "VTM (Amygdala)", + "status": "right hemisphere", + "labelIndex": 81, "rgb": [ - 190, 200, - 9 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 235, - "children": [], - "position": [ - 19157143, - -6585714, - -15985714 + 200, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9", + "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" + } + }, + "_": { + "xml": { + "name": "VTM (Amygdala)", + "id": "228", + "grayvalue": "81" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" + "_": { + "jubrain-ontology_24.json": { + "name": "VTM (Amygdala)", + "arealabel": "VTM", + "status": "publicP", + "labelIndex": "228", + "doi": "https://doi.org/10.25493/99HN-XRE", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/9428d48e-f222-4191-96b8-02d3fa6068da" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "VTM (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a964e6e6-8014-41a2-b975-754d75cbb6f2" } - }, - "relatedAreas": [] + } }, { - "name": "VTM (Amygdala)", - "arealabel": "VTM", + "name": "IF (Amygdala)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 89, - 178, - 185 - ], "children": [ { - "name": "VTM (Amygdala) - left hemisphere", + "name": "IF (Amygdala)", + "status": "left hemisphere", + "labelIndex": 59, "rgb": [ - 89, - 178, - 185 - ], - "labelIndex": 228, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -24442675, - -12143312, - -15697452 + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da", + "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d" } - ] - }, - { - "name": "VTM (Amygdala) - right hemisphere", - "rgb": [ - 89, - 178, - 185 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 228, - "children": [], - "position": [ - 23257426, - -10816832, - -17326733 + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" + } + }, + "_": { + "xml": { + "name": "IF (Amygdala)", + "id": "237", + "grayvalue": "59" + }, + "dat": { + "colors": false, + "names": false + } + } + }, + { + "name": "IF (Amygdala)", + "status": "right hemisphere", + "labelIndex": 59, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da", + "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "VTM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" } - ] + }, + "_": { + "xml": { + "name": "IF (Amygdala)", + "id": "237", + "grayvalue": "59" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" + "_": { + "jubrain-ontology_24.json": { + "name": "IF (Amygdala)", + "arealabel": "IF", + "status": "publicP", + "labelIndex": "237", + "doi": "https://doi.org/10.25493/GWPR-G6K", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/3acdb92c-68f0-42db-a7af-9dbb69cbea1d" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "IF (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5a1391c8-6056-40e4-a19b-3774df42bd07" } - }, - "relatedAreas": [] + } }, { - "name": "IF (Amygdala)", - "arealabel": "IF", + "name": "MF (Amygdala)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 120, - 190, - 129 - ], "children": [ { - "name": "IF (Amygdala) - left hemisphere", + "name": "MF (Amygdala)", + "status": "left hemisphere", + "labelIndex": 104, "rgb": [ - 120, - 190, - 129 - ], - "labelIndex": 237, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -29180412, - -3664948, - -18242268 + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d", + "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" } - ] + }, + "_": { + "xml": { + "name": "MF (Amygdala)", + "id": "235", + "grayvalue": "104" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "IF (Amygdala) - right hemisphere", + "name": "MF (Amygdala)", + "status": "right hemisphere", + "labelIndex": 104, "rgb": [ - 120, - 190, - 129 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 237, - "children": [], - "position": [ - 27247368, - -2310526, - -17973684 + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d", + "filename": "MF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "IF (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" + } + }, + "_": { + "xml": { + "name": "MF (Amygdala)", + "id": "235", + "grayvalue": "104" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" + "_": { + "jubrain-ontology_24.json": { + "name": "MF (Amygdala)", + "arealabel": "MF", + "status": "publicP", + "labelIndex": "235", + "doi": "https://doi.org/10.25493/9375-55V", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1ea87428-a211-439f-b258-40fa3e3363c9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "MF (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3741c788-9412-4b8e-9ab4-9ca2d3a715ca" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "fiber masses", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "centromedial group", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "CM (Amygdala)", - "arealabel": "CM", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 89, - 4, - 190 - ], - "children": [ - { - "name": "CM (Amygdala) - left hemisphere", - "rgb": [ - 89, - 4, - 190 - ], - "labelIndex": 16, - "ngId": "jubrain mni152 v18 left", - "children": [], - "originDatasets": [ - { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" - } - ] - }, - { - "name": "CM (Amygdala) - right hemisphere", - "rgb": [ - 89, - 4, - 190 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 16, - "children": [], - "originDatasets": [ - { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" - } - ] + "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "CM (Amygdala)", + "arealabel": "CM", + "status": "publicP", + "labelIndex": "290", + "doi": "https://doi.org/10.25493/36FR-C95", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/21ed6af0-5c39-4153-a3b8-8983530436ac" } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" - } - }, - "relatedAreas": [] - }, - { - "name": "CM (Amygdala)", - "arealabel": "CM", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "centromedial group", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 9, - 120, - 220 - ], - "children": [ - { - "name": "CM (Amygdala) - left hemisphere", - "rgb": [ - 9, - 120, - 220 - ], - "labelIndex": 21, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -22534091, - -5320076, - -13793561 - ], - "originDatasets": [ - { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, left hemisphere]" - } - ] - }, - { - "name": "CM (Amygdala) - right hemisphere", - "rgb": [ - 9, - 120, - 220 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 21, - "children": [], - "position": [ - 21343972, - -4488180, - -13743499 - ], - "originDatasets": [ - { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, ICBM 2009c Asymmetric, right hemisphere]" - } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" - } - }, - "relatedAreas": [] + "rgb": null } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "amygdala", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebral nuclei", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "cerebral cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "parietal lobe", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "superior parietal lobule", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 7P (SPL)", - "arealabel": "Area-7P", + "name": "Area 5L (SPL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 52, - 20, - 106 - ], "children": [ { - "name": "Area 7P (SPL) - left hemisphere", + "name": "Area 5L (SPL)", + "status": "left hemisphere", + "labelIndex": 95, "rgb": [ - 52, - 20, - 106 - ], - "labelIndex": 208, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -8012999, - -74699164, - 53070102 + 184, + 185, + 58 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476", + "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" } - ] + }, + "_": { + "xml": { + "name": "Area 5L (SPL)", + "id": "130", + "grayvalue": "95" + }, + "dat": { + "colors": "130 184 185 58", + "names": "130 5l" + } + } }, { - "name": "Area 7P (SPL) - right hemisphere", + "name": "Area 5L (SPL)", + "status": "right hemisphere", + "labelIndex": 94, "rgb": [ - 52, - 20, - 106 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 208, - "children": [], - "position": [ - 14174790, - -74087955, - 55690476 + 184, + 185, + 58 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476", + "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" } - ] + }, + "_": { + "xml": { + "name": "Area 5L (SPL)", + "id": "130", + "grayvalue": "94" + }, + "dat": { + "colors": "130 184 185 58", + "names": "130 5l" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 5L (SPL)", + "arealabel": "Area-5L", + "status": "publicP", + "labelIndex": "130", + "doi": "https://doi.org/10.25493/C1FQ-2F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1100df93-93f4-4091-bf2e-6eb48a2d56ff" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 5L (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/64555f7f-1b33-4ffe-9853-be41e7a21096" } - }, - "relatedAreas": [] + } }, { - "name": "Area 5M (SPL)", - "arealabel": "Area-5M", + "name": "Area 7PC (SPL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 225, - 245, - 76 - ], "children": [ { - "name": "Area 5M (SPL) - left hemisphere", + "name": "Area 7PC (SPL)", + "status": "left hemisphere", + "labelIndex": 122, "rgb": [ - 225, - 245, - 76 - ], - "labelIndex": 131, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -8469145, - -40822964, - 57099393 + 252, + 89, + 28 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f", + "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + } + }, + "_": { + "xml": { + "name": "Area 7PC (SPL)", + "id": "132", + "grayvalue": "122" + }, + "dat": { + "colors": "132 252 89 28", + "names": "132 pc1" } - ] + } }, { - "name": "Area 5M (SPL) - right hemisphere", + "name": "Area 7PC (SPL)", + "status": "right hemisphere", + "labelIndex": 122, "rgb": [ - 225, - 245, - 76 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 131, - "children": [], - "position": [ - 5921975, - -43433519, - 59763933 + 252, + 89, + 28 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f", + "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + } + }, + "_": { + "xml": { + "name": "Area 7PC (SPL)", + "id": "132", + "grayvalue": "122" + }, + "dat": { + "colors": "132 252 89 28", + "names": "132 pc1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 7PC (SPL)", + "arealabel": "Area-7PC", + "status": "publicP", + "labelIndex": "132", + "doi": "https://doi.org/10.25493/Z45N-1T", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8cc9b1dd-caa6-49d5-85f1-1e2e78be3161" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 7PC (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" } - }, - "relatedAreas": [] + } }, { - "name": "Area 7PC (SPL)", - "arealabel": "Area-7PC", + "name": "Area 5M (SPL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 252, - 89, - 28 - ], "children": [ { - "name": "Area 7PC (SPL) - left hemisphere", + "name": "Area 5M (SPL)", + "status": "left hemisphere", + "labelIndex": 94, "rgb": [ - 252, - 89, - 28 - ], - "labelIndex": 132, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -33528332, - -47472312, - 63389891 + 225, + 245, + 76 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161", + "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" } - ] + }, + "_": { + "xml": { + "name": "Area 5M (SPL)", + "id": "131", + "grayvalue": "94" + }, + "dat": { + "colors": "131 225 245 76", + "names": "131 5ma" + } + } }, { - "name": "Area 7PC (SPL) - right hemisphere", + "name": "Area 5M (SPL)", + "status": "right hemisphere", + "labelIndex": 95, "rgb": [ - 252, - 89, - 28 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 132, - "children": [], - "position": [ - 29759690, - -46534053, - 62336656 + 225, + 245, + 76 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161", + "filename": "Area 5M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7PC (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" } - ] + }, + "_": { + "xml": { + "name": "Area 5M (SPL)", + "id": "131", + "grayvalue": "95" + }, + "dat": { + "colors": "131 225 245 76", + "names": "131 5ma" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 5M (SPL)", + "arealabel": "Area-5M", + "status": "publicP", + "labelIndex": "131", + "doi": "https://doi.org/10.25493/Y12F-YMU", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/5ddbc06e-b30c-4d44-a4c0-107210a66b4f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 5M (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/abe105cf-2c29-46af-af75-6b46fdb75137" } - }, - "relatedAreas": [] + } }, { - "name": "Area 5L (SPL)", - "arealabel": "Area-5L", + "name": "Area 7P (SPL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 184, - 185, - 58 - ], "children": [ { - "name": "Area 5L (SPL) - left hemisphere", + "name": "Area 7P (SPL)", + "status": "left hemisphere", + "labelIndex": 34, "rgb": [ - 184, - 185, - 58 - ], - "labelIndex": 130, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -18756077, - -45216005, - 67108905 + 52, + 20, + 106 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff", + "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + } + }, + "_": { + "xml": { + "name": "Area 7P (SPL)", + "id": "208", + "grayvalue": "34" + }, + "dat": { + "colors": "208 52 20 106", + "names": "208 pl" + } + } }, { - "name": "Area 5L (SPL) - right hemisphere", + "name": "Area 7P (SPL)", + "status": "right hemisphere", + "labelIndex": 35, "rgb": [ - 184, - 185, - 58 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 130, - "children": [], - "position": [ - 14224079, - -48937984, - 69561773 + 52, + 20, + 106 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff", + "filename": "Area 7P (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5L (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + } + }, + "_": { + "xml": { + "name": "Area 7P (SPL)", + "id": "208", + "grayvalue": "35" + }, + "dat": { + "colors": "208 52 20 106", + "names": "208 pl" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 7P (SPL)", + "arealabel": "Area-7P", + "status": "publicP", + "labelIndex": "208", + "doi": "https://doi.org/10.25493/C3HS-8R7", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/5fd792b5-c306-4fb4-8d29-205dc3536476" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 7P (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/af9c4f39-63a4-409f-b306-e5965d639f37" } - }, - "relatedAreas": [] + } }, { - "name": "Area 7M (SPL)", - "arealabel": "Area-7M", + "name": "Area 5Ci (SPL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 205, - 61, - 236 - ], "children": [ { - "name": "Area 7M (SPL) - left hemisphere", + "name": "Area 5Ci (SPL)", + "status": "left hemisphere", + "labelIndex": 70, "rgb": [ - 205, - 61, - 236 - ], - "labelIndex": 135, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -2488934, - -78308853, - 35074447 + 79, + 242, + 146 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1715e680-a492-49a2-8f54-025aa41819da", + "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" } - ] + }, + "_": { + "xml": { + "name": "Area 5Ci (SPL)", + "id": "136", + "grayvalue": "70" + }, + "dat": { + "colors": "136 79 242 146", + "names": "136 5mb" + } + } }, { - "name": "Area 7M (SPL) - right hemisphere", + "name": "Area 5Ci (SPL)", + "status": "right hemisphere", + "labelIndex": 70, "rgb": [ - 205, - 61, - 236 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 135, - "children": [], - "position": [ - 2937879, - -75031818, - 38515152 + 79, + 242, + 146 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1715e680-a492-49a2-8f54-025aa41819da", + "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7M (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158" - } - }, - "relatedAreas": [] - }, - { - "name": "Area 7A (SPL)", - "arealabel": "Area-7A", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area 7A", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "811f4adb-4a7c-45c1-8034-4afa9edf586a" + "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + } + }, + "_": { + "xml": { + "name": "Area 5Ci (SPL)", + "id": "136", + "grayvalue": "70" + }, + "dat": { + "colors": "136 79 242 146", + "names": "136 5mb" } } } ], - "rgb": [ - 38, - 204, - 19 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area 5Ci (SPL)", + "arealabel": "Area-5Ci", + "status": "publicP", + "labelIndex": "136", + "doi": "https://doi.org/10.25493/SQVP-GK1", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/instances/Dataset/fe83803d-f6dc-4341-98a0-a5aeccd63651" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 5Ci (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + } + } + }, + { + "name": "Area 7A (SPL)", + "status": "publicP", "children": [ { - "name": "Area 7A (SPL) - left hemisphere", + "name": "Area 7A (SPL)", + "status": "left hemisphere", + "labelIndex": 82, "rgb": [ 38, 204, 19 ], - "labelIndex": 134, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -20931652, - -61293975, - 62298721 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f2635688-3894-471f-88db-c065871582de", + "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "f2635688-3894-471f-88db-c065871582de" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" } - ] + }, + "_": { + "xml": { + "name": "Area 7A (SPL)", + "id": "134", + "grayvalue": "82" + }, + "dat": { + "colors": "134 38 204 19", + "names": "134 pc2" + } + } }, { - "name": "Area 7A (SPL) - right hemisphere", + "name": "Area 7A (SPL)", + "status": "right hemisphere", + "labelIndex": 82, "rgb": [ 38, 204, 19 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 134, - "children": [], - "position": [ - 20754675, - -61621387, - 62051683 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f2635688-3894-471f-88db-c065871582de", + "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7A (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "f2635688-3894-471f-88db-c065871582de" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" - } - } - }, - { - "name": "Area 5Ci (SPL)", - "arealabel": "Area-5Ci", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 79, - 242, - 146 - ], - "children": [ - { - "name": "Area 5Ci (SPL) - left hemisphere", - "rgb": [ - 79, - 242, - 146 ], - "labelIndex": 136, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -15736664, - -35457926, - 42264087 - ], - "originDatasets": [ - { - "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" } - ] - }, - { - "name": "Area 5Ci (SPL) - right hemisphere", - "rgb": [ - 79, - 242, - 146 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 136, - "children": [], - "position": [ - 11398622, - -35143701, - 45477854 - ], - "originDatasets": [ - { - "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5Ci (SPL) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + }, + "_": { + "xml": { + "name": "Area 7A (SPL)", + "id": "134", + "grayvalue": "82" + }, + "dat": { + "colors": "134 38 204 19", + "names": "134 pc2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 7A (SPL)", + "arealabel": "Area-7A", + "status": "publicP", + "labelIndex": "134", + "doi": "https://doi.org/10.25493/7HX2-AJH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f2635688-3894-471f-88db-c065871582de" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 7A (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e26e999f-77ad-4934-9569-8290ed05ebda" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior parietal lobule", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "parietal operculum", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area OP2 (POperc)", - "arealabel": "Area-OP2", + "name": "Area OP3 (POperc)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 36, - 47, - 221 - ], "children": [ { - "name": "Area OP2 (POperc) - left hemisphere", + "name": "Area OP3 (POperc)", + "status": "left hemisphere", + "labelIndex": 81, "rgb": [ - 36, - 47, - 221 - ], - "labelIndex": 74, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -37009402, - -24886325, - 19503419 + 58, + 122, + 80 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8", + "filename": "Area OP3 (POperc) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" + } + }, + "_": { + "xml": { + "name": "Area OP3 (POperc)", + "id": "75", + "grayvalue": "81" + }, + "dat": { + "colors": "75 58 122 80", + "names": "75 OP3" } - ] + } }, { - "name": "Area OP2 (POperc) - right hemisphere", + "name": "Area OP3 (POperc)", + "status": "right hemisphere", + "labelIndex": 80, "rgb": [ - 36, - 47, - 221 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 74, - "children": [], - "position": [ - 35239706, - -21379412, - 18500000 + 58, + 122, + 80 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8", + "filename": "Area OP3 (POperc) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP2 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" } - ] + }, + "_": { + "xml": { + "name": "Area OP3 (POperc)", + "id": "75", + "grayvalue": "80" + }, + "dat": { + "colors": "75 58 122 80", + "names": "75 OP3" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP3 (POperc)", + "arealabel": "Area-OP3", + "status": "publicP", + "labelIndex": "75", + "doi": "https://doi.org/10.25493/1Z8F-PX4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/eddb0ef1-21d6-4271-ad36-f6c81ddba642" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP3 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f6f10b01-6c10-42cf-8129-f5aaf307a36b" } - }, - "relatedAreas": [] + } }, { "name": "Area OP4 (POperc)", - "arealabel": "Area-OP4", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 89, - 80, - 132 - ], "children": [ { - "name": "Area OP4 (POperc) - left hemisphere", + "name": "Area OP4 (POperc)", + "status": "left hemisphere", + "labelIndex": 10, "rgb": [ 89, 80, 132 ], - "labelIndex": 72, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -61452452, - -11957958, - 14987487 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "55213785-8693-438c-8f6b-7628609b4017", + "filename": "Area OP4 (POperc) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "55213785-8693-438c-8f6b-7628609b4017" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + } + }, + "_": { + "xml": { + "name": "Area OP4 (POperc)", + "id": "72", + "grayvalue": "10" + }, + "dat": { + "colors": "72 89 80 132", + "names": "72 OP4" } - ] + } }, { - "name": "Area OP4 (POperc) - right hemisphere", + "name": "Area OP4 (POperc)", + "status": "right hemisphere", + "labelIndex": 10, "rgb": [ 89, 80, 132 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 72, - "children": [], - "position": [ - 61825815, - -8262531, - 12300125 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "55213785-8693-438c-8f6b-7628609b4017", + "filename": "Area OP4 (POperc) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP4 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "55213785-8693-438c-8f6b-7628609b4017" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + } + }, + "_": { + "xml": { + "name": "Area OP4 (POperc)", + "id": "72", + "grayvalue": "10" + }, + "dat": { + "colors": "72 89 80 132", + "names": "72 OP4" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP4 (POperc)", + "arealabel": "Area-OP4", + "status": "publicP", + "labelIndex": "72", + "doi": "https://doi.org/10.25493/BVT0-H3U", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/55213785-8693-438c-8f6b-7628609b4017" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP4 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" } - }, - "relatedAreas": [] + } }, { - "name": "Area OP3 (POperc)", - "arealabel": "Area-OP3", + "name": "Area OP2 (POperc)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 58, - 122, - 80 - ], "children": [ { - "name": "Area OP3 (POperc) - left hemisphere", + "name": "Area OP2 (POperc)", + "status": "left hemisphere", + "labelIndex": 15, "rgb": [ - 58, - 122, - 80 - ], - "labelIndex": 75, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -41843266, - -14720501, - 18247318 + 36, + 47, + 221 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642", + "filename": "Area OP2 (POperc) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + } + }, + "_": { + "xml": { + "name": "Area OP2 (POperc)", + "id": "74", + "grayvalue": "15" + }, + "dat": { + "colors": "74 36 47 221", + "names": "74 OP2" } - ] + } }, { - "name": "Area OP3 (POperc) - right hemisphere", + "name": "Area OP2 (POperc)", + "status": "right hemisphere", + "labelIndex": 16, "rgb": [ - 58, - 122, - 80 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 75, - "children": [], - "position": [ - 40261521, - -11390553, - 18514977 + 36, + 47, + 221 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642", + "filename": "Area OP2 (POperc) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP3 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + } + }, + "_": { + "xml": { + "name": "Area OP2 (POperc)", + "id": "74", + "grayvalue": "16" + }, + "dat": { + "colors": "74 36 47 221", + "names": "74 OP2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP2 (POperc)", + "arealabel": "Area-OP2", + "status": "publicP", + "labelIndex": "74", + "doi": "https://doi.org/10.25493/5KBV-36J", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/0a3e9feb-5816-4593-a5c8-ca4b9099f7b8" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP2 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/ab26cefd-f7d6-4442-8020-a6e418e673ff" } - }, - "relatedAreas": [] + } }, { "name": "Area OP1 (POperc)", - "arealabel": "Area-OP1", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 250, - 182, - 34 - ], "children": [ { - "name": "Area OP1 (POperc) - left hemisphere", + "name": "Area OP1 (POperc)", + "status": "left hemisphere", + "labelIndex": 54, "rgb": [ 250, 182, 34 ], - "labelIndex": 73, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -52293320, - -24316468, - 18030093 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49", + "filename": "Area OP1 (POperc) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "402ec28d-0809-4226-91a4-900d9303291b" + } + }, + "_": { + "xml": { + "name": "Area OP1 (POperc)", + "id": "73", + "grayvalue": "54" + }, + "dat": { + "colors": "73 250 182 34", + "names": "73 OP1" + } + } }, { - "name": "Area OP1 (POperc) - right hemisphere", + "name": "Area OP1 (POperc)", + "status": "right hemisphere", + "labelIndex": 55, "rgb": [ 250, 182, 34 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 73, - "children": [], - "position": [ - 51168165, - -19477523, - 18151001 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49", + "filename": "Area OP1 (POperc) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP1 (POperc) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "402ec28d-0809-4226-91a4-900d9303291b" } - ] + }, + "_": { + "xml": { + "name": "Area OP1 (POperc)", + "id": "73", + "grayvalue": "55" + }, + "dat": { + "colors": "73 250 182 34", + "names": "73 OP1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "402ec28d-0809-4226-91a4-900d9303291b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP1 (POperc)", + "arealabel": "Area-OP1", + "status": "publicP", + "labelIndex": "73", + "doi": "https://doi.org/10.25493/SH37-979", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1802ffb1-6d1a-4c1a-a7d9-170664a98b49" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP1 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/402ec28d-0809-4226-91a4-900d9303291b" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "parietal operculum", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "postcentral gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 1 (PostCG)", - "arealabel": "Area-1", + "name": "Area 3b (PostCG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 232, - 185, - 250 - ], "children": [ { - "name": "Area 1 (PostCG) - left hemisphere", + "name": "Area 3b (PostCG)", + "status": "left hemisphere", + "labelIndex": 2, "rgb": [ - 232, - 185, - 250 - ], - "labelIndex": 125, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -47975865, - -26902730, - 58870063 + 239, + 246, + 155 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9", + "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c" } - ] - }, - { - "name": "Area 1 (PostCG) - right hemisphere", - "rgb": [ - 232, - 185, - 250 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 125, - "children": [], - "position": [ - 48161578, - -22485924, - 56291435 - ], - "originDatasets": [ - { - "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" - } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" - } - }, - "relatedAreas": [] - }, - { - "name": "Area 3b (PostCG)", - "arealabel": "Area-3b", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area 3b", "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "74304fe9-452e-4ca3-97a3-8cf3459bb1a0" + "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + } + }, + "_": { + "xml": { + "name": "Area 3b (PostCG)", + "id": "127", + "grayvalue": "2" + }, + "dat": { + "colors": "127 239 246 155", + "names": "127 3b" } } - } - ], - "rgb": [ - 239, - 246, - 155 - ], - "children": [ + }, { - "name": "Area 3b (PostCG) - left hemisphere", + "name": "Area 3b (PostCG)", + "status": "right hemisphere", + "labelIndex": 2, "rgb": [ 239, 246, 155 ], - "labelIndex": 127, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -46100804, - -21517231, - 46289585 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c", + "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c" } - ] - }, - { - "name": "Area 3b (PostCG) - right hemisphere", - "rgb": [ - 239, - 246, - 155 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 127, - "children": [], - "position": [ - 39338624, - -21564818, - 47310887 - ], - "originDatasets": [ - { - "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3b (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + } + }, + "_": { + "xml": { + "name": "Area 3b (PostCG)", + "id": "127", + "grayvalue": "2" + }, + "dat": { + "colors": "127 239 246 155", + "names": "127 3b" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 3b (PostCG)", + "arealabel": "Area-3b", + "status": "publicP", + "labelIndex": "127", + "doi": "https://doi.org/10.25493/2JK3-QXR", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/50ac42dd-5808-459c-882a-dbd98c76999c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 3b (PostCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" } } }, { - "name": "Area 3a (PostCG)", - "arealabel": "Area-3a", + "name": "Area 1 (PostCG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 187, - 133, - 50 - ], "children": [ { - "name": "Area 3a (PostCG) - left hemisphere", + "name": "Area 1 (PostCG)", + "status": "left hemisphere", + "labelIndex": 11, "rgb": [ - 187, - 133, - 50 - ], - "labelIndex": 126, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -32589090, - -25737826, - 44292752 + 232, + 185, + 250 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf", + "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" + } + }, + "_": { + "xml": { + "name": "Area 1 (PostCG)", + "id": "125", + "grayvalue": "11" + }, + "dat": { + "colors": "125 232 185 250", + "names": "125 eins" + } + } }, { - "name": "Area 3a (PostCG) - right hemisphere", + "name": "Area 1 (PostCG)", + "status": "right hemisphere", + "labelIndex": 11, "rgb": [ - 187, - 133, - 50 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 126, - "children": [], - "position": [ - 38084107, - -18062645, - 36367169 + 232, + 185, + 250 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf", + "filename": "Area 1 (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" + } + }, + "_": { + "xml": { + "name": "Area 1 (PostCG)", + "id": "125", + "grayvalue": "11" + }, + "dat": { + "colors": "125 232 185 250", + "names": "125 eins" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 1 (PostCG)", + "arealabel": "Area-1", + "status": "publicP", + "labelIndex": "125", + "doi": "https://doi.org/10.25493/THB5-B64", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ce8c8428-02fe-42f8-9a76-d297579b71c9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 1 (PostCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/c9753e82-80ca-4074-a704-9dd2c4c0d58b" } - }, - "relatedAreas": [] + } }, { "name": "Area 2 (PostCS)", - "arealabel": "Area-2", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 23, - 13, - 35 - ], "children": [ { - "name": "Area 2 (PostCS) - left hemisphere", + "name": "Area 2 (PostCS)", + "status": "left hemisphere", + "labelIndex": 75, "rgb": [ 23, 13, 35 ], - "labelIndex": 252, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -43927866, - -31926548, - 51956851 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e81716df-d1ab-417b-b69c-3da566aab026", + "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "e81716df-d1ab-417b-b69c-3da566aab026" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + } + }, + "_": { + "xml": { + "name": "Area 2 (PostCS)", + "id": "252", + "grayvalue": "75" + }, + "dat": { + "colors": "252 23 13 35", + "names": "252 area2" } - ] + } }, { - "name": "Area 2 (PostCS) - right hemisphere", + "name": "Area 2 (PostCS)", + "status": "right hemisphere", + "labelIndex": 75, "rgb": [ 23, 13, 35 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 252, - "children": [], - "position": [ - 38456046, - -31522535, - 52910085 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e81716df-d1ab-417b-b69c-3da566aab026", + "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 2 (PostCS) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "e81716df-d1ab-417b-b69c-3da566aab026" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" - } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "inferior parietal lobule", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area PFm (IPL)", - "arealabel": "Area-PFm", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PFm", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3455ada4-48c3-4748-ae38-2fe3f376f0fc" + "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + } + }, + "_": { + "xml": { + "name": "Area 2 (PostCS)", + "id": "252", + "grayvalue": "75" + }, + "dat": { + "colors": "252 23 13 35", + "names": "252 area2" } } } ], - "rgb": [ - 53, - 76, - 145 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area 2 (PostCS)", + "arealabel": "Area-2", + "status": "publicP", + "labelIndex": "252", + "doi": "https://doi.org/10.25493/QA8F-DD2", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e81716df-d1ab-417b-b69c-3da566aab026" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 2 (PostCS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + } + } + }, + { + "name": "Area 3a (PostCG)", + "status": "publicP", "children": [ { - "name": "Area PFm (IPL) - left hemisphere", + "name": "Area 3a (PostCG)", + "status": "left hemisphere", + "labelIndex": 105, "rgb": [ - 53, - 76, - 145 - ], - "labelIndex": 112, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -56791928, - -53657866, - 40055933 + 187, + 133, + 50 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0", + "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf" } - ] - }, - { - "name": "Area PFm (IPL) - right hemisphere", - "rgb": [ - 53, - 76, - 145 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 112, - "children": [], - "position": [ - 57321981, - -44055488, - 39537196 ], - "originDatasets": [ - { - "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" - } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "411edde9-685f-464b-970c-a929f9a4067c" - } - } - }, - { - "name": "Area PFop (IPL)", - "arealabel": "Area-PFop", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PFop", "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b4397c40-82e1-4d62-b97a-44e8d04b428b" + "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + } + }, + "_": { + "xml": { + "name": "Area 3a (PostCG)", + "id": "126", + "grayvalue": "105" + }, + "dat": { + "colors": "126 187 133 50", + "names": "126 3a" } } - } - ], - "rgb": [ - 146, - 153, - 177 - ], - "children": [ + }, { - "name": "Area PFop (IPL) - left hemisphere", + "name": "Area 3a (PostCG)", + "status": "right hemisphere", + "labelIndex": 105, "rgb": [ - 146, - 153, - 177 - ], - "labelIndex": 111, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -62520113, - -25681018, - 24621307 + 187, + 133, + 50 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f", + "filename": "Area 3a (PostCG) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf" } - ] - }, - { - "name": "Area PFop (IPL) - right hemisphere", - "rgb": [ - 146, - 153, - 177 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 111, - "children": [], - "position": [ - 57801693, - -19413543, - 26279323 ], - "originDatasets": [ - { - "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + } + }, + "_": { + "xml": { + "name": "Area 3a (PostCG)", + "id": "126", + "grayvalue": "105" + }, + "dat": { + "colors": "126 187 133 50", + "names": "126 3a" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 3a (PostCG)", + "arealabel": "Area-3a", + "status": "publicP", + "labelIndex": "126", + "doi": "https://doi.org/10.25493/C5QQ-EFB", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d2c20dce-122e-4c69-922a-1f33909496cf" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 3a (PostCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/2657ecc1-da69-4a37-9b37-66ae95f9623c" } } - }, + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "postcentral gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "inferior parietal lobule", + "status": null, + "children": [ { "name": "Area PF (IPL)", - "arealabel": "Area-PF", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PF", - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f4e177a6-1b2c-48d5-a62c-91949ba636e4" - } - } - } - ], - "rgb": [ - 226, - 211, - 61 - ], "children": [ { - "name": "Area PF (IPL) - left hemisphere", + "name": "Area PF (IPL)", + "status": "left hemisphere", + "labelIndex": 4, "rgb": [ 226, 211, 61 ], - "labelIndex": 206, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -62326709, - -38492101, - 37676006 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3", + "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" + } + }, + "_": { + "xml": { + "name": "Area PF (IPL)", + "id": "206", + "grayvalue": "4" + }, + "dat": { + "colors": "206 226 211 61", + "names": "206 PF" } - ] + } }, { - "name": "Area PF (IPL) - right hemisphere", + "name": "Area PF (IPL)", + "status": "right hemisphere", + "labelIndex": 3, "rgb": [ 226, 211, 61 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 206, - "children": [], - "position": [ - 64184952, - -31767876, - 31797118 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3", + "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PF (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" - } - } - }, - { - "name": "Area PGp (IPL)", - "arealabel": "Area-PGp", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PGp", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "1b00a0e4-9493-43ff-bfbd-b02119064813" + "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" + } + }, + "_": { + "xml": { + "name": "Area PF (IPL)", + "id": "206", + "grayvalue": "3" + }, + "dat": { + "colors": "206 226 211 61", + "names": "206 PF" } } } ], - "rgb": [ - 92, - 116, - 83 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area PF (IPL)", + "arealabel": "Area-PF", + "status": "publicP", + "labelIndex": "206", + "doi": "https://doi.org/10.25493/F1TJ-54W", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e1528fe1-a812-44d9-a0ca-f738b0e705e3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PF (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" + } + } + }, + { + "name": "Area PFcm (IPL)", + "status": "publicP", "children": [ { - "name": "Area PGp (IPL) - left hemisphere", + "name": "Area PFcm (IPL)", + "status": "left hemisphere", + "labelIndex": 31, "rgb": [ - 92, - 116, - 83 - ], - "labelIndex": 108, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -46213502, - -75081229, - 30404363 + 98, + 128, + 120 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96", + "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "03520da2-e553-4284-84e4-d8b293446cd4" } - ] - }, - { - "name": "Area PGp (IPL) - right hemisphere", - "rgb": [ - 92, - 116, - 83 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 108, - "children": [], - "position": [ - 47682598, - -70326680, - 31755974 + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" + } + }, + "_": { + "xml": { + "name": "Area PFcm (IPL)", + "id": "113", + "grayvalue": "31" + }, + "dat": { + "colors": "113 98 128 120", + "names": "113 PFcm" + } + } + }, + { + "name": "Area PFcm (IPL)", + "status": "right hemisphere", + "labelIndex": 31, + "rgb": [ + 98, + 128, + 120 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96", + "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "03520da2-e553-4284-84e4-d8b293446cd4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" } - ] + }, + "_": { + "xml": { + "name": "Area PFcm (IPL)", + "id": "113", + "grayvalue": "31" + }, + "dat": { + "colors": "113 98 128 120", + "names": "113 PFcm" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFcm (IPL)", + "arealabel": "Area-PFcm", + "status": "publicP", + "labelIndex": "113", + "doi": "https://doi.org/10.25493/8DP8-8HE", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/03520da2-e553-4284-84e4-d8b293446cd4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFcm (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/10502c3a-f20e-44fa-b985-786d6888d4bb" } } }, { "name": "Area PGa (IPL)", - "arealabel": "Area-PGa", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PGa", - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d5b168a3-a92e-4ab3-8b4d-61e58e5b7a1c" - } - } - } - ], - "rgb": [ - 42, - 236, - 131 - ], "children": [ { - "name": "Area PGa (IPL) - left hemisphere", + "name": "Area PGa (IPL)", + "status": "left hemisphere", + "labelIndex": 73, "rgb": [ 42, 236, 131 ], - "labelIndex": 110, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -50169585, - -63561531, - 38956978 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc", + "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" } - ] + }, + "_": { + "xml": { + "name": "Area PGa (IPL)", + "id": "110", + "grayvalue": "73" + }, + "dat": { + "colors": "110 42 236 131", + "names": "110 PGa" + } + } }, { - "name": "Area PGa (IPL) - right hemisphere", + "name": "Area PGa (IPL)", + "status": "right hemisphere", + "labelIndex": 73, "rgb": [ 42, 236, 131 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 110, - "children": [], - "position": [ - 55106872, - -54828987, - 31733304 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc", + "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGa (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" } - ] + }, + "_": { + "xml": { + "name": "Area PGa (IPL)", + "id": "110", + "grayvalue": "73" + }, + "dat": { + "colors": "110 42 236 131", + "names": "110 PGa" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PGa (IPL)", + "arealabel": "Area-PGa", + "status": "publicP", + "labelIndex": "110", + "doi": "https://doi.org/10.25493/V5HY-XTS", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/25451957-c246-4a42-99d4-07c88d4e78fc" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PGa (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d7f6c5be-93c6-4a16-8939-4420329d4147" } } }, { "name": "Area PFt (IPL)", - "arealabel": "Area-PFt", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ + "children": [ { - "name": "Area PFt", + "name": "Area PFt (IPL)", + "status": "left hemisphere", + "labelIndex": 25, + "rgb": [ + 120, + 135, + 232 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "b5375459-2b03-4c67-a125-25c923180017" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9ff7fcc4-a88b-4bf8-be07-1386a3760a96" + "kgId": "847cef50-7340-470d-8580-327b4ce9db19" + } + }, + "_": { + "xml": { + "name": "Area PFt (IPL)", + "id": "109", + "grayvalue": "25" + }, + "dat": { + "colors": "109 120 135 232", + "names": "109 PFt" } } - } - ], - "rgb": [ - 120, - 135, - 232 - ], - "children": [ + }, { - "name": "Area PFt (IPL) - left hemisphere", + "name": "Area PFt (IPL)", + "status": "right hemisphere", + "labelIndex": 26, "rgb": [ 120, 135, 232 ], - "labelIndex": 109, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -57342169, - -28159557, - 38579423 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "b5375459-2b03-4c67-a125-25c923180017", + "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "b5375459-2b03-4c67-a125-25c923180017" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "847cef50-7340-470d-8580-327b4ce9db19" + } + }, + "_": { + "xml": { + "name": "Area PFt (IPL)", + "id": "109", + "grayvalue": "26" + }, + "dat": { + "colors": "109 120 135 232", + "names": "109 PFt" } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFt (IPL)", + "arealabel": "Area-PFt", + "status": "publicP", + "labelIndex": "109", + "doi": "https://doi.org/10.25493/JGM9-ZET", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/b5375459-2b03-4c67-a125-25c923180017" }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFt (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/847cef50-7340-470d-8580-327b4ce9db19" + } + } + }, + { + "name": "Area PFm (IPL)", + "status": "publicP", + "children": [ { - "name": "Area PFt (IPL) - right hemisphere", + "name": "Area PFm (IPL)", + "status": "left hemisphere", + "labelIndex": 89, "rgb": [ - 120, - 135, - 232 + 53, + 76, + 145 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 109, - "children": [], - "position": [ - 55074906, - -22994639, - 39924515 + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "411edde9-685f-464b-970c-a929f9a4067c" + } + }, + "_": { + "xml": { + "name": "Area PFm (IPL)", + "id": "112", + "grayvalue": "89" + }, + "dat": { + "colors": "112 53 76 145", + "names": "112 PFm" + } + } + }, + { + "name": "Area PFm (IPL)", + "status": "right hemisphere", + "labelIndex": 89, + "rgb": [ + 53, + 76, + 145 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "b5375459-2b03-4c67-a125-25c923180017", + "filename": "Area PFm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFt (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "411edde9-685f-464b-970c-a929f9a4067c" + } + }, + "_": { + "xml": { + "name": "Area PFm (IPL)", + "id": "112", + "grayvalue": "89" + }, + "dat": { + "colors": "112 53 76 145", + "names": "112 PFm" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "847cef50-7340-470d-8580-327b4ce9db19" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFm (IPL)", + "arealabel": "Area-PFm", + "status": "publicP", + "labelIndex": "112", + "doi": "https://doi.org/10.25493/TB94-HRK", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFm (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/411edde9-685f-464b-970c-a929f9a4067c" } } }, { - "name": "Area PFcm (IPL)", - "arealabel": "Area-PFcm", + "name": "Area PGp (IPL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ + "children": [ + { + "name": "Area PGp (IPL)", + "status": "left hemisphere", + "labelIndex": 22, + "rgb": [ + 92, + 116, + 83 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + } + }, + "_": { + "xml": { + "name": "Area PGp (IPL)", + "id": "108", + "grayvalue": "22" + }, + "dat": { + "colors": "108 92 116 83", + "names": "108 PGp" + } + } + }, { - "name": "Area PFcm", + "name": "Area PGp (IPL)", + "status": "right hemisphere", + "labelIndex": 22, + "rgb": [ + 92, + 116, + 83 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area PGp (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f07d441f-452f-471b-ac7c-0d3c2ae16fb2" + "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + } + }, + "_": { + "xml": { + "name": "Area PGp (IPL)", + "id": "108", + "grayvalue": "22" + }, + "dat": { + "colors": "108 92 116 83", + "names": "108 PGp" } } } ], - "rgb": [ - 98, - 128, - 120 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area PGp (IPL)", + "arealabel": "Area-PGp", + "status": "publicP", + "labelIndex": "108", + "doi": "https://doi.org/10.25493/FPFJ-ZCD", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2105576e-e1b0-4e03-9cb4-8c2b65be2f96" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PGp (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b3ef6947-76c9-4935-bbc6-8b2329c0967b" + } + } + }, + { + "name": "Area PFop (IPL)", + "status": "publicP", "children": [ { - "name": "Area PFcm (IPL) - left hemisphere", + "name": "Area PFop (IPL)", + "status": "left hemisphere", + "labelIndex": 114, "rgb": [ - 98, - 128, - 120 - ], - "labelIndex": 113, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -53295618, - -39421369, - 23142857 + 146, + 153, + 177 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "03520da2-e553-4284-84e4-d8b293446cd4", + "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" } - ] + }, + "_": { + "xml": { + "name": "Area PFop (IPL)", + "id": "111", + "grayvalue": "114" + }, + "dat": { + "colors": "111 146 153 177", + "names": "111 PFop" + } + } }, { - "name": "Area PFcm (IPL) - right hemisphere", + "name": "Area PFop (IPL)", + "status": "right hemisphere", + "labelIndex": 115, "rgb": [ - 98, - 128, - 120 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 113, - "children": [], - "position": [ - 52927071, - -29776768, - 24592525 + 146, + 153, + 177 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "03520da2-e553-4284-84e4-d8b293446cd4", + "filename": "Area PFop (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFcm (IPL) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" } - ] + }, + "_": { + "xml": { + "name": "Area PFop (IPL)", + "id": "111", + "grayvalue": "115" + }, + "dat": { + "colors": "111 146 153 177", + "names": "111 PFop" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFop (IPL)", + "arealabel": "Area-PFop", + "status": "publicP", + "labelIndex": "111", + "doi": "https://doi.org/10.25493/M2PM-92Q", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFop (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e8262e56-88fe-4006-b078-def4d78416b8" } } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "inferior parietal lobule", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "parieto-occipital sulcus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Area hPO1 (POS)", - "arealabel": "Area-hPO1", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 153, - 232, - 235 - ], "children": [ { - "name": "Area hPO1 (POS) - left hemisphere", + "name": "Area hPO1 (POS)", + "status": "left hemisphere", + "labelIndex": 14, "rgb": [ 153, 232, 235 ], - "labelIndex": 297, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -16522864, - -81584154, - 36346936 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428", + "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" } - ] + }, + "_": { + "xml": { + "name": "Area hPO1 (POS)", + "id": "297", + "grayvalue": "14" + }, + "dat": { + "colors": "297 153 232 235", + "names": "297 hPO1" + } + } }, { - "name": "Area hPO1 (POS) - right hemisphere", + "name": "Area hPO1 (POS)", + "status": "right hemisphere", + "labelIndex": 14, "rgb": [ 153, 232, 235 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 297, - "children": [], - "position": [ - 21240705, - -81149825, - 37156498 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428", + "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" } - ] + }, + "_": { + "xml": { + "name": "Area hPO1 (POS)", + "id": "297", + "grayvalue": "14" + }, + "dat": { + "colors": "297 153 232 235", + "names": "297 hPO1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hPO1 (POS)", + "arealabel": "Area-hPO1", + "status": "publicP", + "labelIndex": "297", + "doi": "https://doi.org/10.25493/W50A-FAP", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7593b453-f916-4bd0-ae2b-d4cbff307428" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hPO1 (POS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a78998c2-99d4-4738-bbda-82a317f713f1" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "parieto-occipital sulcus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "intraparietal sulcus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hIP5 (IPS)", - "arealabel": "Area-hIP5", + "name": "Area hIP1 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 217, - 87, - 210 - ], "children": [ { - "name": "Area hIP5 (IPS) - left hemisphere", + "name": "Area hIP1 (IPS)", + "status": "left hemisphere", + "labelIndex": 74, "rgb": [ - 217, - 87, - 210 - ], - "labelIndex": 295, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -29185032, - -74634355, - 36823512 + 66, + 149, + 82 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "24b2682f-5c82-4439-8278-bc526b530030", + "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "3367db70-cd25-4834-9646-9604308dfa02" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" } - ] + }, + "_": { + "xml": { + "name": "Area hIP1 (IPS)", + "id": "128", + "grayvalue": "74" + }, + "dat": { + "colors": "128 66 149 82", + "names": "128 ip1" + } + } }, { - "name": "Area hIP5 (IPS) - right hemisphere", + "name": "Area hIP1 (IPS)", + "status": "right hemisphere", + "labelIndex": 74, "rgb": [ - 217, - 87, - 210 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 295, - "children": [], - "position": [ - 33939891, - -69259563, - 34275566 + 66, + 149, + 82 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "24b2682f-5c82-4439-8278-bc526b530030", + "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "3367db70-cd25-4834-9646-9604308dfa02" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + } + }, + "_": { + "xml": { + "name": "Area hIP1 (IPS)", + "id": "128", + "grayvalue": "74" + }, + "dat": { + "colors": "128 66 149 82", + "names": "128 ip1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP1 (IPS)", + "arealabel": "Area-hIP1", + "status": "publicP", + "labelIndex": "128", + "doi": "https://doi.org/10.25493/92FE-7S6", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/3367db70-cd25-4834-9646-9604308dfa02" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP1 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7722c71f-fe84-4deb-8f6b-98e2aecf2e31" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP3 (IPS)", - "arealabel": "Area-hIP3", + "name": "Area hIP7 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 113, - 172, - 229 - ], "children": [ { - "name": "Area hIP3 (IPS) - left hemisphere", + "name": "Area hIP7 (IPS)", + "status": "left hemisphere", + "labelIndex": 121, "rgb": [ - 113, - 172, - 229 - ], - "labelIndex": 133, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -31442940, - -54720825, - 48220503 + 71, + 196, + 218 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93", + "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "aff5df97-f341-4370-97af-58d9f40c9877" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" } - ] + }, + "_": { + "xml": { + "name": "Area hIP7 (IPS)", + "id": "296", + "grayvalue": "121" + }, + "dat": { + "colors": "296 71 196 218", + "names": "296 hIP7" + } + } }, { - "name": "Area hIP3 (IPS) - right hemisphere", + "name": "Area hIP7 (IPS)", + "status": "right hemisphere", + "labelIndex": 121, "rgb": [ - 113, - 172, - 229 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 133, - "children": [], - "position": [ - 33068074, - -49000000, - 50509215 + 71, + 196, + 218 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93", + "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "aff5df97-f341-4370-97af-58d9f40c9877" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" } - ] + }, + "_": { + "xml": { + "name": "Area hIP7 (IPS)", + "id": "296", + "grayvalue": "121" + }, + "dat": { + "colors": "296 71 196 218", + "names": "296 hIP7" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP7 (IPS)", + "arealabel": "Area-hIP7", + "status": "publicP", + "labelIndex": "296", + "doi": "https://doi.org/10.25493/WRCY-8Z1", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/aff5df97-f341-4370-97af-58d9f40c9877" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP7 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9c6c3c96-8129-4e0e-aa22-a0fb435aab45" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP8 (IPS)", - "arealabel": "Area-hIP8", + "name": "Area hIP3 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 223, - 109, - 3 - ], "children": [ { - "name": "Area hIP8 (IPS) - left hemisphere", + "name": "Area hIP3 (IPS)", + "status": "left hemisphere", + "labelIndex": 42, "rgb": [ - 223, - 109, - 3 - ], - "labelIndex": 293, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -18598696, - -73068715, - 43463501 + 113, + 172, + 229 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2dba112f-075c-4dba-813d-e408ff429586", + "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + } + }, + "_": { + "xml": { + "name": "Area hIP3 (IPS)", + "id": "133", + "grayvalue": "42" + }, + "dat": { + "colors": "133 113 172 229", + "names": "133 mip" + } + } }, { - "name": "Area hIP8 (IPS) - right hemisphere", + "name": "Area hIP3 (IPS)", + "status": "right hemisphere", + "labelIndex": 42, "rgb": [ - 223, - 109, - 3 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 293, - "children": [], - "position": [ - 24977204, - -71433131, - 41158435 + 113, + 172, + 229 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2dba112f-075c-4dba-813d-e408ff429586", + "filename": "Area hIP3 (IPS) [v8.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + } + }, + "_": { + "xml": { + "name": "Area hIP3 (IPS)", + "id": "133", + "grayvalue": "42" + }, + "dat": { + "colors": "133 113 172 229", + "names": "133 mip" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP3 (IPS)", + "arealabel": "Area-hIP3", + "status": "publicP", + "labelIndex": "133", + "doi": "https://doi.org/10.25493/P8X0-V1G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/bd1062af-e9c5-4b8d-9742-2172be4fef93" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP3 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/700ac6db-870d-44f1-8786-0c01207f992b" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP4 (IPS)", - "arealabel": "Area-hIP4", + "name": "Area hIP2 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 254, - 52, - 184 - ], "children": [ { - "name": "Area hIP4 (IPS) - left hemisphere", + "name": "Area hIP2 (IPS)", + "status": "left hemisphere", + "labelIndex": 64, "rgb": [ - 254, - 52, - 184 - ], - "labelIndex": 294, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -31264133, - -81080409, - 24906920 + 127, + 245, + 203 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46", + "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" } - ] + }, + "_": { + "xml": { + "name": "Area hIP2 (IPS)", + "id": "129", + "grayvalue": "64" + }, + "dat": { + "colors": "129 127 245 203", + "names": "129 ip2" + } + } }, { - "name": "Area hIP4 (IPS) - right hemisphere", + "name": "Area hIP2 (IPS)", + "status": "right hemisphere", + "labelIndex": 64, "rgb": [ - 254, - 52, - 184 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 294, - "children": [], - "position": [ - 37282609, - -76348814, - 22440217 + 127, + 245, + 203 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46", + "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" } - ] + }, + "_": { + "xml": { + "name": "Area hIP2 (IPS)", + "id": "129", + "grayvalue": "64" + }, + "dat": { + "colors": "129 127 245 203", + "names": "129 ip2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP2 (IPS)", + "arealabel": "Area-hIP2", + "status": "publicP", + "labelIndex": "129", + "doi": "https://doi.org/10.25493/EJTM-NDY", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a8ee352c-13fc-45fd-9522-c7ac9de9bd61" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP2 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/4490ef3e-ce60-4453-9e9f-85388d0603cb" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP7 (IPS)", - "arealabel": "Area-hIP7", + "name": "Area hIP4 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 71, - 196, - 218 - ], "children": [ { - "name": "Area hIP7 (IPS) - left hemisphere", + "name": "Area hIP4 (IPS)", + "status": "left hemisphere", + "labelIndex": 37, "rgb": [ - 71, - 196, - 218 - ], - "labelIndex": 296, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -24182639, - -81016889, - 28962687 + 254, + 52, + 184 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "aff5df97-f341-4370-97af-58d9f40c9877", + "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + } + }, + "_": { + "xml": { + "name": "Area hIP4 (IPS)", + "id": "294", + "grayvalue": "37" + }, + "dat": { + "colors": "294 254 52 184", + "names": "294 hIP4" } - ] + } }, { - "name": "Area hIP7 (IPS) - right hemisphere", + "name": "Area hIP4 (IPS)", + "status": "right hemisphere", + "labelIndex": 37, "rgb": [ - 71, - 196, - 218 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 296, - "children": [], - "position": [ - 29594078, - -79106072, - 27718516 + 254, + 52, + 184 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "aff5df97-f341-4370-97af-58d9f40c9877", + "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + } + }, + "_": { + "xml": { + "name": "Area hIP4 (IPS)", + "id": "294", + "grayvalue": "37" + }, + "dat": { + "colors": "294 254 52 184", + "names": "294 hIP4" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP4 (IPS)", + "arealabel": "Area-hIP4", + "status": "publicP", + "labelIndex": "294", + "doi": "https://doi.org/10.25493/TSEN-QSY", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f2ec3ab5-c604-4dd6-b941-ffc37288cc46" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP4 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5875bfe2-99ca-4e50-bce2-61c201c3dd54" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP1 (IPS)", - "arealabel": "Area-hIP1", + "name": "Area hIP5 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 66, - 149, - 82 - ], "children": [ { - "name": "Area hIP1 (IPS) - left hemisphere", + "name": "Area hIP5 (IPS)", + "status": "left hemisphere", + "labelIndex": 33, "rgb": [ - 66, - 149, - 82 - ], - "labelIndex": 128, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -37649600, - -50042430, - 40308099 + 217, + 87, + 210 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "3367db70-cd25-4834-9646-9604308dfa02", + "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "24b2682f-5c82-4439-8278-bc526b530030" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" + } + }, + "_": { + "xml": { + "name": "Area hIP5 (IPS)", + "id": "295", + "grayvalue": "33" + }, + "dat": { + "colors": "295 217 87 210", + "names": "295 hIP5" } - ] + } }, { - "name": "Area hIP1 (IPS) - right hemisphere", + "name": "Area hIP5 (IPS)", + "status": "right hemisphere", + "labelIndex": 33, "rgb": [ - 66, - 149, - 82 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 128, - "children": [], - "position": [ - 40174687, - -47498075, - 39221848 + 217, + 87, + 210 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "3367db70-cd25-4834-9646-9604308dfa02", + "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP1 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "24b2682f-5c82-4439-8278-bc526b530030" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" } - ] + }, + "_": { + "xml": { + "name": "Area hIP5 (IPS)", + "id": "295", + "grayvalue": "33" + }, + "dat": { + "colors": "295 217 87 210", + "names": "295 hIP5" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP5 (IPS)", + "arealabel": "Area-hIP5", + "status": "publicP", + "labelIndex": "295", + "doi": "https://doi.org/10.25493/RNSM-Y4Y", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/24b2682f-5c82-4439-8278-bc526b530030" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP5 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f9717dec-0310-4078-a4ae-294170b4fb37" } - }, - "relatedAreas": [] + } }, { "name": "Area hIP6 (IPS)", - "arealabel": "Area-hIP6", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 237, - 233, - 37 - ], "children": [ { - "name": "Area hIP6 (IPS) - left hemisphere", + "name": "Area hIP6 (IPS)", + "status": "left hemisphere", + "labelIndex": 40, "rgb": [ 237, 233, 37 ], - "labelIndex": 292, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -32177576, - -67578743, - 47685353 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80", + "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + } + }, + "_": { + "xml": { + "name": "Area hIP6 (IPS)", + "id": "292", + "grayvalue": "40" + }, + "dat": { + "colors": "292 237 233 37", + "names": "292 hIP6" } - ] + } }, { - "name": "Area hIP6 (IPS) - right hemisphere", + "name": "Area hIP6 (IPS)", + "status": "right hemisphere", + "labelIndex": 40, "rgb": [ 237, 233, 37 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 292, - "children": [], - "position": [ - 37140789, - -63130263, - 45176974 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80", + "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + } + }, + "_": { + "xml": { + "name": "Area hIP6 (IPS)", + "id": "292", + "grayvalue": "40" + }, + "dat": { + "colors": "292 237 233 37", + "names": "292 hIP6" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP6 (IPS)", + "arealabel": "Area-hIP6", + "status": "publicP", + "labelIndex": "292", + "doi": "https://doi.org/10.25493/AFQR-50Q", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e51da69b-f5de-49d5-9566-6fde3ef14d80" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP6 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b9975f8e-f484-4e82-883a-5fd765855ae0" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP2 (IPS)", - "arealabel": "Area-hIP2", + "name": "Area hIP8 (IPS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 127, - 245, - 203 - ], "children": [ { - "name": "Area hIP2 (IPS) - left hemisphere", + "name": "Area hIP8 (IPS)", + "status": "left hemisphere", + "labelIndex": 57, "rgb": [ - 127, - 245, - 203 - ], - "labelIndex": 129, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -48109229, - -42174005, - 43577477 + 223, + 109, + 3 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61", + "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2dba112f-075c-4dba-813d-e408ff429586" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" } - ] + }, + "_": { + "xml": { + "name": "Area hIP8 (IPS)", + "id": "293", + "grayvalue": "57" + }, + "dat": { + "colors": "293 223 109 3", + "names": "293 hIP8" + } + } }, { - "name": "Area hIP2 (IPS) - right hemisphere", + "name": "Area hIP8 (IPS)", + "status": "right hemisphere", + "labelIndex": 57, "rgb": [ - 127, - 245, - 203 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 129, - "children": [], - "position": [ - 44102535, - -39182604, - 45742512 + 223, + 109, + 3 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61", + "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP2 (IPS) [v6.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2dba112f-075c-4dba-813d-e408ff429586" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" } - ] + }, + "_": { + "xml": { + "name": "Area hIP8 (IPS)", + "id": "293", + "grayvalue": "57" + }, + "dat": { + "colors": "293 223 109 3", + "names": "293 hIP8" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP8 (IPS)", + "arealabel": "Area-hIP8", + "status": "publicP", + "labelIndex": "293", + "doi": "https://doi.org/10.25493/YYT8-FT8", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2dba112f-075c-4dba-813d-e408ff429586" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP8 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "intraparietal sulcus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } } - ] - }, - { + ], + "_": { + "jubrain-ontology_24.json": { + "name": "parietal lobe", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { "name": "occiptal lobe", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "dorsal occipital cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hOc4d (Cuneus)", - "arealabel": "Area-hOc4d", + "name": "Area hOc6 (POS)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 109, - 218, - 10 - ], "children": [ { - "name": "Area hOc4d (Cuneus) - left hemisphere", + "name": "Area hOc6 (POS)", + "status": "left hemisphere", + "labelIndex": 47, "rgb": [ - 109, - 218, - 10 - ], - "labelIndex": 119, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -18518125, - -89169571, - 25335483 + 239, + 66, + 26 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "704230e3-434b-45d7-875c-05600272f01a", + "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + } + }, + "_": { + "xml": { + "name": "Area hOc6 (POS)", + "id": "291", + "grayvalue": "47" + }, + "dat": { + "colors": "291 239 66 26", + "names": "291 hOc6" } - ] + } }, { - "name": "Area hOc4d (Cuneus) - right hemisphere", + "name": "Area hOc6 (POS)", + "status": "right hemisphere", + "labelIndex": 47, "rgb": [ - 109, - 218, - 10 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 119, - "children": [], - "position": [ - 19552047, - -87379086, - 27567915 + 239, + 66, + 26 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "704230e3-434b-45d7-875c-05600272f01a", + "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + } + }, + "_": { + "xml": { + "name": "Area hOc6 (POS)", + "id": "291", + "grayvalue": "47" + }, + "dat": { + "colors": "291 239 66 26", + "names": "291 hOc6" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8120426c-f65b-4426-8a58-3060e2334921" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc6 (POS)", + "arealabel": "Area-hOc6", + "status": "publicP", + "labelIndex": "291", + "doi": "https://doi.org/10.25493/4101-1ZG", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f3a24a48-3d23-4d92-9de6-e13dc888f1b5" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc6 (POS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d72e0210-a910-4b15-bcaf-80c3433cd3e0" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc3d (Cuneus)", - "arealabel": "Area-hOc3d", + "name": "Area hOc4d (Cuneus)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 105, - 191, - 48 - ], "children": [ { - "name": "Area hOc3d (Cuneus) - left hemisphere", + "name": "Area hOc4d (Cuneus)", + "status": "left hemisphere", + "labelIndex": 8, "rgb": [ - 105, - 191, - 48 - ], - "labelIndex": 120, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -14416089, - -92302582, - 21786681 + 109, + 218, + 10 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc", + "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "704230e3-434b-45d7-875c-05600272f01a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8120426c-f65b-4426-8a58-3060e2334921" } - ] + }, + "_": { + "xml": { + "name": "Area hOc4d (Cuneus)", + "id": "119", + "grayvalue": "8" + }, + "dat": { + "colors": "119 109 218 10", + "names": "119 V3a" + } + } }, { - "name": "Area hOc3d (Cuneus) - right hemisphere", + "name": "Area hOc4d (Cuneus)", + "status": "right hemisphere", + "labelIndex": 8, "rgb": [ - 105, - 191, - 48 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 120, - "children": [], - "position": [ - 14188075, - -89168467, - 24647659 + 109, + 218, + 10 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc", + "filename": "Area hOc4d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "704230e3-434b-45d7-875c-05600272f01a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8120426c-f65b-4426-8a58-3060e2334921" } - ] + }, + "_": { + "xml": { + "name": "Area hOc4d (Cuneus)", + "id": "119", + "grayvalue": "8" + }, + "dat": { + "colors": "119 109 218 10", + "names": "119 V3a" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4d (Cuneus)", + "arealabel": "Area-hOc4d", + "status": "publicP", + "labelIndex": "119", + "doi": "https://doi.org/10.25493/VSK5-DET", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/704230e3-434b-45d7-875c-05600272f01a" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4d (Cuneus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/8120426c-f65b-4426-8a58-3060e2334921" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc6 (POS)", - "arealabel": "Area-hOc6", + "name": "Area hOc3d (Cuneus)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 239, - 66, - 26 - ], "children": [ { - "name": "Area hOc6 (POS) - left hemisphere", + "name": "Area hOc3d (Cuneus)", + "status": "left hemisphere", + "labelIndex": 78, "rgb": [ - 239, - 66, - 26 - ], - "labelIndex": 291, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -17598229, - -72213366, - 15094203 + 105, + 191, + 48 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5", + "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + } + }, + "_": { + "xml": { + "name": "Area hOc3d (Cuneus)", + "id": "120", + "grayvalue": "78" + }, + "dat": { + "colors": "120 105 191 48", + "names": "120 V3d" } - ] + } }, { - "name": "Area hOc6 (POS) - right hemisphere", + "name": "Area hOc3d (Cuneus)", + "status": "right hemisphere", + "labelIndex": 79, "rgb": [ - 239, - 66, - 26 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 291, - "children": [], - "position": [ - 17851310, - -68066256, - 18144838 + 105, + 191, + 48 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5", + "filename": "Area hOc3d (Cuneus) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + } + }, + "_": { + "xml": { + "name": "Area hOc3d (Cuneus)", + "id": "120", + "grayvalue": "79" + }, + "dat": { + "colors": "120 105 191 48", + "names": "120 V3d" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc3d (Cuneus)", + "arealabel": "Area-hOc3d", + "status": "publicP", + "labelIndex": "120", + "doi": "https://doi.org/10.25493/F9X3-JVJ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc3d (Cuneus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d7ec4342-ae58-41e3-a68c-28e90a719d41" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dorsal occipital cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "ventral occipital cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hOc4v (LingG)", - "arealabel": "Area-hOc4v", + "name": "Area hOc3v (LingG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 222, - 77, - 155 - ], "children": [ { - "name": "Area hOc4v (LingG) - left hemisphere", + "name": "Area hOc3v (LingG)", + "status": "left hemisphere", + "labelIndex": 29, "rgb": [ - 222, - 77, + 83, + 179, 155 ], - "labelIndex": 9, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -27885066, - -80622049, - -13384313 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c", + "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" + } + }, + "_": { + "xml": { + "name": "Area hOc3v (LingG)", + "id": "10", + "grayvalue": "29" + }, + "dat": { + "colors": "10 83 179 155", + "names": "10 Vp" } - ] + } }, { - "name": "Area hOc4v (LingG) - right hemisphere", + "name": "Area hOc3v (LingG)", + "status": "right hemisphere", + "labelIndex": 29, "rgb": [ - 222, - 77, + 83, + 179, 155 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 9, - "children": [], - "position": [ - 31875471, - -78011213, - -12568268 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c", + "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" } - ] + }, + "_": { + "xml": { + "name": "Area hOc3v (LingG)", + "id": "10", + "grayvalue": "29" + }, + "dat": { + "colors": "10 83 179 155", + "names": "10 Vp" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc3v (LingG)", + "arealabel": "Area-hOc3v", + "status": "publicP", + "labelIndex": "10", + "doi": "https://doi.org/10.25493/E5E8-1VV", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/76b837d8-5c64-4c50-b825-efbbe72f6625" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc3v (LingG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/0d6392fd-b905-4bc3-bac9-fc44d8990a30" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc3v (LingG)", - "arealabel": "Area-hOc3v", + "name": "Area hOc4v (LingG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 83, - 179, - 155 - ], "children": [ { - "name": "Area hOc3v (LingG) - left hemisphere", + "name": "Area hOc4v (LingG)", + "status": "left hemisphere", + "labelIndex": 115, "rgb": [ - 83, - 179, + 222, + 77, 155 ], - "labelIndex": 10, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -19368217, - -87017481, - -10849154 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625", + "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + } + }, + "_": { + "xml": { + "name": "Area hOc4v (LingG)", + "id": "9", + "grayvalue": "115" + }, + "dat": { + "colors": "9 222 77 155", + "names": "9 V4v" + } + } }, { - "name": "Area hOc3v (LingG) - right hemisphere", + "name": "Area hOc4v (LingG)", + "status": "right hemisphere", + "labelIndex": 114, "rgb": [ - 83, - 179, + 222, + 77, 155 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 10, - "children": [], - "position": [ - 22758654, - -83233966, - -10415129 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625", + "filename": "Area hOc4v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3v (LingG) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + } + }, + "_": { + "xml": { + "name": "Area hOc4v (LingG)", + "id": "9", + "grayvalue": "114" + }, + "dat": { + "colors": "9 222 77 155", + "names": "9 V4v" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4v (LingG)", + "arealabel": "Area-hOc4v", + "status": "publicP", + "labelIndex": "9", + "doi": "https://doi.org/10.25493/AASR-M8P", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e2d948e4-f52d-4f02-a635-017f3c71186c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4v (LingG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "ventral occipital cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "occipital cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Area hOc2 (V2, 18)", - "arealabel": "Area-hOc2", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 84, - 110, - 22 - ], "children": [ { - "name": "Area hOc2 (V2, 18) - left hemisphere", + "name": "Area hOc2 (V2, 18)", + "status": "left hemisphere", + "labelIndex": 5, "rgb": [ 84, 110, 22 ], - "labelIndex": 7, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -10978138, - -87917881, - 3523276 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0", + "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" } - ] + }, + "_": { + "xml": { + "name": "Area hOc2 (V2, 18)", + "id": "7", + "grayvalue": "5" + }, + "dat": { + "colors": "7 84 110 22", + "names": "7 V2" + } + } }, { - "name": "Area hOc2 (V2, 18) - right hemisphere", + "name": "Area hOc2 (V2, 18)", + "status": "right hemisphere", + "labelIndex": 5, "rgb": [ 84, 110, 22 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 7, - "children": [], - "position": [ - 12703537, - -86800460, - 3658074 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0", + "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc2 (V2, 18) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" - } - }, - "relatedAreas": [] - }, - { - "name": "Area hOc1 (V1, 17, CalcS)", - "arealabel": "Area-hOc1", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area hOc1", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b851eb9d-9502-45e9-8dd8-2861f0e6da3f" + "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" + } + }, + "_": { + "xml": { + "name": "Area hOc2 (V2, 18)", + "id": "7", + "grayvalue": "5" + }, + "dat": { + "colors": "7 84 110 22", + "names": "7 V2" } } } ], - "rgb": [ - 190, - 132, - 147 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc2 (V2, 18)", + "arealabel": "Area-hOc2", + "status": "publicP", + "labelIndex": "7", + "doi": "https://doi.org/10.25493/QG9C-THD", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/fa2af93e-c0bb-4c76-bdfe-52776a37d0c0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc2 (V2, 18)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/04674a3c-bb3a-495e-a466-206355e630bd" + } + } + }, + { + "name": "Area hOc1 (V1, 17, CalcS)", + "status": "publicP", "children": [ { - "name": "Area hOc1 (V1, 17, CalcS) - left hemisphere", + "name": "Area hOc1 (V1, 17, CalcS)", + "status": "left hemisphere", + "labelIndex": 117, "rgb": [ 190, 132, 147 ], - "labelIndex": 8, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -10265298, - -84434623, - 2016671 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07", + "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + } + }, + "_": { + "xml": { + "name": "Area hOc1 (V1, 17, CalcS)", + "id": "8", + "grayvalue": "117" + }, + "dat": { + "colors": "8 190 132 147", + "names": "8 V1" } - ] + } }, { - "name": "Area hOc1 (V1, 17, CalcS) - right hemisphere", + "name": "Area hOc1 (V1, 17, CalcS)", + "status": "right hemisphere", + "labelIndex": 117, "rgb": [ 190, 132, 147 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 8, - "children": [], - "position": [ - 13123488, - -81803556, - 2052487 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07", + "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + } + }, + "_": { + "xml": { + "name": "Area hOc1 (V1, 17, CalcS)", + "id": "8", + "grayvalue": "117" + }, + "dat": { + "colors": "8 190 132 147", + "names": "8 V1" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc1 (V1, 17, CalcS)", + "arealabel": "Area-hOc1", + "status": "publicP", + "labelIndex": "8", + "doi": "https://doi.org/10.25493/MXJ6-6DH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/5c669b77-c981-424a-858d-fe9f527dbc07" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc1 (V1, 17, CalcS)", + "alias": "Area hOc1 (V1, 17, CalcS)", + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5151ab8f-d8cb-4e67-a449-afe2a41fb007" } } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "occipital cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "lateral occipital cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hOc5 (LOC)", - "arealabel": "Area-hOc5", + "name": "Area hOc4lp (LOC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 255, - 0, - 0 - ], "children": [ { - "name": "Area hOc5 (LOC) - left hemisphere", + "name": "Area hOc4lp (LOC)", + "status": "left hemisphere", + "labelIndex": 123, "rgb": [ - 255, - 0, - 0 - ], - "labelIndex": 6, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -43339493, - -73484161, - 1403907 + 96, + 113, + 253 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20", + "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + } + }, + "_": { + "xml": { + "name": "Area hOc4lp (LOC)", + "id": "117", + "grayvalue": "123" + }, + "dat": { + "colors": "117 96 113 253", + "names": "117 V4lp" } - ] + } }, { - "name": "Area hOc5 (LOC) - right hemisphere", + "name": "Area hOc4lp (LOC)", + "status": "right hemisphere", + "labelIndex": 123, "rgb": [ - 255, - 0, - 0 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 6, - "children": [], - "position": [ - 47686640, - -66001965, - 4126719 + 96, + 113, + 253 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20", + "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + } + }, + "_": { + "xml": { + "name": "Area hOc4lp (LOC)", + "id": "117", + "grayvalue": "123" + }, + "dat": { + "colors": "117 96 113 253", + "names": "117 V4lp" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4lp (LOC)", + "arealabel": "Area-hOc4lp", + "status": "publicP", + "labelIndex": "117", + "doi": "https://doi.org/10.25493/4B87-Q8X", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/487f86a9-2637-4cd1-bb33-f2b0db904697" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4lp (LOC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9006ee6a-6dc1-4604-9f20-7e08b42d574d" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc4la (LOC)", - "arealabel": "Area-hOc4la", + "name": "Area hOc5 (LOC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 233, - 168, - 189 - ], "children": [ { - "name": "Area hOc4la (LOC) - left hemisphere", + "name": "Area hOc5 (LOC)", + "status": "left hemisphere", + "labelIndex": 106, "rgb": [ - 233, - 168, - 189 - ], - "labelIndex": 118, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -47307308, - -79566994, - -653781 + 255, + 0, + 0 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4", + "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" } - ] + }, + "_": { + "xml": { + "name": "Area hOc5 (LOC)", + "id": "6", + "grayvalue": "106" + }, + "dat": { + "colors": "6 255 0 0", + "names": "6 V5" + } + } }, { - "name": "Area hOc4la (LOC) - right hemisphere", + "name": "Area hOc5 (LOC)", + "status": "right hemisphere", + "labelIndex": 107, "rgb": [ - 233, - 168, - 189 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 118, - "children": [], - "position": [ - 47940691, - -74716566, - 251812 + 255, + 0, + 0 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4", + "filename": "Area hOc5 (LOC) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" } - ] + }, + "_": { + "xml": { + "name": "Area hOc5 (LOC)", + "id": "6", + "grayvalue": "107" + }, + "dat": { + "colors": "6 255 0 0", + "names": "6 V5" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "94365b82-6204-4937-8b86-fe0433287938" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc5 (LOC)", + "arealabel": "Area-hOc5", + "status": "publicP", + "labelIndex": "6", + "doi": "https://doi.org/10.25493/2WSH-MCT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/84897b6c-78d3-4dd4-bea9-dbb6459fba20" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc5 (LOC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc4lp (LOC)", - "arealabel": "Area-hOc4lp", + "name": "Area hOc4la (LOC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 96, - 113, - 253 - ], "children": [ { - "name": "Area hOc4lp (LOC) - left hemisphere", + "name": "Area hOc4la (LOC)", + "status": "left hemisphere", + "labelIndex": 3, "rgb": [ - 96, - 113, - 253 - ], - "labelIndex": 117, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -34774834, - -90654982, - 6585904 + 233, + 168, + 189 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697", + "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "94365b82-6204-4937-8b86-fe0433287938" + } + }, + "_": { + "xml": { + "name": "Area hOc4la (LOC)", + "id": "118", + "grayvalue": "3" + }, + "dat": { + "colors": "118 233 168 189", + "names": "118 V4la" } - ] + } }, { - "name": "Area hOc4lp (LOC) - right hemisphere", + "name": "Area hOc4la (LOC)", + "status": "right hemisphere", + "labelIndex": 4, "rgb": [ - 96, - 113, - 253 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 117, - "children": [], - "position": [ - 37344111, - -86863972, - 4946882 + 233, + 168, + 189 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697", + "filename": "Area hOc4la (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4lp (LOC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "94365b82-6204-4937-8b86-fe0433287938" + } + }, + "_": { + "xml": { + "name": "Area hOc4la (LOC)", + "id": "118", + "grayvalue": "4" + }, + "dat": { + "colors": "118 233 168 189", + "names": "118 V4la" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4la (LOC)", + "arealabel": "Area-hOc4la", + "status": "publicP", + "labelIndex": "118", + "doi": "https://doi.org/10.25493/Z9JX-WKB", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/304342d8-5d55-4dea-a97e-39dccc72a7a4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4la (LOC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/94365b82-6204-4937-8b86-fe0433287938" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "lateral occipital cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "occiptal lobe", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "frontal lobe", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "inferior frontal sulcus", + "name": "inferior frontal gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area ifj1 (IFS/PreS)", - "arealabel": "Area-ifj1", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 71, - 244, - 160 - ], + "name": "Area 44 (IFG)", + "status": "publicP", "children": [ { - "name": "Area ifj1 (IFS/PreS) - left hemisphere", + "name": "Area 44 (IFG)", + "status": "left hemisphere", + "labelIndex": 65, "rgb": [ - 71, - 244, - 160 + 54, + 74, + 75 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369" + } ], - "labelIndex": 248, - "ngId": "jubrain mni152 v18 left", - "children": [] + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" + } + }, + "_": { + "xml": { + "name": "Area 44 (IFG)", + "id": "2", + "grayvalue": "65" + }, + "dat": { + "colors": "2 54 74 75", + "names": "2 44" + } + } }, { - "name": "Area ifj1 (IFS/PreS) - right hemisphere", + "name": "Area 44 (IFG)", + "status": "right hemisphere", + "labelIndex": 65, "rgb": [ - 71, - 244, - 160 + 54, + 74, + 75 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369" + } ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 248, - "children": [] + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" + } + }, + "_": { + "xml": { + "name": "Area 44 (IFG)", + "id": "2", + "grayvalue": "65" + }, + "dat": { + "colors": "2 54 74 75", + "names": "2 44" + } + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area 44 (IFG)", + "arealabel": "Area-44", + "status": "publicP", + "labelIndex": "2", + "doi": "https://doi.org/10.25493/F9P8-ZVW", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8f180ff1-20d1-4112-9e71-a5c7eca6c369" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 44 (IFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/8a6be82c-5947-4fff-8348-cf9bf73e4f40" + } + } }, { - "name": "Area ifs4 (IFS)", - "arealabel": "Area-ifs4", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 86, - 17, - 211 - ], + "name": "Area 45 (IFG)", + "status": "publicP", "children": [ { - "name": "Area ifs4 (IFS) - left hemisphere", + "name": "Area 45 (IFG)", + "status": "left hemisphere", + "labelIndex": 68, "rgb": [ - 86, - 17, - 211 + 167, + 103, + 146 ], - "labelIndex": 247, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "ec4dc0a2-bd09-4a2f-8189-96565e62fd44", + "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cb32e688-43f0-4ae3-9554-085973137663" + } + }, + "_": { + "xml": { + "name": "Area 45 (IFG)", + "id": "1", + "grayvalue": "68" + }, + "dat": { + "colors": "1 167 103 146", + "names": "1 45" + } + } }, { - "name": "Area ifs4 (IFS) - right hemisphere", + "name": "Area 45 (IFG)", + "status": "right hemisphere", + "labelIndex": 68, "rgb": [ - 86, - 17, - 211 + 167, + 103, + 146 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 247, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "ec4dc0a2-bd09-4a2f-8189-96565e62fd44", + "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs4 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cb32e688-43f0-4ae3-9554-085973137663" } - ] + }, + "_": { + "xml": { + "name": "Area 45 (IFG)", + "id": "1", + "grayvalue": "68" + }, + "dat": { + "colors": "1 167 103 146", + "names": "1 45" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "472dacc9-c27d-49c2-9e6f-a1cc3309c4ab" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 45 (IFG)", + "arealabel": "Area-45", + "status": "publicP", + "labelIndex": "1", + "doi": "https://doi.org/10.25493/MR1V-BJ3", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1db64761-aad6-4d3d-b67c-2a9ef4df6e47" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 45 (IFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cb32e688-43f0-4ae3-9554-085973137663" } - }, - "relatedAreas": [] - }, - { - "name": "Area ifs1 (IFS)", - "arealabel": "Area-ifs1", - "status": "publicDOI", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "inferior frontal gyrus", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 172, - 20, - 136 - ], + "rgb": null + } + } + }, + { + "name": "dorsal precentral gyrus", + "status": null, + "children": [ + { + "name": "Area 6d2 (PreCG)", + "status": "publicDOI", "children": [ { - "name": "Area ifs1 (IFS) - left hemisphere", + "name": "Area 6d2 (PreCG)", + "status": "left hemisphere", + "labelIndex": 6, "rgb": [ - 172, - 20, - 136 + 170, + 151, + 180 ], - "labelIndex": 244, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "09f84bba-fbb1-4f5c-9b79-c0a31c20692a", + "filename": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" } - ] + }, + "_": { + "xml": { + "name": "Area 6d2 (PreCG)", + "id": "288", + "grayvalue": "6" + }, + "dat": { + "colors": "288 170 151 180", + "names": "288 6d2" + } + } }, { - "name": "Area ifs1 (IFS) - right hemisphere", + "name": "Area 6d2 (PreCG)", + "status": "right hemisphere", + "labelIndex": 6, "rgb": [ - 172, - 20, - 136 + 170, + 151, + 180 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 244, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "09f84bba-fbb1-4f5c-9b79-c0a31c20692a", + "filename": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs1 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d687d385-98d9-4b31-85db-4bc682cd0a31" + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" + } + }, + "_": { + "xml": { + "name": "Area 6d2 (PreCG)", + "id": "288", + "grayvalue": "6" + }, + "dat": { + "colors": "288 170 151 180", + "names": "288 6d2" + } + } } - }, - "relatedAreas": [] - }, - { - "name": "Area ifj2 (IFS/PreS)", - "arealabel": "Area-ifj2", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 14, - 247, - 132 ], - "children": [ - { - "name": "Area ifj2 (IFS/PreS) - left hemisphere", - "rgb": [ - 14, - 247, - 132 - ], - "labelIndex": 249, - "ngId": "jubrain mni152 v18 left", - "children": [] + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6d2 (PreCG)", + "arealabel": "Area-6d2", + "status": "publicDOI", + "labelIndex": "288", + "doi": "https://doi.org/10.25493/KXHS-N90", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3" }, - { - "name": "Area ifj2 (IFS/PreS) - right hemisphere", - "rgb": [ - 14, - 247, - 132 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 249, - "children": [] + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6d2 (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/963c5281-67df-4d41-9b91-60b31cf150c0" } - ] + } }, { - "name": "Area ifs2 (IFS)", - "arealabel": "Area-ifs2", + "name": "Area 6d1 (PreCG)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 183, - 42, - 247 - ], "children": [ { - "name": "Area ifs2 (IFS) - left hemisphere", + "name": "Area 6d1 (PreCG)", + "status": "left hemisphere", + "labelIndex": 35, "rgb": [ - 183, - 42, - 247 + 45, + 33, + 27 ], - "labelIndex": 245, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7fec7408-fbc1-4d58-aaea-66629a684111", + "filename": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" } - ] + }, + "_": { + "xml": { + "name": "Area 6d1 (PreCG)", + "id": "287", + "grayvalue": "35" + }, + "dat": { + "colors": "287 45 33 27", + "names": "287 6d1" + } + } }, { - "name": "Area ifs2 (IFS) - right hemisphere", + "name": "Area 6d1 (PreCG)", + "status": "right hemisphere", + "labelIndex": 34, "rgb": [ - 183, - 42, - 247 + 45, + 33, + 27 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 245, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7fec7408-fbc1-4d58-aaea-66629a684111", + "filename": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs2 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" } - ] + }, + "_": { + "xml": { + "name": "Area 6d1 (PreCG)", + "id": "287", + "grayvalue": "34" + }, + "dat": { + "colors": "287 45 33 27", + "names": "287 6d1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "658a67d8-60c2-4bb4-8eaf-e54725eda261" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6d1 (PreCG)", + "arealabel": "Area-6d1", + "status": "publicDOI", + "labelIndex": "287", + "doi": "https://doi.org/10.25493/4WSQ-8FM", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/6a2ee2d8-120c-40de-b390-53ca87210298" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6d1 (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" } - }, - "relatedAreas": [] - }, - { - "name": "Area ifs3 (IFS)", - "arealabel": "Area-ifs3", - "status": "publicDOI", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dorsal precentral gyrus", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 144, - 30, - 126 - ], + "rgb": null + } + } + }, + { + "name": "posterior medial superior frontal gyrus", + "status": null, + "children": [ + { + "name": "Area 6ma (preSMA, mesial SFG)", + "status": "publicP", "children": [ { - "name": "Area ifs3 (IFS) - left hemisphere", + "name": "Area 6ma (preSMA, mesial SFG)", + "status": "left hemisphere", + "labelIndex": 24, "rgb": [ - 144, - 30, - 126 + 204, + 108, + 222 ], - "labelIndex": 246, - "ngId": "jubrain mni152 v18 left", - "children": [], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e1cede6b-d29b-4cfc-b12c-dd236fa313ac", + "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "89347668-eee6-4be5-b783-8dddf422bba0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + } + }, + "_": { + "xml": { + "name": "Area 6ma (preSMA, mesial SFG)", + "id": "299", + "grayvalue": "24" + }, + "dat": { + "colors": "299 204 108 222", + "names": "299 presma" } - ] + } }, { - "name": "Area ifs3 (IFS) - right hemisphere", + "name": "Area 6ma (preSMA, mesial SFG)", + "status": "right hemisphere", + "labelIndex": 24, "rgb": [ - 144, - 30, - 126 + 204, + 108, + 222 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 246, - "children": [], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e1cede6b-d29b-4cfc-b12c-dd236fa313ac", + "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area ifs3 (IFS) [v2.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "89347668-eee6-4be5-b783-8dddf422bba0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + } + }, + "_": { + "xml": { + "name": "Area 6ma (preSMA, mesial SFG)", + "id": "299", + "grayvalue": "24" + }, + "dat": { + "colors": "299 204 108 222", + "names": "299 presma" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e555881e-7082-4ac0-b6cc-cd096f30d3dc" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6ma (preSMA, mesial SFG)", + "arealabel": "Area-6ma", + "status": "publicP", + "labelIndex": "299", + "doi": "https://doi.org/10.25493/WVNR-SPT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/89347668-eee6-4be5-b783-8dddf422bba0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6ma (preSMA, mesial SFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "posterior medial superior frontal gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "inferior frontal gyrus", + "name": "superior frontal sulcus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 44 (IFG)", - "arealabel": "Area-44", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ + "name": "Area 6d3 (SFS)", + "status": "publicDOI", + "children": [ { - "name": "Area 44v", + "name": "Area 6d3 (SFS)", + "status": "left hemisphere", + "labelIndex": 62, + "rgb": [ + 55, + 239, + 21 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7e5e7aa8-28b8-445b-8980-2a6f3fa645b3" + "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + } + }, + "_": { + "xml": { + "name": "Area 6d3 (SFS)", + "id": "289", + "grayvalue": "62" + }, + "dat": { + "colors": "289 55 239 21", + "names": "289 6d3" } } }, { - "name": "Area 44d", + "name": "Area 6d3 (SFS)", + "status": "right hemisphere", + "labelIndex": 62, + "rgb": [ + 55, + 239, + 21 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8aeae833-81c8-4e27-a8d6-deee339d6052" + "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + } + }, + "_": { + "xml": { + "name": "Area 6d3 (SFS)", + "id": "289", + "grayvalue": "62" + }, + "dat": { + "colors": "289 55 239 21", + "names": "289 6d3" } } } ], - "rgb": [ - 54, - 74, - 75 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6d3 (SFS)", + "arealabel": "Area-6d3", + "status": "publicDOI", + "labelIndex": "289", + "doi": "https://doi.org/10.25493/NVJ5-JJ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/502b40a0-1689-4329-854e-a77dfd94d30b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6d3 (SFS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/266c1ada-1840-462f-8223-7ff2df457552" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior frontal sulcus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "frontal pole", + "status": null, + "children": [ + { + "name": "Area Fp1 (FPole)", + "status": "publicP", "children": [ { - "name": "Area 44 (IFG) - left hemisphere", + "name": "Area Fp1 (FPole)", + "status": "left hemisphere", + "labelIndex": 100, "rgb": [ - 54, - 74, - 75 - ], - "labelIndex": 2, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -54134365, - 11216664, - 15641040 + 226, + 14, + 200 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369", + "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" } - ] + }, + "_": { + "xml": { + "name": "Area Fp1 (FPole)", + "id": "212", + "grayvalue": "100" + }, + "dat": { + "colors": "212 226 14 200", + "names": "212 ba10p" + } + } }, { - "name": "Area 44 (IFG) - right hemisphere", + "name": "Area Fp1 (FPole)", + "status": "right hemisphere", + "labelIndex": 100, "rgb": [ - 54, - 74, - 75 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 2, - "children": [], - "position": [ - 53627432, - 13897917, - 11532612 + 226, + 14, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369", + "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 44 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" - } - } - }, - { - "name": "Area 45 (IFG)", - "arealabel": "Area-45", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area 45", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "131e6de8-b073-4f01-8f60-1bdb5a6c9a9a" + "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" + } + }, + "_": { + "xml": { + "name": "Area Fp1 (FPole)", + "id": "212", + "grayvalue": "100" + }, + "dat": { + "colors": "212 226 14 200", + "names": "212 ba10p" } } } ], - "rgb": [ - 167, - 103, - 146 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fp1 (FPole)", + "arealabel": "Area-Fp1", + "status": "publicP", + "labelIndex": "212", + "doi": "https://doi.org/10.25493/PTKW-R7W", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fp1 (FPole)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/10dc5343-941b-4e3e-80ed-df031c33bbc6" + } + } + }, + { + "name": "Area Fp2 (FPole)", + "status": "publicP", "children": [ { - "name": "Area 45 (IFG) - left hemisphere", + "name": "Area Fp2 (FPole)", + "status": "left hemisphere", + "labelIndex": 50, "rgb": [ - 167, - 103, - 146 - ], - "labelIndex": 1, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -54741552, - 27110876, - 13391235 + 239, + 137, + 211 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47", + "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" } - ] + }, + "_": { + "xml": { + "name": "Area Fp2 (FPole)", + "id": "211", + "grayvalue": "50" + }, + "dat": { + "colors": "211 239 137 211", + "names": "211 ba10m" + } + } }, { - "name": "Area 45 (IFG) - right hemisphere", + "name": "Area Fp2 (FPole)", + "status": "right hemisphere", + "labelIndex": 50, "rgb": [ - 167, - 103, - 146 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 1, - "children": [], - "position": [ - 52598442, - 28512366, - 11201622 + 239, + 137, + 211 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47", + "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 45 (IFG) [v7.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" + } + }, + "_": { + "xml": { + "name": "Area Fp2 (FPole)", + "id": "211", + "grayvalue": "50" + }, + "dat": { + "colors": "211 239 137 211", + "names": "211 ba10m" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "cb32e688-43f0-4ae3-9554-085973137663" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fp2 (FPole)", + "arealabel": "Area-Fp2", + "status": "publicP", + "labelIndex": "211", + "doi": "https://doi.org/10.25493/GZW1-7R3", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8d2f06b2-d3bd-4f89-a6e3-953c90cc9661" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fp2 (FPole)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3bf7bde1-cc06-4657-b296-380275f9d4b8" } } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "frontal pole", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { - "name": "dorsal precentral gyrus", + "name": "precentral gyrus ", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 6d1 (PreCG)", - "arealabel": "Area-6d1", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 45, - 33, - 27 - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" - } - }, + "name": "Area 4p (PreCG)", + "status": "publicP", "children": [ { - "name": "Area 6d1 (PreCG) - left hemisphere", + "name": "Area 4p (PreCG)", + "status": "left hemisphere", + "labelIndex": 45, "rgb": [ - 45, - 33, - 27 - ], - "labelIndex": 287, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -21374190, - -13807593, - 67532003 + 116, + 92, + 124 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298", + "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" } - ] + }, + "_": { + "xml": { + "name": "Area 4p (PreCG)", + "id": "123", + "grayvalue": "45" + }, + "dat": { + "colors": "123 116 92 124", + "names": "123 4p" + } + } }, { - "name": "Area 6d1 (PreCG) - right hemisphere", + "name": "Area 4p (PreCG)", + "status": "right hemisphere", + "labelIndex": 45, "rgb": [ - 45, - 33, - 27 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 287, - "children": [], - "position": [ - 18459790, - -13929543, - 67653920 + 116, + 92, + 124 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298", + "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d1 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" } - ] + }, + "_": { + "xml": { + "name": "Area 4p (PreCG)", + "id": "123", + "grayvalue": "45" + }, + "dat": { + "colors": "123 116 92 124", + "names": "123 4p" + } + } } - ] - }, - { - "name": "Area 6d2 (PreCG)", - "arealabel": "Area-6d2", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 170, - 151, - 180 ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 4p (PreCG)", + "arealabel": "Area-4p", + "status": "publicP", + "labelIndex": "123", + "doi": "https://doi.org/10.25493/5HSF-81J", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/02a0087e-3fdc-4b95-826a-0a953490103b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 4p (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/82e6e826-a439-41db-84ff-4674ca3d643a" } - }, + } + }, + { + "name": "Area 4a (PreCG)", + "status": "publicP", "children": [ { - "name": "Area 6d2 (PreCG) - left hemisphere", + "name": "Area 4a (PreCG)", + "status": "left hemisphere", + "labelIndex": 92, "rgb": [ - 170, - 151, - 180 - ], - "labelIndex": 288, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -16167826, - 3331479, - 67316412 + 118, + 239, + 183 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3", + "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" } - ] + }, + "_": { + "xml": { + "name": "Area 4a (PreCG)", + "id": "124", + "grayvalue": "92" + }, + "dat": { + "colors": "124 118 239 183", + "names": "124 4a" + } + } }, { - "name": "Area 6d2 (PreCG) - right hemisphere", + "name": "Area 4a (PreCG)", + "status": "right hemisphere", + "labelIndex": 93, "rgb": [ - 170, - 151, - 180 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 288, - "children": [], - "position": [ - 13586847, - 5159934, - 67533325 + 118, + 239, + 183 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3", + "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d2 (PreCG) [v4.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" } - ] + }, + "_": { + "xml": { + "name": "Area 4a (PreCG)", + "id": "124", + "grayvalue": "93" + }, + "dat": { + "colors": "124 118 239 183", + "names": "124 4a" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area 4a (PreCG)", + "arealabel": "Area-4a", + "status": "publicP", + "labelIndex": "124", + "doi": "https://doi.org/10.25493/PVPP-P3Q", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/6e1728c2-dd89-40d4-a0ea-fdede469684f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 4a (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/175848ff-4c55-47e3-a0ae-f905a14e03cd" } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "precentral gyrus ", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "posterior medial superior frontal gyrus", + "name": "mesial precentral gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 6ma (preSMA, mesial SFG)", - "arealabel": "Area-6ma", + "name": "Area 6mp (SMA, mesial SFG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 204, - 108, - 222 - ], "children": [ { - "name": "Area 6ma (preSMA, mesial SFG) - left hemisphere", + "name": "Area 6mp (SMA, mesial SFG)", + "status": "left hemisphere", + "labelIndex": 20, "rgb": [ - 204, - 108, - 222 - ], - "labelIndex": 299, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -5793912, - 6001050, - 57168300 + 75, + 95, + 87 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "89347668-eee6-4be5-b783-8dddf422bba0", + "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + } + }, + "_": { + "xml": { + "name": "Area 6mp (SMA, mesial SFG)", + "id": "298", + "grayvalue": "20" + }, + "dat": { + "colors": "298 75 95 87", + "names": "298 sma" } - ] + } }, { - "name": "Area 6ma (preSMA, mesial SFG) - right hemisphere", + "name": "Area 6mp (SMA, mesial SFG)", + "status": "right hemisphere", + "labelIndex": 20, "rgb": [ - 204, - 108, - 222 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 299, - "children": [], - "position": [ - 5128280, - 6328025, - 57073758 + 75, + 95, + 87 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "89347668-eee6-4be5-b783-8dddf422bba0", + "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + } + }, + "_": { + "xml": { + "name": "Area 6mp (SMA, mesial SFG)", + "id": "298", + "grayvalue": "20" + }, + "dat": { + "colors": "298 75 95 87", + "names": "298 sma" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6mp (SMA, mesial SFG)", + "arealabel": "Area-6mp", + "status": "publicP", + "labelIndex": "298", + "doi": "https://doi.org/10.25493/2E1T-47F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1e7ee33c-a1e4-49a9-9093-54520392dff9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6mp (SMA, mesial SFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/def99e8e-ce8f-4a62-bd5d-739948c4b010" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "mesial precentral gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "superior frontal sulcus", + "name": "medial orbitofrontal cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 6d3 (SFS)", - "arealabel": "Area-6d3", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 55, - 239, - 21 - ], + "name": "Area Fo1 (OFC)", + "status": "publicP", "children": [ { - "name": "Area 6d3 (SFS) - left hemisphere", + "name": "Area Fo1 (OFC)", + "status": "left hemisphere", + "labelIndex": 111, "rgb": [ - 55, - 239, - 21 - ], - "labelIndex": 289, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -24754304, - 4064945, - 51648670 + 7, + 255, + 179 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b", + "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" + } + }, + "_": { + "xml": { + "name": "Area Fo1 (OFC)", + "id": "3", + "grayvalue": "111" + }, + "dat": { + "colors": "3 7 255 179", + "names": "3 11a" + } + } }, { - "name": "Area 6d3 (SFS) - right hemisphere", + "name": "Area Fo1 (OFC)", + "status": "right hemisphere", + "labelIndex": 111, "rgb": [ - 55, - 239, - 21 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 289, - "children": [], - "position": [ - 23956070, - 3653802, - 53205165 + 7, + 255, + 179 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b", + "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d3 (SFS) [v4.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" } - ] + }, + "_": { + "xml": { + "name": "Area Fo1 (OFC)", + "id": "3", + "grayvalue": "111" + }, + "dat": { + "colors": "3 7 255 179", + "names": "3 11a" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo1 (OFC)", + "arealabel": "Area-Fo1", + "status": "publicP", + "labelIndex": "3", + "doi": "https://doi.org/10.25493/H2N2-6J2", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2153a21a-7fee-4fcd-9a91-6d23c494403b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo1 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "frontal pole", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area Fp1 (FPole)", - "arealabel": "Area-Fp1", + "name": "Area Fo3 (OFC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 226, - 14, - 200 - ], "children": [ { - "name": "Area Fp1 (FPole) - left hemisphere", + "name": "Area Fo3 (OFC)", + "status": "left hemisphere", + "labelIndex": 124, "rgb": [ - 226, - 14, - 200 - ], - "labelIndex": 212, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -19102858, - 63747679, - -1631986 + 182, + 189, + 250 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107", + "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" + } + }, + "_": { + "xml": { + "name": "Area Fo3 (OFC)", + "id": "5", + "grayvalue": "124" + }, + "dat": { + "colors": "5 182 189 250", + "names": "5 13" } - ] + } }, { - "name": "Area Fp1 (FPole) - right hemisphere", + "name": "Area Fo3 (OFC)", + "status": "right hemisphere", + "labelIndex": 124, "rgb": [ - 226, - 14, - 200 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 212, - "children": [], - "position": [ - 17092523, - 64510614, - -2304434 + 182, + 189, + 250 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107", + "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp1 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" } - ] + }, + "_": { + "xml": { + "name": "Area Fo3 (OFC)", + "id": "5", + "grayvalue": "124" + }, + "dat": { + "colors": "5 182 189 250", + "names": "5 13" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo3 (OFC)", + "arealabel": "Area-Fo3", + "status": "publicP", + "labelIndex": "5", + "doi": "https://doi.org/10.25493/E1YQ-65U", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/fca58db5-fadb-4314-a06c-75948110d7f0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo3 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/741f6a9e-cfd7-4173-ac7d-ee616c29555e" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fp2 (FPole)", - "arealabel": "Area-Fp2", + "name": "Area Fo2 (OFC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 239, - 137, - 211 - ], "children": [ { - "name": "Area Fp2 (FPole) - left hemisphere", + "name": "Area Fo2 (OFC)", + "status": "left hemisphere", + "labelIndex": 118, "rgb": [ - 239, - 137, - 211 - ], - "labelIndex": 211, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -6503595, - 59384951, - -3961993 + 0, + 255, + 0 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661", + "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" } - ] + }, + "_": { + "xml": { + "name": "Area Fo2 (OFC)", + "id": "4", + "grayvalue": "118" + }, + "dat": { + "colors": "4 0 255 0", + "names": "4 11p" + } + } }, { - "name": "Area Fp2 (FPole) - right hemisphere", + "name": "Area Fo2 (OFC)", + "status": "right hemisphere", + "labelIndex": 118, "rgb": [ - 239, - 137, - 211 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 211, - "children": [], - "position": [ - 4778743, - 61080225, - -3022228 + 0, + 255, + 0 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661", + "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp2 (FPole) [v2.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" + } + }, + "_": { + "xml": { + "name": "Area Fo2 (OFC)", + "id": "4", + "grayvalue": "118" + }, + "dat": { + "colors": "4 0 255 0", + "names": "4 11p" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo2 (OFC)", + "arealabel": "Area-Fo2", + "status": "publicP", + "labelIndex": "4", + "doi": "https://doi.org/10.25493/3JB9-2V2", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2e8f2ce5-abf8-4881-8ea6-4eddcb188c12" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo2 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/30a04d2b-58e1-43d7-8b8f-1f0b598382d0" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "medial orbitofrontal cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "precentral gyrus ", + "name": "frontal operculum ", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 4p (PreCG)", - "arealabel": "Area-4p", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area 4p", - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "861ab96a-c4b5-4ba6-bd40-1e80d4680f89" - } - } - } - ], - "rgb": [ - 116, - 92, - 124 - ], + "name": "Area OP6 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area 4p (PreCG) - left hemisphere", + "name": "Area OP6 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 38, "rgb": [ - 116, - 92, - 124 - ], - "labelIndex": 123, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -37145015, - -22255287, - 49007049 + 138, + 63, + 100 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b", + "filename": "Area OP6 (Frontal Operculum) [v2.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4" } - ] - }, + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af208413-1233-4512-9395-8ac2c4533875" + } + }, + "_": { + "xml": { + "name": "Area OP6 (Frontal Operculum)", + "id": "349", + "grayvalue": "38" + }, + "dat": { + "colors": "349 138 63 100", + "names": "349 Op6" + } + } + }, { - "name": "Area 4p (PreCG) - right hemisphere", + "name": "Area OP6 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 38, "rgb": [ - 116, - 92, - 124 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 123, - "children": [], - "position": [ - 36616185, - -18949518, - 46248351 + 138, + 63, + 100 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b", + "filename": "Area OP6 (Frontal Operculum) [v2.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4p (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af208413-1233-4512-9395-8ac2c4533875" + } + }, + "_": { + "xml": { + "name": "Area OP6 (Frontal Operculum)", + "id": "349", + "grayvalue": "38" + }, + "dat": { + "colors": "349 138 63 100", + "names": "349 Op6" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP6 (Frontal Operculum)", + "arealabel": "Area-OP6", + "status": "publicDOI", + "labelIndex": "349", + "doi": "https://doi.org/10.25493/41KE-8HT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ee72c2a3-bc04-4853-b6db-cb9ecdd247b4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP6 (Frontal Operculum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/af208413-1233-4512-9395-8ac2c4533875" } } }, { - "name": "Area 4a (PreCG)", - "arealabel": "Area-4a", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 118, - 239, - 183 - ], + "name": "Area OP8 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area 4a (PreCG) - left hemisphere", + "name": "Area OP8 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 84, "rgb": [ - 118, - 239, - 183 - ], - "labelIndex": 124, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -17759520, - -26329160, - 66684048 + 29, + 76, + 168 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f", + "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "43d46017-2bef-467b-b870-9866c838e4f3" } - ] - }, - { - "name": "Area 4a (PreCG) - right hemisphere", - "rgb": [ - 118, - 239, - 183 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 124, - "children": [], - "position": [ - 9561296, - -29536520, - 67748853 ], - "originDatasets": [ - { - "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4a (PreCG) [v9.4, ICBM 2009c Asymmetric, right hemisphere]" + "fullId": {}, + "_": { + "xml": { + "name": "Area OP8 (Frontal Operculum)", + "id": "273", + "grayvalue": "84" + }, + "dat": { + "colors": "273 29 76 168", + "names": "273 Op8" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" - } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "mesial precentral gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area 6mp (SMA, mesial SFG)", - "arealabel": "Area-6mp", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 75, - 95, - 87 - ], - "children": [ + } + }, { - "name": "Area 6mp (SMA, mesial SFG) - left hemisphere", + "name": "Area OP8 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 83, "rgb": [ - 75, - 95, - 87 - ], - "labelIndex": 298, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -5060089, - -12636499, - 57999629 + 29, + 76, + 168 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9", + "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "43d46017-2bef-467b-b870-9866c838e4f3" } - ] - }, - { - "name": "Area 6mp (SMA, mesial SFG) - right hemisphere", - "rgb": [ - 75, - 95, - 87 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 298, - "children": [], - "position": [ - 4281209, - -12118010, - 56050065 ], - "originDatasets": [ - { - "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6mp (SMA, mesial SFG) [v9.1, ICBM 2009c Asymmetric, right hemisphere]" + "fullId": {}, + "_": { + "xml": { + "name": "Area OP8 (Frontal Operculum)", + "id": "273", + "grayvalue": "83" + }, + "dat": { + "colors": "273 29 76 168", + "names": "273 Op8" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP8 (Frontal Operculum)", + "arealabel": "Area-OP8", + "status": "publicDOI", + "labelIndex": "273", + "doi": "https://doi.org/10.25493/NGF8-TA4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/43d46017-2bef-467b-b870-9866c838e4f3" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "medial orbitofrontal cortex", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area Fo3 (OFC)", - "arealabel": "Area-Fo3", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 182, - 189, - 250 - ], + "name": "Area OP5 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area Fo3 (OFC) - left hemisphere", + "name": "Area OP5 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 87, "rgb": [ - 182, - 189, - 250 - ], - "labelIndex": 5, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -22798035, - 32470959, - -20700499 + 222, + 78, + 253 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0", + "filename": "Area OP5 (Frontal Operculum) [v2.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP5 (Frontal Operculum)", + "id": "348", + "grayvalue": "87" + }, + "dat": { + "colors": "348 222 78 253", + "names": "348 Op5" } - ] + } }, { - "name": "Area Fo3 (OFC) - right hemisphere", + "name": "Area OP5 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 88, "rgb": [ - 182, - 189, - 250 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 5, - "children": [], - "position": [ - 20788728, - 33338701, - -20253609 + 222, + 78, + 253 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0", + "filename": "Area OP5 (Frontal Operculum) [v2.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo3 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP5 (Frontal Operculum)", + "id": "348", + "grayvalue": "88" + }, + "dat": { + "colors": "348 222 78 253", + "names": "348 Op5" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP5 (Frontal Operculum)", + "arealabel": "Area-OP5", + "status": "publicDOI", + "labelIndex": "348", + "doi": "https://doi.org/10.25493/TWFH-BJZ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d9fc6c97-7a2c-4620-aa0f-7ffc9e410918" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fo1 (OFC)", - "arealabel": "Area-Fo1", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 7, - 255, - 179 - ], + "name": "Area OP9 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area Fo1 (OFC) - left hemisphere", + "name": "Area OP9 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 58, "rgb": [ - 7, - 255, - 179 - ], - "labelIndex": 3, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -8931833, - 40936870, - -25550705 + 175, + 123, + 34 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b", + "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP9 (Frontal Operculum)", + "id": "274", + "grayvalue": "58" + }, + "dat": { + "colors": "274 175 123 34", + "names": "274 Op9" } - ] + } }, { - "name": "Area Fo1 (OFC) - right hemisphere", + "name": "Area OP9 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 58, "rgb": [ - 7, - 255, - 179 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 3, - "children": [], - "position": [ - 7452738, - 40856484, - -25066859 + 175, + 123, + 34 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b", + "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo1 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP9 (Frontal Operculum)", + "id": "274", + "grayvalue": "58" + }, + "dat": { + "colors": "274 175 123 34", + "names": "274 Op9" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP9 (Frontal Operculum)", + "arealabel": "Area-OP9", + "status": "publicDOI", + "labelIndex": "274", + "doi": "https://doi.org/10.25493/3A30-5E4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2034ee9f-69f8-4633-9b81-eaf4b8f44aed" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fo2 (OFC)", - "arealabel": "Area-Fo2", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 0, - 255, - 0 - ], + "name": "Area OP7 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area Fo2 (OFC) - left hemisphere", + "name": "Area OP7 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 44, "rgb": [ - 0, - 255, - 0 - ], - "labelIndex": 4, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -10107850, - 20731801, - -22045790 + 134, + 116, + 192 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12", + "filename": "Area OP7 (Frontal Operculum) [v2.0, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc" + } + }, + "_": { + "xml": { + "name": "Area OP7 (Frontal Operculum)", + "id": "350", + "grayvalue": "44" + }, + "dat": { + "colors": "350 134 116 192", + "names": "350 Op7" } - ] + } }, { - "name": "Area Fo2 (OFC) - right hemisphere", + "name": "Area OP7 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 44, "rgb": [ - 0, - 255, - 0 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 4, - "children": [], - "position": [ - 7453208, - 20602446, - -21936370 + 134, + 116, + 192 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12", + "filename": "Area OP7 (Frontal Operculum) [v2.0, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo2 (OFC) [v3.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc" + } + }, + "_": { + "xml": { + "name": "Area OP7 (Frontal Operculum)", + "id": "350", + "grayvalue": "44" + }, + "dat": { + "colors": "350 134 116 192", + "names": "350 Op7" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP7 (Frontal Operculum)", + "arealabel": "Area-OP7", + "status": "publicDOI", + "labelIndex": "350", + "doi": "https://doi.org/10.25493/T2M3-2ST", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ed0b0aee-4260-4d4d-b84b-63a718f24f8d" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP7 (Frontal Operculum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/c7fca306-e515-40bc-a61e-8014ddd45ddc" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "frontal operculum ", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "frontal operculum ", + "name": "lateral orbitofrontal cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area OP9 (Frontal Operculum)", - "arealabel": "Area-OP9", + "name": "Area Fo5 (OFC)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 175, - 123, - 34 - ], "children": [ { - "name": "Area OP9 (Frontal Operculum) - left hemisphere", + "name": "Area Fo5 (OFC)", + "status": "left hemisphere", + "labelIndex": 41, "rgb": [ - 175, - 123, - 34 - ], - "labelIndex": 274, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -45695111, - 26848756, - 3249018 + 219, + 11, + 91 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed", + "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" } - ] + }, + "_": { + "xml": { + "name": "Area Fo5 (OFC)", + "id": "325", + "grayvalue": "41" + }, + "dat": { + "colors": "325 219 11 91", + "names": "325 Fo5" + } + } }, { - "name": "Area OP9 (Frontal Operculum) - right hemisphere", + "name": "Area Fo5 (OFC)", + "status": "right hemisphere", + "labelIndex": 41, "rgb": [ - 175, - 123, - 34 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 274, - "children": [], - "position": [ - 41290819, - 28113597, - 1086868 + 219, + 11, + 91 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed", + "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP9 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" } - ] + }, + "_": { + "xml": { + "name": "Area Fo5 (OFC)", + "id": "325", + "grayvalue": "41" + }, + "dat": { + "colors": "325 219 11 91", + "names": "325 Fo5" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo5 (OFC)", + "arealabel": "Area-Fo5", + "status": "publicDOI", + "labelIndex": "325", + "doi": "https://doi.org/10.25493/HJMY-ZZP", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/688bee67-abc0-4a17-9800-21c5c9bf3870" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo5 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3fd2e113-ec08-407b-bc88-172c9285694a" } - ] + } }, { - "name": "Area OP8 (Frontal Operculum)", - "arealabel": "Area-OP8", + "name": "Area Fo4 (OFC)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 29, - 76, - 168 - ], "children": [ { - "name": "Area OP8 (Frontal Operculum) - left hemisphere", + "name": "Area Fo4 (OFC)", + "status": "left hemisphere", + "labelIndex": 9, "rgb": [ - 29, - 76, - 168 - ], - "labelIndex": 273, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -42412158, - 17741884, - 5519733 + 163, + 204, + 53 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "43d46017-2bef-467b-b870-9866c838e4f3", + "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" } - ] + }, + "_": { + "xml": { + "name": "Area Fo4 (OFC)", + "id": "324", + "grayvalue": "9" + }, + "dat": { + "colors": "324 163 204 53", + "names": "324 Fo4" + } + } }, { - "name": "Area OP8 (Frontal Operculum) - right hemisphere", + "name": "Area Fo4 (OFC)", + "status": "right hemisphere", + "labelIndex": 9, "rgb": [ - 29, - 76, - 168 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 273, - "children": [], - "position": [ - 40480213, - 18898782, - 6836377 + 163, + 204, + 53 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "43d46017-2bef-467b-b870-9866c838e4f3", + "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP8 (Frontal Operculum) [v5.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" + } + }, + "_": { + "xml": { + "name": "Area Fo4 (OFC)", + "id": "324", + "grayvalue": "9" + }, + "dat": { + "colors": "324 163 204 53", + "names": "324 Fo4" } - ] + } } - ] - } - ] - }, - { - "name": "lateral orbitofrontal cortex", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo4 (OFC)", + "arealabel": "Area-Fo4", + "status": "publicDOI", + "labelIndex": "324", + "doi": "https://doi.org/10.25493/29G0-66F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo4 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/2cdee956-207a-4d4d-b051-bef80045210b" + } + } + }, { - "name": "Area Fo5 (OFC)", - "arealabel": "Area-Fo5", + "name": "Area Fo6 (OFC)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 219, - 11, - 91 - ], "children": [ { - "name": "Area Fo5 (OFC) - left hemisphere", + "name": "Area Fo6 (OFC)", + "status": "left hemisphere", + "labelIndex": 113, "rgb": [ - 219, - 11, - 91 - ], - "labelIndex": 325, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -39738252, - 56611294, - -10218054 + 199, + 156, + 187 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870", + "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" } - ] + }, + "_": { + "xml": { + "name": "Area Fo6 (OFC)", + "id": "326", + "grayvalue": "113" + }, + "dat": { + "colors": "326 199 156 187", + "names": "326 Fo6" + } + } }, { - "name": "Area Fo5 (OFC) - right hemisphere", + "name": "Area Fo6 (OFC)", + "status": "right hemisphere", + "labelIndex": 113, "rgb": [ - 219, - 11, - 91 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 325, - "children": [], - "position": [ - 38497105, - 57087145, - -6858425 + 199, + 156, + 187 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870", + "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo5 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" + } + }, + "_": { + "xml": { + "name": "Area Fo6 (OFC)", + "id": "326", + "grayvalue": "113" + }, + "dat": { + "colors": "326 199 156 187", + "names": "326 Fo6" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo6 (OFC)", + "arealabel": "Area-Fo6", + "status": "publicDOI", + "labelIndex": "326", + "doi": "https://doi.org/10.25493/34Q4-H62", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ab21e50f-c46d-45c5-b9f6-2b82d5728400" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo6 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/330ae178-557c-4bd0-a932-f138c0a05345" } - }, - "relatedAreas": [] + } }, { "name": "Area Fo7 (OFC)", - "arealabel": "Area-Fo7", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 64, - 211, - 186 - ], "children": [ { - "name": "Area Fo7 (OFC) - left hemisphere", + "name": "Area Fo7 (OFC)", + "status": "left hemisphere", + "labelIndex": 66, "rgb": [ 64, 211, 186 ], - "labelIndex": 327, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -37151362, - 38147830, - -12621090 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea", + "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" } - ] + }, + "_": { + "xml": { + "name": "Area Fo7 (OFC)", + "id": "327", + "grayvalue": "66" + }, + "dat": { + "colors": "327 64 211 186", + "names": "327 Fo7" + } + } }, { - "name": "Area Fo7 (OFC) - right hemisphere", + "name": "Area Fo7 (OFC)", + "status": "right hemisphere", + "labelIndex": 66, "rgb": [ 64, 211, 186 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 327, - "children": [], - "position": [ - 35554006, - 39868546, - -13535015 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea", + "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo7 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" - } - }, - "relatedAreas": [] - }, - { - "name": "Area Fo4 (OFC)", - "arealabel": "Area-Fo4", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 163, - 204, - 53 - ], - "children": [ - { - "name": "Area Fo4 (OFC) - left hemisphere", - "rgb": [ - 163, - 204, - 53 - ], - "labelIndex": 324, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -29237908, - 52508436, - -15236783 ], - "originDatasets": [ - { - "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]" + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" } - ] - }, - { - "name": "Area Fo4 (OFC) - right hemisphere", - "rgb": [ - 163, - 204, - 53 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 324, - "children": [], - "position": [ - 31156863, - 53829721, - -15390093 - ], - "originDatasets": [ - { - "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo4 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]" + }, + "_": { + "xml": { + "name": "Area Fo7 (OFC)", + "id": "327", + "grayvalue": "66" + }, + "dat": { + "colors": "327 64 211 186", + "names": "327 Fo7" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo7 (OFC)", + "arealabel": "Area-Fo7", + "status": "publicDOI", + "labelIndex": "327", + "doi": "https://doi.org/10.25493/3WEV-561", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7d4726da-7023-4e64-8b60-9d0271766bea" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo7 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/1b882148-fcdd-4dbe-b33d-659957840e9e" } - }, - "relatedAreas": [] - }, - { - "name": "Area Fo6 (OFC)", - "arealabel": "Area-Fo6", - "status": "publicDOI", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "lateral orbitofrontal cortex", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 199, - 156, - 187 - ], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "frontal lobe", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "insula", + "status": null, + "children": [ + { + "name": "granular insula", + "status": null, + "children": [ + { + "name": "Area Ig3 (Insula)", + "status": "publicDOI", "children": [ { - "name": "Area Fo6 (OFC) - left hemisphere", + "name": "Area Ig3 (Insula)", + "status": "left hemisphere", + "labelIndex": 7, "rgb": [ - 199, - 156, - 187 - ], - "labelIndex": 326, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -45788648, - 42884347, - -14819256 + 105, + 253, + 197 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400", + "filename": "Area Ig3 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb" + } + }, + "_": { + "xml": { + "name": "Area Ig3 (Insula)", + "id": "336", + "grayvalue": "7" + }, + "dat": { + "colors": "336 105 253 197", + "names": "336 Ig3" + } + } }, { - "name": "Area Fo6 (OFC) - right hemisphere", + "name": "Area Ig3 (Insula)", + "status": "right hemisphere", + "labelIndex": 7, "rgb": [ - 199, - 156, - 187 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 326, - "children": [], - "position": [ - 46408524, - 41220374, - -14205821 + 105, + 253, + 197 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400", + "filename": "Area Ig3 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo6 (OFC) [v2.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb" } - ] + }, + "_": { + "xml": { + "name": "Area Ig3 (Insula)", + "id": "336", + "grayvalue": "7" + }, + "dat": { + "colors": "336 105 253 197", + "names": "336 Ig3" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ig3 (Insula)", + "arealabel": "Area-Ig3", + "status": "publicDOI", + "labelIndex": "336", + "doi": "https://doi.org/10.25493/2FTZ-MWQ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e84b2da3-2cd6-4a66-a9fd-84beab67b552" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ig3 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/10dba769-4f6c-40f9-8ffd-e0cce71c5adb" } - }, - "relatedAreas": [] - } - ] - } - ] - }, - { - "name": "insula", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "granular insula", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { "name": "Area Ig1 (Insula)", - "arealabel": "Area-Ig1", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 18, - 111, - 40 - ], "children": [ { - "name": "Area Ig1 (Insula) - left hemisphere", + "name": "Area Ig1 (Insula)", + "status": "left hemisphere", + "labelIndex": 23, "rgb": [ 18, 111, 40 ], - "labelIndex": 115, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -33927907, - -25610078, - 9513953 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3", + "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" } - ] + }, + "_": { + "xml": { + "name": "Area Ig1 (Insula)", + "id": "115", + "grayvalue": "23" + }, + "dat": { + "colors": "115 18 111 40", + "names": "115 Ig1" + } + } }, { - "name": "Area Ig1 (Insula) - right hemisphere", + "name": "Area Ig1 (Insula)", + "status": "right hemisphere", + "labelIndex": 23, "rgb": [ 18, 111, 40 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 115, - "children": [], - "position": [ - 33261224, - -23922449, - 8838776 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3", + "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" + } + }, + "_": { + "xml": { + "name": "Area Ig1 (Insula)", + "id": "115", + "grayvalue": "23" + }, + "dat": { + "colors": "115 18 111 40", + "names": "115 Ig1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ig1 (Insula)", + "arealabel": "Area-Ig1", + "status": "publicP", + "labelIndex": "115", + "doi": "https://doi.org/10.25493/EKV9-29D", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/30d68317-ee5b-4975-b643-4468eb8dfbe3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ig1 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/46cf08af-8086-4e8a-9e9f-182ca583bdf0" } - }, - "relatedAreas": [] + } }, { "name": "Area Ig2 (Insula)", - "arealabel": "Area-Ig2", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 105, - 61, - 82 - ], "children": [ { - "name": "Area Ig2 (Insula) - left hemisphere", + "name": "Area Ig2 (Insula)", + "status": "left hemisphere", + "labelIndex": 48, "rgb": [ 105, 61, 82 ], - "labelIndex": 114, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -38185879, - -19442363, - 5011527 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147", + "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" + } + }, + "_": { + "xml": { + "name": "Area Ig2 (Insula)", + "id": "114", + "grayvalue": "48" + }, + "dat": { + "colors": "114 105 61 82", + "names": "114 Ig2" } - ] + } }, { - "name": "Area Ig2 (Insula) - right hemisphere", + "name": "Area Ig2 (Insula)", + "status": "right hemisphere", + "labelIndex": 48, "rgb": [ 105, 61, 82 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 114, - "children": [], - "position": [ - 37140230, - -17412644, - 5868966 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147", + "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig2 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" } - ] + }, + "_": { + "xml": { + "name": "Area Ig2 (Insula)", + "id": "114", + "grayvalue": "48" + }, + "dat": { + "colors": "114 105 61 82", + "names": "114 Ig2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ig2 (Insula)", + "arealabel": "Area-Ig2", + "status": "publicP", + "labelIndex": "114", + "doi": "https://doi.org/10.25493/662G-E0W", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ig2 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/49092952-1eef-4b89-b8bf-1bf1f25f149a" } - }, - "relatedAreas": [] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "granular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "agranular insula", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Area Ia (Insula)", - "arealabel": "Area-Ia", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 71, - 217, - 62 - ], "children": [ { - "name": "Area Ia (Insula) - left hemisphere", + "name": "Area Ia (Insula)", + "status": "left hemisphere", + "labelIndex": 77, "rgb": [ 71, 217, 62 ], - "labelIndex": 339, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -41710811, - -3478378, - -8602703 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f", + "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + } + }, + "_": { + "xml": { + "name": "Area Ia (Insula)", + "id": "339", + "grayvalue": "77" + }, + "dat": { + "colors": "339 71 217 62", + "names": "339 aIa" } - ] + } }, { - "name": "Area Ia (Insula) - right hemisphere", + "name": "Area Ia (Insula)", + "status": "right hemisphere", + "labelIndex": 77, "rgb": [ 71, 217, 62 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 339, - "children": [], - "position": [ - 40271008, - -306723, - -8955882 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f", + "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ia (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + } + }, + "_": { + "xml": { + "name": "Area Ia (Insula)", + "id": "339", + "grayvalue": "77" + }, + "dat": { + "colors": "339 71 217 62", + "names": "339 aIa" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ia (Insula)", + "arealabel": "Area-Ia", + "status": "publicDOI", + "labelIndex": "339", + "doi": "https://doi.org/10.25493/WW8G-T2G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8c98a495-a8d6-4fe8-8de1-5fd876e37d3f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ia (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/110d0d7b-cb88-48ea-9caf-863f548dbe38" } - }, - "relatedAreas": [] + } } - ] - }, + ], + "_": { + "jubrain-ontology_24.json": { + "name": "agranular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, { - "name": "dys-/agranular insula", + "name": "dys-agranular insula", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Area Id7 (Insula)", - "arealabel": "Area-Id7", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 101, - 202, - 38 - ], "children": [ { - "name": "Area Id7 (Insula) - left hemisphere", + "name": "Area Id7 (Insula)", + "status": "left hemisphere", + "labelIndex": 107, "rgb": [ - 101, - 202, - 38 - ], - "labelIndex": 159, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -32161180, - 23947874, - 2868999 + 188, + 250, + 216 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868", + "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" } - ] + }, + "_": { + "xml": { + "name": "Area Id7 (Insula)", + "id": "159", + "grayvalue": "107" + }, + "dat": { + "colors": "159 188 250 216", + "names": "159 Iad1" + } + } }, { - "name": "Area Id7 (Insula) - right hemisphere", + "name": "Area Id7 (Insula)", + "status": "right hemisphere", + "labelIndex": 106, "rgb": [ - 101, - 202, - 38 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 159, - "children": [], - "position": [ - 32412012, - 26220735, - 1550497 + 188, + 250, + 216 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868", + "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id7 (Insula) [v6.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" } - ] + }, + "_": { + "xml": { + "name": "Area Id7 (Insula)", + "id": "159", + "grayvalue": "106" + }, + "dat": { + "colors": "159 188 250 216", + "names": "159 Iad1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id7 (Insula)", + "arealabel": "Area-Id7", + "status": "publicDOI", + "labelIndex": "159", + "doi": "https://doi.org/10.25493/88QG-JMS", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2da42b86-d839-41e8-bb27-1bb7697e3868" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id7 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3d5729f5-55c6-412a-8fc1-41a95c71b13a" } - }, - "relatedAreas": [] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dys-agranular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "dysgranular insula", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area Id1 (Insula)", - "arealabel": "Area-Id1", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 141, - 112, - 216 - ], + "name": "Area Id2 (Insula)", + "status": "publicDOI", "children": [ { - "name": "Area Id1 (Insula) - left hemisphere", + "name": "Area Id2 (Insula)", + "status": "left hemisphere", + "labelIndex": 53, "rgb": [ - 141, - 112, - 216 - ], - "labelIndex": 116, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -41135158, - -19816750, - -5491708 + 225, + 126, + 73 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]" + "filename": "Area Id2 (Insula) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "a260b3b4eadda85af9fd8df4100c10a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf9dea67-649d-4034-ae57-ec389f339277" + } + }, + "_": { + "xml": { + "name": "Area Id2 (Insula)", + "id": "56", + "grayvalue": "53" + }, + "dat": { + "colors": "56 225 126 73", + "names": "56 Id2" } - ] + } }, { - "name": "Area Id1 (Insula) - right hemisphere", + "name": "Area Id2 (Insula)", + "status": "right hemisphere", + "labelIndex": 53, "rgb": [ - 141, - 112, - 216 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 116, - "children": [], - "position": [ - 38820470, - -17815436, - -5112416 + 225, + 126, + 73 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]" + "filename": "Area Id2 (Insula) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "a260b3b4eadda85af9fd8df4100c10a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf9dea67-649d-4034-ae57-ec389f339277" } - ] + }, + "_": { + "xml": { + "name": "Area Id2 (Insula)", + "id": "56", + "grayvalue": "53" + }, + "dat": { + "colors": "56 225 126 73", + "names": "56 Id2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "c22055c1-514f-4096-906b-abf57286053b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id2 (Insula)", + "arealabel": "Area-Id2", + "status": "publicDOI", + "labelIndex": "56", + "doi": "https://doi.org10.25493/377R-T96", + "synonyms": [], + "rgb": null, + "kgHref": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id2 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cf9dea67-649d-4034-ae57-ec389f339277" } - }, - "relatedAreas": [] + } }, { - "name": "Area Id5 (Insula)", - "arealabel": "Area-Id5", - "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 112, - 6, - 50 - ], + "name": "Area Id1 (Insula)", + "status": "publicP", "children": [ { - "name": "Area Id5 (Insula) - left hemisphere", + "name": "Area Id1 (Insula)", + "status": "left hemisphere", + "labelIndex": 69, "rgb": [ + 141, 112, - 6, - 50 - ], - "labelIndex": 338, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -40449519, - -4582933, - 382212 + 216 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9", + "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c22055c1-514f-4096-906b-abf57286053b" + } + }, + "_": { + "xml": { + "name": "Area Id1 (Insula)", + "id": "116", + "grayvalue": "69" + }, + "dat": { + "colors": "116 141 112 216", + "names": "116 Id1" + } + } }, { - "name": "Area Id5 (Insula) - right hemisphere", + "name": "Area Id1 (Insula)", + "status": "right hemisphere", + "labelIndex": 69, "rgb": [ + 141, 112, - 6, - 50 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 338, - "children": [], - "position": [ - 38537963, - -2796296, - 165741 + 216 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9", + "filename": "Area Id1 (Insula) [v13.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c22055c1-514f-4096-906b-abf57286053b" + } + }, + "_": { + "xml": { + "name": "Area Id1 (Insula)", + "id": "116", + "grayvalue": "69" + }, + "dat": { + "colors": "116 141 112 216", + "names": "116 Id1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id1 (Insula)", + "arealabel": "Area-Id1", + "status": "publicP", + "labelIndex": "116", + "doi": "https://doi.org/10.25493/F37H-8WB", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/456e67e7-ef36-4d1e-8b2e-0a1b40831086" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id1 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/c22055c1-514f-4096-906b-abf57286053b" } - }, - "relatedAreas": [] + } }, { - "name": "Area Id4 (Insula)", - "arealabel": "Area-Id4", + "name": "Area Id5 (Insula)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 38, - 174, - 113 - ], "children": [ { - "name": "Area Id4 (Insula) - left hemisphere", + "name": "Area Id5 (Insula)", + "status": "left hemisphere", + "labelIndex": 72, "rgb": [ - 38, - 174, - 113 - ], - "labelIndex": 337, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -37849096, - -4693324, - 11819889 + 112, + 6, + 50 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b", + "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" + } + }, + "_": { + "xml": { + "name": "Area Id5 (Insula)", + "id": "338", + "grayvalue": "72" + }, + "dat": { + "colors": "338 112 6 50", + "names": "338 aId2" } - ] + } }, { - "name": "Area Id4 (Insula) - right hemisphere", + "name": "Area Id5 (Insula)", + "status": "right hemisphere", + "labelIndex": 72, "rgb": [ - 38, - 174, - 113 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 337, - "children": [], - "position": [ - 36201613, - -3791475, - 10987327 + 112, + 6, + 50 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b", + "filename": "Area Id5 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" } - ] + }, + "_": { + "xml": { + "name": "Area Id5 (Insula)", + "id": "338", + "grayvalue": "72" + }, + "dat": { + "colors": "338 112 6 50", + "names": "338 aId2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id5 (Insula)", + "arealabel": "Area-Id5", + "status": "publicDOI", + "labelIndex": "338", + "doi": "https://doi.org/10.25493/5CK1-B1G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/bfee9d73-2ea3-4b35-9e99-8862e1ed59a9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id5 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e03cd3c6-d0be-481c-b906-9b39c1d0b641" } - }, - "relatedAreas": [] + } }, { "name": "Area Id6 (Insula)", - "arealabel": "Area-Id6", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 138, - 127, - 119 - ], "children": [ { - "name": "Area Id6 (Insula) - left hemisphere", + "name": "Area Id6 (Insula)", + "status": "left hemisphere", + "labelIndex": 56, "rgb": [ 138, 127, 119 ], - "labelIndex": 340, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -37077741, - 9330986, - 2058685 - ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab", + "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + } + }, + "_": { + "xml": { + "name": "Area Id6 (Insula)", + "id": "340", + "grayvalue": "56" + }, + "dat": { + "colors": "340 138 127 119", + "names": "340 aId3" } - ] + } }, { - "name": "Area Id6 (Insula) - right hemisphere", + "name": "Area Id6 (Insula)", + "status": "right hemisphere", + "labelIndex": 56, "rgb": [ 138, 127, 119 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 340, - "children": [], - "position": [ - 35516562, - 11115104, - 2772938 - ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab", + "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id6 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + } + }, + "_": { + "xml": { + "name": "Area Id6 (Insula)", + "id": "340", + "grayvalue": "56" + }, + "dat": { + "colors": "340 138 127 119", + "names": "340 aId3" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id6 (Insula)", + "arealabel": "Area-Id6", + "status": "publicDOI", + "labelIndex": "340", + "doi": "https://doi.org/10.25493/54HZ-KFQ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a98c1711-4d2c-4351-bc63-c3f827f41eab" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id6 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" } - }, - "relatedAreas": [] - } - ] - } - ] - }, - { - "name": "temporal lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "superior temporal sulcus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area STS1 (STS)", - "arealabel": "Area-STS1", + "name": "Area Id4 (Insula)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 205, - 228, - 4 - ], "children": [ { - "name": "Area STS1 (STS) - left hemisphere", + "name": "Area Id4 (Insula)", + "status": "left hemisphere", + "labelIndex": 52, "rgb": [ - 205, - 228, - 4 - ], - "labelIndex": 271, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -55442669, - -18314601, - -6381831 + 38, + 174, + 113 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f", + "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" } - ] + }, + "_": { + "xml": { + "name": "Area Id4 (Insula)", + "id": "337", + "grayvalue": "52" + }, + "dat": { + "colors": "337 38 174 113", + "names": "337 aId1" + } + } }, { - "name": "Area STS1 (STS) - right hemisphere", + "name": "Area Id4 (Insula)", + "status": "right hemisphere", + "labelIndex": 52, "rgb": [ - 205, - 228, - 4 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 271, - "children": [], - "position": [ - 52602966, - -18339402, - -5666868 + 38, + 174, + 113 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f", + "filename": "Area Id4 (Insula) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" } - ] + }, + "_": { + "xml": { + "name": "Area Id4 (Insula)", + "id": "337", + "grayvalue": "52" + }, + "dat": { + "colors": "337 38 174 113", + "names": "337 aId1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id4 (Insula)", + "arealabel": "Area-Id4", + "status": "publicDOI", + "labelIndex": "337", + "doi": "https://doi.org/10.25493/K63G-89H", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/49a74d3a-9290-4ff9-9a5a-522c0a096d1b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id4 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" } - }, - "relatedAreas": [] + } }, { - "name": "Area STS2 (STS)", - "arealabel": "Area-STS2", + "name": "Area Id3 (Insula)", "status": "publicDOI", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 62, - 117, - 123 - ], "children": [ { - "name": "Area STS2 (STS) - left hemisphere", + "name": "Area Id3 (Insula)", + "status": "left hemisphere", + "labelIndex": 19, "rgb": [ - 62, - 117, - 123 - ], - "labelIndex": 272, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -57958891, - -8931681, - -16581483 + 32, + 32, + 58 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0", + "filename": "Area Id3 (Insula) [v7.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3" } - ] + }, + "_": { + "xml": { + "name": "Area Id3 (Insula)", + "id": "57", + "grayvalue": "19" + }, + "dat": { + "colors": "57 32 32 58", + "names": "57 Id3" + } + } }, { - "name": "Area STS2 (STS) - right hemisphere", + "name": "Area Id3 (Insula)", + "status": "right hemisphere", + "labelIndex": 19, "rgb": [ - 62, - 117, - 123 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 272, - "children": [], - "position": [ - 55536716, - -8701651, - -16698805 + 32, + 32, + 58 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0", + "filename": "Area Id3 (Insula) [v7.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3" } - ] + }, + "_": { + "xml": { + "name": "Area Id3 (Insula)", + "id": "57", + "grayvalue": "19" + }, + "dat": { + "colors": "57 32 32 58", + "names": "57 Id3" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id3 (Insula)", + "arealabel": "Area-Id3", + "status": "publicDOI", + "labelIndex": "57", + "doi": "https://doi.org/10.25493/AE2S-KT6", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/85869b4f-9c3f-47f3-b911-838de6ab8317" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id3 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3dcfcfc2-035c-4785-a820-a671f2104ac3" } - }, - "relatedAreas": [] + } } - ] - }, - { - "name": "superior temporal gyrus", + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dysgranular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "insula", "status": null, "labelIndex": null, "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "temporal lobe", + "status": null, + "children": [ + { + "name": "superior temporal sulcus", + "status": null, "children": [ { - "name": "Area TE 3 (STG)", - "arealabel": "Area-TE-3", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 159, - 104, - 108 - ], + "name": "Area STS2 (STS)", + "status": "publicDOI", "children": [ { - "name": "Area TE 3 (STG) - left hemisphere", + "name": "Area STS2 (STS)", + "status": "left hemisphere", + "labelIndex": 18, "rgb": [ - 159, - 104, - 108 - ], - "labelIndex": 31, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -65021452, - -13798267, - 691213 + 62, + 117, + 123 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13", + "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" + } + }, + "_": { + "xml": { + "name": "Area STS2 (STS)", + "id": "272", + "grayvalue": "18" + }, + "dat": { + "colors": "272 62 117 123", + "names": "272 Te5" } - ] + } }, { - "name": "Area TE 3 (STG) - right hemisphere", + "name": "Area STS2 (STS)", + "status": "right hemisphere", + "labelIndex": 18, "rgb": [ - 159, - 104, - 108 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 31, - "children": [], - "position": [ - 63517180, - -9223240, - -1006136 + 62, + 117, + 123 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13", + "filename": "Area STS2 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" } - ] + }, + "_": { + "xml": { + "name": "Area STS2 (STS)", + "id": "272", + "grayvalue": "18" + }, + "dat": { + "colors": "272 62 117 123", + "names": "272 Te5" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area STS2 (STS)", + "arealabel": "Area-STS2", + "status": "publicDOI", + "labelIndex": "272", + "doi": "https://doi.org/10.25493/KHY9-J3Y", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7cef408f-0b23-46c3-8411-102cce3d86a0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area STS2 (STS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/278fc30f-2e24-4046-856b-95dfaf561635" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "Heschl's gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area TE 1.2 (HESCHL)", - "arealabel": "Area-TE-1.2", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 202, - 251, - 192 - ], + "name": "Area STS1 (STS)", + "status": "publicDOI", "children": [ { - "name": "Area TE 1.2 (HESCHL) - left hemisphere", + "name": "Area STS1 (STS)", + "status": "left hemisphere", + "labelIndex": 93, "rgb": [ - 202, - 251, - 192 - ], - "labelIndex": 30, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -51139794, - -7275300, - 2604631 + 205, + 228, + 4 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2", + "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" + } + }, + "_": { + "xml": { + "name": "Area STS1 (STS)", + "id": "271", + "grayvalue": "93" + }, + "dat": { + "colors": "271 205 228 4", + "names": "271 Te4" } - ] + } }, { - "name": "Area TE 1.2 (HESCHL) - right hemisphere", + "name": "Area STS1 (STS)", + "status": "right hemisphere", + "labelIndex": 92, "rgb": [ - 202, - 251, - 192 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 30, - "children": [], - "position": [ - 53854260, - -2428251, - -1426009 + 205, + 228, + 4 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2", + "filename": "Area STS1 (STS) [v3.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" } - ] + }, + "_": { + "xml": { + "name": "Area STS1 (STS)", + "id": "271", + "grayvalue": "92" + }, + "dat": { + "colors": "271 205 228 4", + "names": "271 Te4" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area STS1 (STS)", + "arealabel": "Area-STS1", + "status": "publicDOI", + "labelIndex": "271", + "doi": "https://doi.org/10.25493/F6DF-H8P", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/61460dd7-7696-485e-b638-407e7b7dc99f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area STS1 (STS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/68784b66-ff15-4b09-b28a-a2146c0f8907" } - }, - "relatedAreas": [] - }, - { - "name": "Area TE 1.1 (HESCHL)", - "arealabel": "Area-TE-1.1", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior temporal sulcus", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 8, - 113, - 68 - ], + "rgb": null + } + } + }, + { + "name": "superior temporal gyrus", + "status": null, + "children": [ + { + "name": "Area TE 3 (STG)", + "status": "publicP", "children": [ { - "name": "Area TE 1.1 (HESCHL) - left hemisphere", + "name": "Area TE 3 (STG)", + "status": "left hemisphere", + "labelIndex": 30, "rgb": [ - 8, - 113, - 68 - ], - "labelIndex": 33, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -39537206, - -29185649, - 11225133 + 159, + 104, + 108 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c", + "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" } - ] + }, + "_": { + "xml": { + "name": "Area TE 3 (STG)", + "id": "31", + "grayvalue": "30" + }, + "dat": { + "colors": "31 159 104 108", + "names": "31 Te3" + } + } }, { - "name": "Area TE 1.1 (HESCHL) - right hemisphere", + "name": "Area TE 3 (STG)", + "status": "right hemisphere", + "labelIndex": 30, "rgb": [ - 8, - 113, - 68 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 33, - "children": [], - "position": [ - 40353878, - -24757143, - 10842857 + 159, + 104, + 108 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c", + "filename": "Area TE 3 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" - } - }, - "relatedAreas": [] - }, - { - "name": "Area TE 1.0 (HESCHL)", - "arealabel": "Area-TE-1.0", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area Te1", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f424643e-9baf-4c50-9417-db1ac33dcd3e" + "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + } + }, + "_": { + "xml": { + "name": "Area TE 3 (STG)", + "id": "31", + "grayvalue": "30" + }, + "dat": { + "colors": "31 159 104 108", + "names": "31 Te3" } } } ], - "rgb": [ - 252, - 84, - 222 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 3 (STG)", + "arealabel": "Area-TE-3", + "status": "publicP", + "labelIndex": "31", + "doi": "https://doi.org/10.25493/BN5J-JT8", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/03b1cb7b-f142-4612-bbd3-10fc7743bf13" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 3 (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + } + } + }, + { + "name": "Area TE 2.2 (STG)", + "status": "publicDOI", "children": [ { - "name": "Area TE 1.0 (HESCHL) - left hemisphere", + "name": "Area TE 2.2 (STG)", + "status": "left hemisphere", + "labelIndex": 120, "rgb": [ - 252, - 84, - 222 - ], - "labelIndex": 27, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -47745772, - -19329763, - 7810034 + 58, + 104, + 125 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]" + "filename": "Area TE 2.2 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61" } - ] + }, + "_": { + "xml": { + "name": "Area TE 2.2 (STG)", + "id": "34", + "grayvalue": "120" + }, + "dat": { + "colors": "34 58 104 125", + "names": "34 Te22" + } + } }, { - "name": "Area TE 1.0 (HESCHL) - right hemisphere", + "name": "Area TE 2.2 (STG)", + "status": "right hemisphere", + "labelIndex": 120, "rgb": [ - 252, - 84, - 222 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 27, - "children": [], - "position": [ - 49200565, - -12937288, - 5319209 + 58, + 104, + 125 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]" + "filename": "Area TE 2.2 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "13e21153-2ba8-4212-b172-8894f1012225" - } - } - } - ] - }, - { - "name": "fusiform gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area FG1 (FusG)", - "arealabel": "Area-FG1", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area FG1", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "6318e160-4ad2-4eec-8a2e-2df6fe07d8f4" + "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61" + } + }, + "_": { + "xml": { + "name": "Area TE 2.2 (STG)", + "id": "34", + "grayvalue": "120" + }, + "dat": { + "colors": "34 58 104 125", + "names": "34 Te22" } } } ], - "rgb": [ - 131, - 183, - 58 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 2.2 (STG)", + "arealabel": "Area-TE-2.2", + "status": "publicDOI", + "labelIndex": "34", + "doi": " https://doi.org/10.25493/RTTN-R5F", + "synonyms": [], + "rgb": null, + "kgHref": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 2.2 (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9ecfd5e0-dc37-4303-894d-a897faa51d61" + } + } + }, + { + "name": "Area TE 2.1 (STG)", + "status": "publicDOI", "children": [ { - "name": "Area FG1 (FusG) - left hemisphere", + "name": "Area TE 2.1 (STG)", + "status": "left hemisphere", + "labelIndex": 79, "rgb": [ - 131, - 183, - 58 - ], - "labelIndex": 107, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -30094949, - -68384410, - -12800146 + 67, + 254, + 44 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "a00577ca-5089-443d-918e-b99531efd5e9", + "filename": "Area TE 2.1 (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c" } - ] + }, + "_": { + "xml": { + "name": "Area TE 2.1 (STG)", + "id": "28", + "grayvalue": "79" + }, + "dat": { + "colors": "28 67 254 44", + "names": "28 Te21" + } + } }, { - "name": "Area FG1 (FusG) - right hemisphere", + "name": "Area TE 2.1 (STG)", + "status": "right hemisphere", + "labelIndex": 78, "rgb": [ - 131, - 183, - 58 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 107, - "children": [], - "position": [ - 32164756, - -65600287, - -12459885 + 67, + 254, + 44 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "a00577ca-5089-443d-918e-b99531efd5e9", + "filename": "Area TE 2.1 (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c" } - ] + }, + "_": { + "xml": { + "name": "Area TE 2.1 (STG)", + "id": "28", + "grayvalue": "78" + }, + "dat": { + "colors": "28 67 254 44", + "names": "28 Te21" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 2.1 (STG)", + "arealabel": "Area-TE-2.1", + "status": "publicDOI", + "labelIndex": "28", + "doi": "https://doi.org/10.25493/R28N-2TD", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a5589ffe-5148-4006-8d8d-8bcf411f750b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 2.1 (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3332ad65-a5e6-436f-95f0-c634fbcb075c" } } - }, - { - "name": "Area FG4 (FusG)", - "arealabel": "Area-FG4", - "status": "publicP", + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior temporal gyrus", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 170, - 220, - 175 - ], - "children": [ - { - "name": "Area FG4 (FusG) - left hemisphere", - "rgb": [ - 170, - 220, - 175 - ], - "labelIndex": 238, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -44817844, - -46757217, - -19517597 + "rgb": null + } + } + }, + { + "name": "temporal-insula", + "status": null, + "children": [ + { + "name": "Area TI (STG)", + "status": "publicDOI", + "children": [ + { + "name": "Area TI (STG)", + "status": "left hemisphere", + "labelIndex": 26, + "rgb": [ + 86, + 101, + 22 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b", + "filename": "Area TI (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43" + } + }, + "_": { + "xml": { + "name": "Area TI (STG)", + "id": "243", + "grayvalue": "26" + }, + "dat": { + "colors": "243 86 101 22", + "names": "243 TI2" } - ] + } }, { - "name": "Area FG4 (FusG) - right hemisphere", + "name": "Area TI (STG)", + "status": "right hemisphere", + "labelIndex": 25, "rgb": [ - 170, - 220, - 175 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 238, - "children": [], - "position": [ - 42929445, - -44444275, - -21712296 + 86, + 101, + 22 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b", + "filename": "Area TI (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43" + } + }, + "_": { + "xml": { + "name": "Area TI (STG)", + "id": "243", + "grayvalue": "25" + }, + "dat": { + "colors": "243 86 101 22", + "names": "243 TI2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TI (STG)", + "arealabel": "Area-TI", + "status": "publicDOI", + "labelIndex": "243", + "doi": "https://doi.org/10.25493/57FA-VX6", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/48383281-9a83-4c6f-8166-f8bb139052dd" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TI (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43" } - }, - "relatedAreas": [] + } }, { - "name": "Area FG3 (FusG)", - "arealabel": "Area-FG3", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 120, - 147, - 37 - ], + "name": "Area TeI (STG)", + "status": " publicDOI", "children": [ { - "name": "Area FG3 (FusG) - left hemisphere", + "name": "Area TeI (STG)", + "status": "left hemisphere", + "labelIndex": 125, "rgb": [ - 120, - 147, - 37 - ], - "labelIndex": 239, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -31763265, - -47519967, - -14980126 + 23, + 78, + 92 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "34f29154-e210-4bef-9510-73b77f727132", + "filename": "Area TeI (STG) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346" } - ] - }, - { - "name": "Area FG3 (FusG) - right hemisphere", - "rgb": [ - 120, - 147, - 37 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 239, - "children": [], - "position": [ - 30835007, - -45941176, - -15743424 - ], - "originDatasets": [ - { - "kgId": "34f29154-e210-4bef-9510-73b77f727132", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]" - } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" - } - }, - "relatedAreas": [] - }, - { - "name": "Area FG2 (FusG)", - "arealabel": "Area-FG2", - "status": "publicP", - "labelIndex": null, - "synonyms": [], - "relatedAreas": [ - { - "name": "Area FG2", "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8f436328-4251-4706-ae38-767e1ab21c6f" + "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a" + } + }, + "_": { + "xml": { + "name": "Area TeI (STG)", + "id": "242", + "grayvalue": "125" + }, + "dat": { + "colors": "242 23 78 92", + "names": "242 TI1" } } - } - ], - "rgb": [ - 67, - 94, - 149 - ], - "children": [ + }, { - "name": "Area FG2 (FusG) - left hemisphere", + "name": "Area TeI (STG)", + "status": "right hemisphere", + "labelIndex": 125, "rgb": [ - 67, - 94, - 149 - ], - "labelIndex": 106, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -44484053, - -67922326, - -16558015 + 23, + 78, + 92 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9", + "filename": "Area TeI (STG) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346" } - ] - }, - { - "name": "Area FG2 (FusG) - right hemisphere", - "rgb": [ - 67, - 94, - 149 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 106, - "children": [], - "position": [ - 44057346, - -64586582, - -16661544 - ], - "originDatasets": [ - { - "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]" + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a" } - ] + }, + "_": { + "xml": { + "name": "Area TeI (STG)", + "id": "242", + "grayvalue": "125" + }, + "dat": { + "colors": "242 23 78 92", + "names": "242 TI1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TeI (STG)", + "arealabel": "Area-TeI", + "status": " publicDOI", + "labelIndex": "242", + "doi": "https://doi.org/10.25493/DTC3-EVM", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/35f2107d-2e3c-41ae-b26a-83b101829346" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TeI (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/0eff5159-a136-4b42-b591-f17fbc82ae8a" } } } - ] - } - ] - }, - { - "name": "limbic lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + ], + "_": { + "jubrain-ontology_24.json": { + "name": "temporal-insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, { - "name": "cingulate gyrus, frontal part", + "name": "Heschl's gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area p24c (pACC)", - "arealabel": "Area-p24c", + "name": "Area TE 1.2 (HESCHL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 241, - 164, - 195 - ], "children": [ { - "name": "Area p24c (pACC) - left hemisphere", + "name": "Area TE 1.2 (HESCHL)", + "status": "left hemisphere", + "labelIndex": 71, "rgb": [ - 241, - 164, - 195 - ], - "labelIndex": 232, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -10315842, - 41083498, - 11735644 + 202, + 251, + 192 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721", + "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + } + }, + "_": { + "xml": { + "name": "Area TE 1.2 (HESCHL)", + "id": "30", + "grayvalue": "71" + }, + "dat": { + "colors": "30 202 251 192", + "names": "30 Te12" } - ] + } }, { - "name": "Area p24c (pACC) - right hemisphere", + "name": "Area TE 1.2 (HESCHL)", + "status": "right hemisphere", + "labelIndex": 71, "rgb": [ - 241, - 164, - 195 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 232, - "children": [], - "position": [ - 9082066, - 42907018, - 11145614 + 202, + 251, + 192 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721", + "filename": "Area TE 1.2 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + } + }, + "_": { + "xml": { + "name": "Area TE 1.2 (HESCHL)", + "id": "30", + "grayvalue": "71" + }, + "dat": { + "colors": "30 202 251 192", + "names": "30 Te12" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 1.2 (HESCHL)", + "arealabel": "Area-TE-1.2", + "status": "publicP", + "labelIndex": "30", + "doi": "https://doi.org/10.25493/R382-617", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 1.2 (HESCHL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" } - }, - "relatedAreas": [] + } }, { - "name": "Area p24ab (pACC)", - "arealabel": "Area-p24ab", + "name": "Area TE 1.1 (HESCHL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 153, - 195, - 229 - ], "children": [ { - "name": "Area p24ab (pACC) - left hemisphere", + "name": "Area TE 1.1 (HESCHL)", + "status": "left hemisphere", + "labelIndex": 1, "rgb": [ - 153, - 195, - 229 - ], - "labelIndex": 231, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -3951741, - 38786470, - 4481049 + 8, + 113, + 68 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503", + "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" + } + }, + "_": { + "xml": { + "name": "Area TE 1.1 (HESCHL)", + "id": "33", + "grayvalue": "1" + }, + "dat": { + "colors": "33 8 113 68", + "names": "33 Te11" + } + } }, { - "name": "Area p24ab (pACC) - right hemisphere", + "name": "Area TE 1.1 (HESCHL)", + "status": "right hemisphere", + "labelIndex": 1, "rgb": [ - 153, - 195, - 229 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 231, - "children": [], - "position": [ - 2508004, - 39161686, - 6891142 + 8, + 113, + 68 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503", + "filename": "Area TE 1.1 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" } - ] + }, + "_": { + "xml": { + "name": "Area TE 1.1 (HESCHL)", + "id": "33", + "grayvalue": "1" + }, + "dat": { + "colors": "33 8 113 68", + "names": "33 Te11" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 1.1 (HESCHL)", + "arealabel": "Area-TE-1.1", + "status": "publicP", + "labelIndex": "33", + "doi": "https://doi.org/10.25493/4HA3-BBE", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/85ad6ef7-228a-4543-a0b1-71ccf11bc69c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 1.1 (HESCHL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e2969911-77eb-4b21-af70-216cab5285b1" } - }, - "relatedAreas": [] + } }, { - "name": "Area s32 (sACC)", - "arealabel": "Area-s32", + "name": "Area TE 1.0 (HESCHL)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 193, - 94, - 250 - ], "children": [ { - "name": "Area s32 (sACC) - left hemisphere", + "name": "Area TE 1.0 (HESCHL)", + "status": "left hemisphere", + "labelIndex": 17, "rgb": [ - 193, - 94, - 250 - ], - "labelIndex": 46, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -7960610, - 35317027, - -14716010 + 252, + 84, + 222 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca", + "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "13e21153-2ba8-4212-b172-8894f1012225" } - ] + }, + "_": { + "xml": { + "name": "Area TE 1.0 (HESCHL)", + "id": "27", + "grayvalue": "17" + }, + "dat": { + "colors": "27 252 84 222", + "names": "27 Te10" + } + } }, { - "name": "Area s32 (sACC) - right hemisphere", + "name": "Area TE 1.0 (HESCHL)", + "status": "right hemisphere", + "labelIndex": 17, "rgb": [ - 193, - 94, - 250 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 46, - "children": [], - "position": [ - 2693907, - 34682777, - -15008494 + 252, + 84, + 222 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca", + "filename": "Area TE 1.0 (HESCHL) [v5.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "13e21153-2ba8-4212-b172-8894f1012225" + } + }, + "_": { + "xml": { + "name": "Area TE 1.0 (HESCHL)", + "id": "27", + "grayvalue": "17" + }, + "dat": { + "colors": "27 252 84 222", + "names": "27 Te10" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 1.0 (HESCHL)", + "arealabel": "Area-TE-1.0", + "status": "publicP", + "labelIndex": "27", + "doi": "https://doi.org/10.25493/MV3G-RET", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8a105954-a724-428d-aed8-6c8d50fe4218" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 1.0 (HESCHL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/13e21153-2ba8-4212-b172-8894f1012225" } - }, - "relatedAreas": [] - }, - { - "name": "Area 25 (sACC)", - "arealabel": "Area-25", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Heschl's gyrus", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 170, - 68, - 220 - ], + "rgb": null + } + } + }, + { + "name": "fusiform gyrus", + "status": null, + "children": [ + { + "name": "Area FG2 (FusG)", + "status": "publicP", "children": [ { - "name": "Area 25 (sACC) - left hemisphere", + "name": "Area FG2 (FusG)", + "status": "left hemisphere", + "labelIndex": 39, "rgb": [ - 170, - 68, - 220 - ], - "labelIndex": 184, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -5565878, - 12434122, - -13119932 + 67, + 94, + 149 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e", + "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9" } - ] - }, - { - "name": "Area 25 (sACC) - right hemisphere", - "rgb": [ - 170, - 68, - 220 ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 184, - "children": [], - "position": [ - 3297386, - 11678649, - -13530501 + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + } + }, + "_": { + "xml": { + "name": "Area FG2 (FusG)", + "id": "106", + "grayvalue": "39" + }, + "dat": { + "colors": "106 67 94 149", + "names": "106 GF2" + } + } + }, + { + "name": "Area FG2 (FusG)", + "status": "right hemisphere", + "labelIndex": 39, + "rgb": [ + 67, + 94, + 149 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e", + "filename": "Area FG2 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + } + }, + "_": { + "xml": { + "name": "Area FG2 (FusG)", + "id": "106", + "grayvalue": "39" + }, + "dat": { + "colors": "106 67 94 149", + "names": "106 GF2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG2 (FusG)", + "arealabel": "Area-FG2", + "status": "publicP", + "labelIndex": "106", + "doi": "https://doi.org/10.25493/F2JH-KVV", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/526f6a7d-e8f8-4a8e-a895-a92696281eb9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG2 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/6e7a0441-4baa-4355-921b-50d23d07d50f" } - }, - "relatedAreas": [] + } }, { - "name": "Area s24 (sACC)", - "arealabel": "Area-s24", + "name": "Area FG3 (FusG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 133, - 34, - 201 - ], "children": [ { - "name": "Area s24 (sACC) - left hemisphere", + "name": "Area FG3 (FusG)", + "status": "left hemisphere", + "labelIndex": 96, "rgb": [ - 133, - 34, - 201 - ], - "labelIndex": 183, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -4719528, - 24562540, - -11547224 + 120, + 147, + 37 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3", + "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "34f29154-e210-4bef-9510-73b77f727132" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" } - ] + }, + "_": { + "xml": { + "name": "Area FG3 (FusG)", + "id": "239", + "grayvalue": "96" + }, + "dat": { + "colors": "239 120 147 37", + "names": "239 fg4" + } + } }, { - "name": "Area s24 (sACC) - right hemisphere", + "name": "Area FG3 (FusG)", + "status": "right hemisphere", + "labelIndex": 97, "rgb": [ - 133, - 34, - 201 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 183, - "children": [], - "position": [ - 2316712, - 23962938, - -10923181 + 120, + 147, + 37 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3", + "filename": "Area FG3 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "34f29154-e210-4bef-9510-73b77f727132" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" } - ] + }, + "_": { + "xml": { + "name": "Area FG3 (FusG)", + "id": "239", + "grayvalue": "97" + }, + "dat": { + "colors": "239 120 147 37", + "names": "239 fg4" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG3 (FusG)", + "arealabel": "Area-FG3", + "status": "publicP", + "labelIndex": "239", + "doi": "https://doi.org/10.25493/Z0F6-0SY", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/34f29154-e210-4bef-9510-73b77f727132" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG3 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/023f8ef7-c266-4c45-8bf2-4a17dc52985b" } - }, - "relatedAreas": [] + } }, { - "name": "Area p32 (pACC)", - "arealabel": "Area-p32", + "name": "Area FG1 (FusG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 87, - 135, - 14 - ], "children": [ { - "name": "Area p32 (pACC) - left hemisphere", + "name": "Area FG1 (FusG)", + "status": "left hemisphere", + "labelIndex": 36, "rgb": [ - 87, - 135, - 14 - ], - "labelIndex": 47, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -8368982, - 49719698, - 10114173 + 131, + 183, + 58 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7a326443-3ced-482f-8772-fb948b0f298f", + "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "a00577ca-5089-443d-918e-b99531efd5e9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" } - ] + }, + "_": { + "xml": { + "name": "Area FG1 (FusG)", + "id": "107", + "grayvalue": "36" + }, + "dat": { + "colors": "107 131 183 58", + "names": "107 GF1" + } + } }, { - "name": "Area p32 (pACC) - right hemisphere", + "name": "Area FG1 (FusG)", + "status": "right hemisphere", + "labelIndex": 36, "rgb": [ - 87, - 135, - 14 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 47, - "children": [], - "position": [ - 6403235, - 50410059, - 10022042 + 131, + 183, + 58 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7a326443-3ced-482f-8772-fb948b0f298f", + "filename": "Area FG1 (FusG) [v1.4, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "a00577ca-5089-443d-918e-b99531efd5e9" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" + } + }, + "_": { + "xml": { + "name": "Area FG1 (FusG)", + "id": "107", + "grayvalue": "36" + }, + "dat": { + "colors": "107 131 183 58", + "names": "107 GF1" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG1 (FusG)", + "arealabel": "Area-FG1", + "status": "publicP", + "labelIndex": "107", + "doi": "https://doi.org/10.25493/5ZVQ-R8R", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a00577ca-5089-443d-918e-b99531efd5e9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG1 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/39fb34a8-fd6d-4fba-898c-2f6167e40459" } - }, - "relatedAreas": [] + } }, { - "name": "Area 33 (ACC)", - "arealabel": "Area-33", + "name": "Area FG4 (FusG)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 51, - 57, - 245 - ], "children": [ { - "name": "Area 33 (ACC) - left hemisphere", + "name": "Area FG4 (FusG)", + "status": "left hemisphere", + "labelIndex": 108, "rgb": [ - 51, - 57, - 245 - ], - "labelIndex": 39, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -6094628, - 15035613, - 15966015 + 170, + 220, + 175 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c", + "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" } - ] + }, + "_": { + "xml": { + "name": "Area FG4 (FusG)", + "id": "238", + "grayvalue": "108" + }, + "dat": { + "colors": "238 170 220 175", + "names": "238 fg3" + } + } }, { - "name": "Area 33 (ACC) - right hemisphere", + "name": "Area FG4 (FusG)", + "status": "right hemisphere", + "labelIndex": 108, "rgb": [ - 51, - 57, - 245 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 39, - "children": [], - "position": [ - 4398596, - 17026911, - 15680187 + 170, + 220, + 175 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c", + "filename": "Area FG4 (FusG) [v6.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" } - ] + }, + "_": { + "xml": { + "name": "Area FG4 (FusG)", + "id": "238", + "grayvalue": "108" + }, + "dat": { + "colors": "238 170 220 175", + "names": "238 fg3" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG4 (FusG)", + "arealabel": "Area-FG4", + "status": "publicP", + "labelIndex": "238", + "doi": "https://doi.org/10.25493/13RG-FYV", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e7a2b57c-c4f0-41b9-8d80-8accd509497b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG4 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/fa602743-5f6e-49d1-9734-29dffaa95ff5" } - }, - "relatedAreas": [] + } } - ] - }, - { - "name": "hippocampal formation", + ], + "_": { + "jubrain-ontology_24.json": { + "name": "fusiform gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "temporal lobe", "status": null, "labelIndex": null, "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "limbic lobe", + "status": null, + "children": [ + { + "name": "cingulate gyrus, frontal part", + "status": null, "children": [ { - "name": "Entorhinal Cortex", - "arealabel": "Entorhinal-Cortex", + "name": "Area p24c (pACC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 35, - 159, - 214 - ], "children": [ { - "name": "Entorhinal Cortex - left hemisphere", + "name": "Area p24c (pACC)", + "status": "left hemisphere", + "labelIndex": 28, "rgb": [ - 35, - 159, - 214 - ], - "labelIndex": 60, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -23891483, - -7276972, - -35148896 + 241, + 164, + 195 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7", + "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" } - ] + }, + "_": { + "xml": { + "name": "Area p24c (pACC)", + "id": "232", + "grayvalue": "28" + }, + "dat": { + "colors": "232 241 164 195", + "names": "232 p24c" + } + } }, { - "name": "Entorhinal Cortex - right hemisphere", + "name": "Area p24c (pACC)", + "status": "right hemisphere", + "labelIndex": 28, "rgb": [ - 35, - 159, - 214 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 60, - "children": [], - "position": [ - 21129607, - -4977075, - -34844921 + 241, + 164, + 195 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7", + "filename": "Area p24c (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" - } - }, - "relatedAreas": [] - }, - { - "name": "CA (Hippocampus)", - "arealabel": "CA", - "status": "publicP", - "labelIndex": null, - "relatedAreas": [ - { - "name": "CA1 (Hippocampus)", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c" + "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + } + }, + "_": { + "xml": { + "name": "Area p24c (pACC)", + "id": "232", + "grayvalue": "28" + }, + "dat": { + "colors": "232 241 164 195", + "names": "232 p24c" } } } ], - "synonyms": [], - "rgb": [ - 250, - 191, - 217 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area p24c (pACC)", + "arealabel": "Area-p24c", + "status": "publicP", + "labelIndex": "232", + "doi": "https://doi.org/10.25493/QA7B-JM9", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8b778e42-b3f2-41e2-8295-a6f0e1f20721" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p24c (pACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + } + } + }, + { + "name": "Area 25 (sACC)", + "status": "publicP", "children": [ { - "name": "CA (Hippocampus) - left hemisphere", + "name": "Area 25 (sACC)", + "status": "left hemisphere", + "labelIndex": 86, "rgb": [ - 250, - 191, - 217 - ], - "labelIndex": 191, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -28408447, - -27605379, - -12640617 + 170, + 68, + 220 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f02f274f-5e8f-4c0b-a4c8-eef628a8af01", + "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" + } + }, + "_": { + "xml": { + "name": "Area 25 (sACC)", + "id": "184", + "grayvalue": "86" + }, + "dat": { + "colors": "184 170 68 220", + "names": "184 25" } - ] + } }, { - "name": "CA (Hippocampus) - right hemisphere", + "name": "Area 25 (sACC)", + "status": "right hemisphere", + "labelIndex": 86, "rgb": [ - 250, - 191, - 217 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 191, - "children": [], - "position": [ - 27668137, - -26314056, - -11735266 + 170, + 68, + 220 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f02f274f-5e8f-4c0b-a4c8-eef628a8af01", + "filename": "Area 25 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" } - ] + }, + "_": { + "xml": { + "name": "Area 25 (sACC)", + "id": "184", + "grayvalue": "86" + }, + "dat": { + "colors": "184 170 68 220", + "names": "184 25" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a0d14d3e-bc30-41cf-8b28-540067897f80" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 25 (sACC)", + "arealabel": "Area-25", + "status": "publicP", + "labelIndex": "184", + "doi": "https://doi.org/10.25493/51AM-WN4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/74bc9736-7044-4c72-b7bb-15739ae70e1e" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 25 (sACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9010ef76-accd-4308-9951-f37b6a10f42b" } } }, { - "name": "DG (Hippocampus)", - "arealabel": "DG", + "name": "Area p24ab (pACC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 149, - 55, - 120 - ], "children": [ { - "name": "DG (Hippocampus) - left hemisphere", + "name": "Area p24ab (pACC)", + "status": "left hemisphere", + "labelIndex": 27, "rgb": [ - 149, - 55, - 120 - ], - "labelIndex": 61, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -27551185, - -28070616, - -11281043 + 153, + 195, + 229 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2", + "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" } - ] + }, + "_": { + "xml": { + "name": "Area p24ab (pACC)", + "id": "231", + "grayvalue": "27" + }, + "dat": { + "colors": "231 153 195 229", + "names": "231 p24ab" + } + } }, { - "name": "DG (Hippocampus) - right hemisphere", + "name": "Area p24ab (pACC)", + "status": "right hemisphere", + "labelIndex": 27, "rgb": [ - 149, - 55, - 120 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 61, - "children": [], - "position": [ - 26996134, - -25789948, - -11462629 + 153, + 195, + 229 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2", + "filename": "Area p24ab (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503" } - ] - } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" + } + }, + "_": { + "xml": { + "name": "Area p24ab (pACC)", + "id": "231", + "grayvalue": "27" + }, + "dat": { + "colors": "231 153 195 229", + "names": "231 p24ab" + } + } + } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + "_": { + "jubrain-ontology_24.json": { + "name": "Area p24ab (pACC)", + "arealabel": "Area-p24ab", + "status": "publicP", + "labelIndex": "231", + "doi": "https://doi.org/10.25493/DHXC-2KN", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1acd6cd6-6941-4228-94fa-9da5ce014503" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p24ab (pACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5dbb1035-487c-4f43-b551-ccadcf058340" } - }, - "relatedAreas": [] + } }, { - "name": "Subiculum (Hippocampus)", - "arealabel": "Subiculum", + "name": "Area s32 (sACC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 111, - 125, - 219 - ], "children": [ { - "name": "Subiculum (Hippocampus) - left hemisphere", + "name": "Area s32 (sACC)", + "status": "left hemisphere", + "labelIndex": 102, "rgb": [ - 111, - 125, - 219 - ], - "labelIndex": 192, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -22231264, - -25557482, - -18551904 + 193, + 94, + 250 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b", + "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + } + }, + "_": { + "xml": { + "name": "Area s32 (sACC)", + "id": "46", + "grayvalue": "102" + }, + "dat": { + "colors": "46 193 94 250", + "names": "46 s32" } - ] + } }, { - "name": "Subiculum (Hippocampus) - right hemisphere", + "name": "Area s32 (sACC)", + "status": "right hemisphere", + "labelIndex": 103, "rgb": [ - 111, - 125, - 219 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 192, - "children": [], - "position": [ - 21763286, - -24252804, - -18015846 + 193, + 94, + 250 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b", + "filename": "Area s32 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + } + }, + "_": { + "xml": { + "name": "Area s32 (sACC)", + "id": "46", + "grayvalue": "103" + }, + "dat": { + "colors": "46 193 94 250", + "names": "46 s32" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + "_": { + "jubrain-ontology_24.json": { + "name": "Area s32 (sACC)", + "arealabel": "Area-s32", + "status": "publicP", + "labelIndex": "46", + "doi": "https://doi.org/10.25493/XTRR-172", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/57ac8798-a260-4c9b-8f9c-3e32d1dd3aca" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area s32 (sACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/61b44255-ae3a-4a23-b1bc-7d303a48dbd3" } - }, - "relatedAreas": [] + } }, { - "name": "HATA (Hippocampus)", - "arealabel": "HATA", + "name": "Area 33 (ACC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 137, - 12, - 73 - ], "children": [ { - "name": "HATA (Hippocampus) - left hemisphere", + "name": "Area 33 (ACC)", + "status": "left hemisphere", + "labelIndex": 46, "rgb": [ - 137, - 12, - 73 - ], - "labelIndex": 68, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -14934109, - -11686047, - -20011628 + 51, + 57, + 245 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575", + "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" } - ] + }, + "_": { + "xml": { + "name": "Area 33 (ACC)", + "id": "39", + "grayvalue": "46" + }, + "dat": { + "colors": "39 51 57 245", + "names": "39 33" + } + } }, { - "name": "HATA (Hippocampus) - right hemisphere", + "name": "Area 33 (ACC)", + "status": "right hemisphere", + "labelIndex": 46, "rgb": [ - 137, - 12, - 73 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 68, - "children": [], - "position": [ - 13262963, - -10581481, - -18866667 + 51, + 57, + 245 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575", + "filename": "Area 33 (ACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" } - ] + }, + "_": { + "xml": { + "name": "Area 33 (ACC)", + "id": "39", + "grayvalue": "46" + }, + "dat": { + "colors": "39 51 57 245", + "names": "39 33" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 33 (ACC)", + "arealabel": "Area-33", + "status": "publicP", + "labelIndex": "39", + "doi": "https://doi.org/10.25493/X9QP-C6F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2801b466-fc6e-4079-91da-1f2a5180f76c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 33 (ACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b83a3330-b80e-42a0-b8d2-82f38784aa1d" } - }, - "relatedAreas": [] - } - ] - } - ] - } - ] - } - ] - }, - { - "name": "metencephalon", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "cerebellum", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "cerebellar nuclei", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "globose nucleus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Interposed Nucleus (Cerebellum)", - "arealabel": "Interposed-Nucleus", + "name": "Area p32 (pACC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 170, - 29, - 10 - ], "children": [ { - "name": "Interposed Nucleus (Cerebellum) - left hemisphere", + "name": "Area p32 (pACC)", + "status": "left hemisphere", + "labelIndex": 116, "rgb": [ - 170, - 29, - 10 - ], - "labelIndex": 251, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -9205882, - -57128342, - -32224599 + 87, + 135, + 14 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", + "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "7a326443-3ced-482f-8772-fb948b0f298f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" } - ] + }, + "_": { + "xml": { + "name": "Area p32 (pACC)", + "id": "47", + "grayvalue": "116" + }, + "dat": { + "colors": "47 87 135 14", + "names": "47 p32" + } + } }, { - "name": "Interposed Nucleus (Cerebellum) - right hemisphere", + "name": "Area p32 (pACC)", + "status": "right hemisphere", + "labelIndex": 116, "rgb": [ - 170, - 29, - 10 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 251, - "children": [], - "position": [ - 6034375, - -56068750, - -32600000 + 87, + 135, + 14 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", + "filename": "Area p32 (pACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "7a326443-3ced-482f-8772-fb948b0f298f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" + } + }, + "_": { + "xml": { + "name": "Area p32 (pACC)", + "id": "47", + "grayvalue": "116" + }, + "dat": { + "colors": "47 87 135 14", + "names": "47 p32" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + "_": { + "jubrain-ontology_24.json": { + "name": "Area p32 (pACC)", + "arealabel": "Area-p32", + "status": "publicP", + "labelIndex": "47", + "doi": "https://doi.org/10.25493/3JX0-7E5", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7a326443-3ced-482f-8772-fb948b0f298f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p32 (pACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b09aaa77-f41b-4008-b8b9-f984b0417cf3" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "dentate nucleus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Dorsal Dentate Nucleus (Cerebellum)", - "arealabel": "Dorsal-Dentate-Nucleus", + "name": "Area s24 (sACC)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 89, - 201, - 99 - ], "children": [ { - "name": "Dorsal Dentate Nucleus (Cerebellum) - left hemisphere", + "name": "Area s24 (sACC)", + "status": "left hemisphere", + "labelIndex": 112, "rgb": [ - 89, - 201, - 99 - ], - "labelIndex": 240, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -17069823, - -58618780, - -38297753 + 133, + 34, + 201 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845", + "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" } - ] + }, + "_": { + "xml": { + "name": "Area s24 (sACC)", + "id": "183", + "grayvalue": "112" + }, + "dat": { + "colors": "183 133 34 201", + "names": "183 s24" + } + } }, { - "name": "Dorsal Dentate Nucleus (Cerebellum) - right hemisphere", + "name": "Area s24 (sACC)", + "status": "right hemisphere", + "labelIndex": 112, "rgb": [ - 89, - 201, - 99 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 240, - "children": [], - "position": [ - 13542553, - -60120346, - -37750665 + 133, + 34, + 201 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845", + "filename": "Area s24 (sACC) [v16.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" + } + }, + "_": { + "xml": { + "name": "Area s24 (sACC)", + "id": "183", + "grayvalue": "112" + }, + "dat": { + "colors": "183 133 34 201", + "names": "183 s24" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "58095aef-da69-43d4-887c-009c095cecce" + "_": { + "jubrain-ontology_24.json": { + "name": "Area s24 (sACC)", + "arealabel": "Area-s24", + "status": "publicP", + "labelIndex": "183", + "doi": "https://doi.org/10.25493/HXWM-NRX", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2092649c-7880-4d13-9537-a8f5a71dccf3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area s24 (sACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d4ea6cc5-1e1d-4212-966f-81fed01eb648" } - }, - "relatedAreas": [] - }, - { - "name": "Ventral Dentate Nucleus (Cerebellum)", - "arealabel": "Ventral-Dentate-Nucleus", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cingulate gyrus, frontal part", + "status": null, "labelIndex": null, "synonyms": [], - "rgb": [ - 39, - 129, - 9 - ], + "rgb": null + } + } + }, + { + "name": "hippocampal formation", + "status": null, + "children": [ + { + "name": "HATA (Hippocampus)", + "status": "publicP", "children": [ { - "name": "Ventral Dentate Nucleus (Cerebellum) - left hemisphere", + "name": "HATA (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 63, "rgb": [ - 39, - 129, - 9 - ], - "labelIndex": 241, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -13748954, - -58276151, - -31782427 + 137, + 12, + 73 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f", + "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + } + }, + "_": { + "xml": { + "name": "HATA (Hippocampus)", + "id": "68", + "grayvalue": "63" + }, + "dat": { + "colors": "68 137 12 73", + "names": "68 HATA" } - ] + } }, { - "name": "Ventral Dentate Nucleus (Cerebellum) - right hemisphere", + "name": "HATA (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 63, "rgb": [ - 39, - 129, - 9 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 241, - "children": [], - "position": [ - 10255877, - -57747740, - -32527125 + 137, + 12, + 73 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f", + "filename": "HATA (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + } + }, + "_": { + "xml": { + "name": "HATA (Hippocampus)", + "id": "68", + "grayvalue": "63" + }, + "dat": { + "colors": "68 137 12 73", + "names": "68 HATA" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" + "_": { + "jubrain-ontology_24.json": { + "name": "HATA (Hippocampus)", + "arealabel": "HATA", + "status": "publicP", + "labelIndex": "68", + "doi": "https://doi.org/10.25493/M1XP-VSQ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/4225fb8e-b9b4-456a-961e-9db90acac575" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "HATA (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "fastigial nucleus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Fastigial Nucleus (Cerebellum)", - "arealabel": "Fastigial-Nucleus", + "name": "Entorhinal Cortex", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 200, - 100, - 10 - ], "children": [ { - "name": "Fastigial Nucleus (Cerebellum) - left hemisphere", + "name": "Entorhinal Cortex", + "status": "left hemisphere", + "labelIndex": 51, "rgb": [ - 200, - 100, - 10 - ], - "labelIndex": 219, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -4666667, - -54963333, - -30763333 + 234, + 239, + 14 ], + "ngId": "ICBM152_V24_LEFT_NG", "originDatasets": [ { - "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb", + "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7" } - ] - }, - { - "name": "Fastigial Nucleus (Cerebellum) - right hemisphere", - "rgb": [ - 200, - 100, - 10 - ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 219, - "children": [], - "position": [ - 1261658, - -54932642, - -30598446 ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" + } + }, + "_": { + "xml": { + "name": "Entorhinal Cortex", + "id": "60", + "grayvalue": "51" + }, + "dat": { + "colors": "60 234 239 14", + "names": "60 EC" + } + } + }, + { + "name": "Entorhinal Cortex", + "status": "right hemisphere", + "labelIndex": 51, + "rgb": [ + 234, + 239, + 14 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Entorhinal Cortex [v11.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" + } + }, + "_": { + "xml": { + "name": "Entorhinal Cortex", + "id": "60", + "grayvalue": "51" + }, + "dat": { + "colors": "60 234 239 14", + "names": "60 EC" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Entorhinal Cortex", + "arealabel": "Entorhinal-Cortex", + "status": "publicP", + "labelIndex": "60", + "doi": "https://doi.org/10.25493/KNXY-B1Z", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f251d71c-32ac-489d-b96d-fe5e1297fcb7" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Entorhinal Cortex", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/030827d4-e0d1-4406-b71f-3f58dc2f9cca" + } + } + }, + { + "name": "CA3 (Hippocampus)", + "status": "publicP", + "children": [ + { + "name": "CA3 (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 88, + "rgb": [ + 39, + 0, + 250 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "CA3 (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "73d8e689-9485-4796-b2b2-47181fc45323" + } + }, + "_": { + "xml": { + "name": "CA3 (Hippocampus)", + "id": "59", + "grayvalue": "88" + }, + "dat": { + "colors": "59 39 0 250", + "names": "59 CA3" + } + } + }, + { + "name": "CA3 (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 87, + "rgb": [ + 39, + 0, + 250 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "CA3 (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "73d8e689-9485-4796-b2b2-47181fc45323" + } + }, + "_": { + "xml": { + "name": "CA3 (Hippocampus)", + "id": "59", + "grayvalue": "87" + }, + "dat": { + "colors": "59 39 0 250", + "names": "59 CA3" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "CA3 (Hippocampus)", + "arealabel": "CA3", + "status": "publicP", + "labelIndex": "59", + "doi": "https://doi.org/10.25493/C546-GS0", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/72f4d9d3-6a14-4b68-8924-bcc01a977f07" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CA3 (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/73d8e689-9485-4796-b2b2-47181fc45323" + } + } + }, + { + "name": "CA1 (Hippocampus)", + "status": "publicP", + "children": [ + { + "name": "CA1 (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 55, + "rgb": [ + 250, + 89, + 0 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "CA1 (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c" + } + }, + "_": { + "xml": { + "name": "CA1 (Hippocampus)", + "id": "66", + "grayvalue": "55" + }, + "dat": { + "colors": "66 250 89 0", + "names": "66 CA1" + } + } + }, + { + "name": "CA1 (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 54, + "rgb": [ + 250, + 89, + 0 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "CA1 (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c" + } + }, + "_": { + "xml": { + "name": "CA1 (Hippocampus)", + "id": "66", + "grayvalue": "54" + }, + "dat": { + "colors": "66 250 89 0", + "names": "66 CA1" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "CA1 (Hippocampus)", + "arealabel": "CA1", + "status": "publicP", + "labelIndex": "66", + "doi": "https://doi.org/10.25493/4A6X-6F0", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/effec48c-edf6-4be4-9e0e-75c57480d53c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CA1 (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/bfc0beb7-310c-4c57-b810-2adc464bd02c" + } + } + }, + { + "name": "CA2 (Hippocampus)", + "status": "publicP", + "children": [ + { + "name": "CA2 (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 49, + "rgb": [ + 0, + 250, + 98 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "CA2 (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "159b16ee-2451-44d6-81cf-871d04755da4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd" + } + }, + "_": { + "xml": { + "name": "CA2 (Hippocampus)", + "id": "58", + "grayvalue": "49" + }, + "dat": { + "colors": "58 0 250 98", + "names": "58 CA2" + } + } + }, + { + "name": "CA2 (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 49, + "rgb": [ + 0, + 250, + 98 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "CA2 (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "159b16ee-2451-44d6-81cf-871d04755da4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd" + } + }, + "_": { + "xml": { + "name": "CA2 (Hippocampus)", + "id": "58", + "grayvalue": "49" + }, + "dat": { + "colors": "58 0 250 98", + "names": "58 CA2" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "CA2 (Hippocampus)", + "arealabel": "CA2", + "status": "publicP", + "labelIndex": "58", + "doi": "https://doi.org/10.25493/46G6-T33", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/159b16ee-2451-44d6-81cf-871d04755da4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CA2 (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cf4b3fad-2d45-458b-8bc7-1095983ed1dd" + } + } + }, + { + "name": "DG (Hippocampus)", + "status": "publicP", + "children": [ + { + "name": "DG (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 21, + "rgb": [ + 0, + 149, + 8 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + } + }, + "_": { + "xml": { + "name": "DG (Hippocampus)", + "id": "61", + "grayvalue": "21" + }, + "dat": { + "colors": "61 0 149 8", + "names": "61 DG" + } + } + }, + { + "name": "DG (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 21, + "rgb": [ + 0, + 149, + 8 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "DG (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + } + }, + "_": { + "xml": { + "name": "DG (Hippocampus)", + "id": "61", + "grayvalue": "21" + }, + "dat": { + "colors": "61 0 149 8", + "names": "61 DG" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "DG (Hippocampus)", + "arealabel": "DG", + "status": "publicP", + "labelIndex": "61", + "doi": "https://doi.org/10.25493/M8JP-XQT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/677c84c3-56b2-4671-bc63-15d3dda730a2" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "DG (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/0bea7e03-bfb2-4907-9d45-db9071ce627d" + } + } + }, + { + "name": "Subiculum (Hippocampus)", + "status": "publicP", + "children": [ + { + "name": "Subiculum (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 83, + "rgb": [ + 255, + 10, + 10 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + } + }, + "_": { + "xml": { + "name": "Subiculum (Hippocampus)", + "id": "192", + "grayvalue": "83" + }, + "dat": { + "colors": "192 255 10 10", + "names": "192 Subc" + } + } + }, + { + "name": "Subiculum (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 84, + "rgb": [ + 255, + 10, + 10 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Subiculum (Hippocampus) [v11.1, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + } + }, + "_": { + "xml": { + "name": "Subiculum (Hippocampus)", + "id": "192", + "grayvalue": "84" + }, + "dat": { + "colors": "192 255 10 10", + "names": "192 Subc" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Subiculum (Hippocampus)", + "arealabel": "Subiculum", + "status": "publicP", + "labelIndex": "192", + "doi": "https://doi.org/10.25493/QKJH-F45", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1153f14e-100f-477e-bf95-89fb0af6d80b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Subiculum (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7e2dab4c-a140-440d-a322-c1679adef2d4" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "hippocampal formation", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "cingulate gyrus, retrosplenial part ", + "status": null, + "children": [ + { + "name": "Area a30 (retrosplenial)", + "status": "publicDOI", + "children": [ + { + "name": "Area a30 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 101, + "rgb": [ + 0, + 0, + 155 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area a30 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "810d6b90ec933e92f772c05d950407ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa84bdc8-fa61-485d-aa3a-31a9dd51f0c1" + } + }, + "_": { + "xml": { + "name": "Area a30 (retrosplenial)", + "id": "354", + "grayvalue": "101" + }, + "dat": { + "colors": "354 0 0 155", + "names": "354 t30" + } + } + }, + { + "name": "Area a30 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 101, + "rgb": [ + 0, + 0, + 155 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area a30 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "810d6b90ec933e92f772c05d950407ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa84bdc8-fa61-485d-aa3a-31a9dd51f0c1" + } + }, + "_": { + "xml": { + "name": "Area a30 (retrosplenial)", + "id": "354", + "grayvalue": "101" + }, + "dat": { + "colors": "354 0 0 155", + "names": "354 t30" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area a30 (retrosplenial)", + "arealabel": "Area-a30", + "status": "publicDOI", + "labelIndex": "354", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area a30 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/fa84bdc8-fa61-485d-aa3a-31a9dd51f0c1" + } + } + }, + { + "name": "Area p30 (retrosplenial)", + "status": "publicDOI", + "children": [ + { + "name": "Area p30 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 99, + "rgb": [ + 176, + 101, + 55 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area p30 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "6b5702a3fb38ad26e4484f69a6aab8e5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4b3c152d-5b24-45d2-ae62-d09dba9cc4d8" + } + }, + "_": { + "xml": { + "name": "Area p30 (retrosplenial)", + "id": "269", + "grayvalue": "99" + }, + "dat": { + "colors": "269 176 101 55", + "names": "269 p30" + } + } + }, + { + "name": "Area p30 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 99, + "rgb": [ + 176, + 101, + 55 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area p30 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "6b5702a3fb38ad26e4484f69a6aab8e5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4b3c152d-5b24-45d2-ae62-d09dba9cc4d8" + } + }, + "_": { + "xml": { + "name": "Area p30 (retrosplenial)", + "id": "269", + "grayvalue": "99" + }, + "dat": { + "colors": "269 176 101 55", + "names": "269 p30" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area p30 (retrosplenial)", + "arealabel": "Area-p30", + "status": "publicDOI", + "labelIndex": "269", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p30 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/4b3c152d-5b24-45d2-ae62-d09dba9cc4d8" + } + } + }, + { + "name": "Area i30 (retrosplenial)", + "status": "publicDOI", + "children": [ + { + "name": "Area i30 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 98, + "rgb": [ + 61, + 39, + 207 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area i30 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "5a38548adb911bb6b28d36cef8eb76ab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9658a994-02c9-4f6f-af94-05c21994289e" + } + }, + "_": { + "xml": { + "name": "Area i30 (retrosplenial)", + "id": "267", + "grayvalue": "98" + }, + "dat": { + "colors": "267 61 39 207", + "names": "267 a30" + } + } + }, + { + "name": "Area i30 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 98, + "rgb": [ + 61, + 39, + 207 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area i30 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "5a38548adb911bb6b28d36cef8eb76ab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9658a994-02c9-4f6f-af94-05c21994289e" + } + }, + "_": { + "xml": { + "name": "Area i30 (retrosplenial)", + "id": "267", + "grayvalue": "98" + }, + "dat": { + "colors": "267 61 39 207", + "names": "267 a30" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area i30 (retrosplenial)", + "arealabel": "Area-i30", + "status": "publicDOI", + "labelIndex": "267", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area i30 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9658a994-02c9-4f6f-af94-05c21994289e" + } + } + }, + { + "name": "Area a29 (retrosplenial)", + "status": "publicDOI", + "children": [ + { + "name": "Area a29 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 67, + "rgb": [ + 255, + 0, + 0 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area a29 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "da8e389be34bced1bc5f95757f76f4a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2f58dd0e-d54c-434b-b394-10e69fcfb062" + } + }, + "_": { + "xml": { + "name": "Area a29 (retrosplenial)", + "id": "353", + "grayvalue": "67" + }, + "dat": { + "colors": "353 255 0 0", + "names": "353 t29" + } + } + }, + { + "name": "Area a29 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 67, + "rgb": [ + 255, + 0, + 0 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area a29 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "da8e389be34bced1bc5f95757f76f4a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2f58dd0e-d54c-434b-b394-10e69fcfb062" + } + }, + "_": { + "xml": { + "name": "Area a29 (retrosplenial)", + "id": "353", + "grayvalue": "67" + }, + "dat": { + "colors": "353 255 0 0", + "names": "353 t29" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area a29 (retrosplenial)", + "arealabel": "Area-a29", + "status": "publicDOI", + "labelIndex": "353", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area a29 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/2f58dd0e-d54c-434b-b394-10e69fcfb062" + } + } + }, + { + "name": "Area i29 (retrosplenial)", + "status": "publicDOI", + "children": [ + { + "name": "Area i29 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 119, + "rgb": [ + 216, + 143, + 142 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area i29 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "b11285b3b220c155d20f140d6f936bd7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b0538235-eea5-4ede-87cc-8d5012df5046" + } + }, + "_": { + "xml": { + "name": "Area i29 (retrosplenial)", + "id": "265", + "grayvalue": "119" + }, + "dat": { + "colors": "265 216 143 142", + "names": "265 a29" + } + } + }, + { + "name": "Area i29 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 119, + "rgb": [ + 216, + 143, + 142 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area i29 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "b11285b3b220c155d20f140d6f936bd7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b0538235-eea5-4ede-87cc-8d5012df5046" + } + }, + "_": { + "xml": { + "name": "Area i29 (retrosplenial)", + "id": "265", + "grayvalue": "119" + }, + "dat": { + "colors": "265 216 143 142", + "names": "265 a29" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area i29 (retrosplenial)", + "arealabel": "Area-i29", + "status": "publicDOI", + "labelIndex": "265", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area i29 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b0538235-eea5-4ede-87cc-8d5012df5046" + } + } + }, + { + "name": "Area p29 (retrosplenial)", + "status": "publicDOI", + "children": [ + { + "name": "Area p29 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 85, + "rgb": [ + 204, + 97, + 221 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area p29 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "2778c8fce65ff8f69253f0ed55122c1c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cd3483e4-2f66-49e8-a590-1722560f285a" + } + }, + "_": { + "xml": { + "name": "Area p29 (retrosplenial)", + "id": "268", + "grayvalue": "85" + }, + "dat": { + "colors": "268 204 97 221", + "names": "268 p29" + } + } + }, + { + "name": "Area p29 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 85, + "rgb": [ + 204, + 97, + 221 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area p29 (retrosplenial) [v11.0, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "2778c8fce65ff8f69253f0ed55122c1c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cd3483e4-2f66-49e8-a590-1722560f285a" + } + }, + "_": { + "xml": { + "name": "Area p29 (retrosplenial)", + "id": "268", + "grayvalue": "85" + }, + "dat": { + "colors": "268 204 97 221", + "names": "268 p29" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area p29 (retrosplenial)", + "arealabel": "Area-p29", + "status": "publicDOI", + "labelIndex": "268", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p29 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cd3483e4-2f66-49e8-a590-1722560f285a" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cingulate gyrus, retrosplenial part ", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "limbic lobe", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebral cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "telencephalon", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "metencephalon", + "status": null, + "children": [ + { + "name": "cerebellum", + "status": null, + "children": [ + { + "name": "cerebellar nuclei", + "status": null, + "children": [ + { + "name": "globose nucleus", + "status": null, + "children": [ + { + "name": "Interposed Nucleus (Cerebellum)", + "status": "publicP", + "children": [ + { + "name": "Interposed Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 109, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + } + }, + "_": { + "xml": { + "name": "Interposed Nucleus (Cerebellum)", + "id": "251", + "grayvalue": "109" + }, + "dat": { + "colors": false, + "names": false + } + } + }, + { + "name": "Interposed Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 109, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb", + "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + } + }, + "_": { + "xml": { + "name": "Interposed Nucleus (Cerebellum)", + "id": "251", + "grayvalue": "109" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" + "_": { + "jubrain-ontology_24.json": { + "name": "Interposed Nucleus (Cerebellum)", + "arealabel": "Interposed-Nucleus", + "status": "publicP", + "labelIndex": "251", + "doi": "https://doi.org/10.25493/8PTB-JDH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/658a7f71-1b94-4f4a-8f15-726043bbb52a" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Interposed Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/85e7bb13-4b73-4f6f-8222-3adb7b800788" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "globose nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "emboliform nucleus", + "name": "dentate nucleus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Interposed Nucleus (Cerebellum)", - "arealabel": "Interposed-Nucleus", + "name": "Dorsal Dentate Nucleus (Cerebellum)", "status": "publicP", - "labelIndex": null, - "synonyms": [], - "rgb": [ - 170, - 29, - 10 + "children": [ + { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 16, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "58095aef-da69-43d4-887c-009c095cecce" + } + }, + "_": { + "xml": { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "id": "240", + "grayvalue": "16" + }, + "dat": { + "colors": false, + "names": false + } + } + }, + { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 15, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "58095aef-da69-43d4-887c-009c095cecce" + } + }, + "_": { + "xml": { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "id": "240", + "grayvalue": "15" + }, + "dat": { + "colors": false, + "names": false + } + } + } ], + "_": { + "jubrain-ontology_24.json": { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "arealabel": "Dorsal-Dentate-Nucleus", + "status": "publicP", + "labelIndex": "240", + "doi": "https://doi.org/10.25493/M5QG-SHH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/870cdd4a-fdb4-4d70-9c3d-d459a122c845" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/58095aef-da69-43d4-887c-009c095cecce" + } + } + }, + { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "status": "publicP", "children": [ { - "name": "Interposed Nucleus (Cerebellum) - left hemisphere", + "name": "Ventral Dentate Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 61, "rgb": [ - 170, - 29, - 10 + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f" + } ], - "labelIndex": 251, - "ngId": "jubrain mni152 v18 left", - "children": [], - "position": [ - -9205882, - -57128342, - -32224599 + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" + } + }, + "_": { + "xml": { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "id": "241", + "grayvalue": "61" + }, + "dat": { + "colors": false, + "names": false + } + } + }, + { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 61, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", + "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]" + "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" } - ] + }, + "_": { + "xml": { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "id": "241", + "grayvalue": "61" + }, + "dat": { + "colors": false, + "names": false + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "arealabel": "Ventral-Dentate-Nucleus", + "status": "publicP", + "labelIndex": "241", + "doi": "https://doi.org/10.25493/FQE5-5QR", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d3e0ae99-49f4-4bb1-a394-c9c12016ed2f" }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Ventral Dentate Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/57282342-5a75-4e07-bcdc-2d368c517b71" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dentate nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "fastigial nucleus", + "status": null, + "children": [ + { + "name": "Fastigial Nucleus (Cerebellum)", + "status": "publicP", + "children": [ { - "name": "Interposed Nucleus (Cerebellum) - right hemisphere", + "name": "Fastigial Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 103, "rgb": [ - 170, - 29, - 10 + 200, + 200, + 200 + ], + "ngId": "ICBM152_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb" + } ], - "ngId": "jubrain mni152 v18 right", - "labelIndex": 251, - "children": [], - "position": [ - 6034375, - -56068750, - -32600000 + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" + } + }, + "_": { + "xml": { + "name": "Fastigial Nucleus (Cerebellum)", + "id": "219", + "grayvalue": "103" + }, + "dat": { + "colors": false, + "names": false + } + } + }, + { + "name": "Fastigial Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 102, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "ICBM152_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", + "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]" + "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" } - ] + }, + "_": { + "xml": { + "name": "Fastigial Nucleus (Cerebellum)", + "id": "219", + "grayvalue": "102" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + "_": { + "jubrain-ontology_24.json": { + "name": "Fastigial Nucleus (Cerebellum)", + "arealabel": "Fastigial-Nucleus", + "status": "publicP", + "labelIndex": "219", + "doi": "https://doi.org/10.25493/3YJ9-S6G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/dec5c207-c0d9-4f25-a333-1db039c570cb" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Fastigial Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e8abfe3d-8b64-45c2-8853-314d82873273" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "fastigial nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "emboliform nucleus", + "status": null, + "children": [ + { + "name": "Interposed Nucleus (Cerebellum)", + "status": "publicP", + "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "Interposed Nucleus (Cerebellum)", + "arealabel": "Interposed-Nucleus", + "status": "publicP", + "labelIndex": "251", + "doi": "https://doi.org/10.25493/8PTB-JDH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/658a7f71-1b94-4f4a-8f15-726043bbb52a" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "emboliform nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebellar nuclei", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebellum", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "metencephalon", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "_", + "children": [ + { + "name": "GapMap Frontal-I (GapMap)", + "status": "left hemisphere", + "labelIndex": 13, + "ngId": "ICBM152_V24_LEFT_NG", + "rgb": [ + 186, + 255, + 25 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-I (GapMap) [v9.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-I (GapMap)", + "id": "500", + "grayvalue": "13" + }, + "dat": { + "colors": "500 186 255 25", + "names": "500 GapMap-Frontal-I" + } + } + }, + { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "status": "left hemisphere", + "labelIndex": 32, + "ngId": "ICBM152_V24_LEFT_NG", + "rgb": [ + 104, + 161, + 93 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Occipital (GapMap) [v9.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f3ae17b7-f994-4161-ba60-46a971610167" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "id": "504", + "grayvalue": "32" + }, + "dat": { + "colors": "504 104 161 93", + "names": "504 GapMap-Frontal-to-Occipital" + } + } + }, + { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "status": "left hemisphere", + "labelIndex": 60, + "ngId": "ICBM152_V24_LEFT_NG", + "rgb": [ + 76, + 90, + 161 + ], + "originDatasets": [ + { + "filename": "GapMap Temporal-to-Parietal (GapMap) [v9.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18" + } + ], + "_": { + "xml": { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "id": "503", + "grayvalue": "60" + }, + "dat": { + "colors": "503 76 90 161", + "names": "503 GapMap-Temporal-to-Parietal" + } + } + }, + { + "name": "GapMap Frontal-II (GapMap)", + "status": "left hemisphere", + "labelIndex": 90, + "ngId": "ICBM152_V24_LEFT_NG", + "rgb": [ + 255, + 135, + 15 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-II (GapMap) [v9.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-II (GapMap)", + "id": "501", + "grayvalue": "90" + }, + "dat": { + "colors": "501 255 135 15", + "names": "501 GapMap-Frontal-II" + } + } + }, + { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "status": "left hemisphere", + "labelIndex": 97, + "ngId": "ICBM152_V24_LEFT_NG", + "rgb": [ + 161, + 24, + 74 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Temporal (GapMap) [v9.2, ICBM 2009c Asymmetric, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "id": "502", + "grayvalue": "97" + }, + "dat": { + "colors": "502 161 24 74", + "names": "502 GapMap-Frontal-to-Temporal" + } + } + }, + { + "name": "GapMap Frontal-I (GapMap)", + "status": "right hemisphere", + "labelIndex": 13, + "ngId": "ICBM152_V24_RIGHT_NG", + "rgb": [ + 186, + 255, + 25 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-I (GapMap) [v9.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-I (GapMap)", + "id": "500", + "grayvalue": "13" + }, + "dat": { + "colors": "500 186 255 25", + "names": "500 GapMap-Frontal-I" + } + } + }, + { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "status": "right hemisphere", + "labelIndex": 32, + "ngId": "ICBM152_V24_RIGHT_NG", + "rgb": [ + 104, + 161, + 93 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Occipital (GapMap) [v9.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f3ae17b7-f994-4161-ba60-46a971610167" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "id": "504", + "grayvalue": "32" + }, + "dat": { + "colors": "504 104 161 93", + "names": "504 GapMap-Frontal-to-Occipital" + } + } + }, + { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "status": "right hemisphere", + "labelIndex": 60, + "ngId": "ICBM152_V24_RIGHT_NG", + "rgb": [ + 76, + 90, + 161 + ], + "originDatasets": [ + { + "filename": "GapMap Temporal-to-Parietal (GapMap) [v9.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18" + } + ], + "_": { + "xml": { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "id": "503", + "grayvalue": "60" + }, + "dat": { + "colors": "503 76 90 161", + "names": "503 GapMap-Temporal-to-Parietal" + } + } + }, + { + "name": "GapMap Frontal-II (GapMap)", + "status": "right hemisphere", + "labelIndex": 90, + "ngId": "ICBM152_V24_RIGHT_NG", + "rgb": [ + 255, + 135, + 15 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-II (GapMap) [v9.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-II (GapMap)", + "id": "501", + "grayvalue": "90" + }, + "dat": { + "colors": "501 255 135 15", + "names": "501 GapMap-Frontal-II" + } + } + }, + { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "status": "right hemisphere", + "labelIndex": 96, + "ngId": "ICBM152_V24_RIGHT_NG", + "rgb": [ + 161, + 24, + 74 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Temporal (GapMap) [v9.2, ICBM 2009c Asymmetric, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "id": "502", + "grayvalue": "96" + }, + "dat": { + "colors": "502 161 24 74", + "names": "502 GapMap-Frontal-to-Temporal" + } + } } ] } - ] + ], + "_": { + "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201002_JulichBrain-V2_4-ICBM152_ontology/src/5206d759e7ed4adc4a35336519030de5605ca304/output/nehuba-ui/julich-brain-v2_4-icbm152.json" + } },{ "@id": "juelich/iav/atlas/v1.0.0/5", "ngId": "fibre bundle long", diff --git a/src/res/ext/MNI152NehubaConfig.json b/src/res/ext/MNI152NehubaConfig.json index e8e145cf7f80374435b170d71915dc4cccc5faae..b155b9172f98d720ddc07f7cb46e614044c42057 100644 --- a/src/res/ext/MNI152NehubaConfig.json +++ b/src/res/ext/MNI152NehubaConfig.json @@ -95,7 +95,7 @@ }, "jubrain mni152 v18 left": { "type": "segmentation", - "visible": true, + "visible": false, "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/18/icbm152casym/left", "transform": [ [ @@ -126,7 +126,7 @@ }, "jubrain mni152 v18 right": { "type": "segmentation", - "visible": true, + "visible": false, "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/18/icbm152casym/right", "transform": [ [ @@ -155,6 +155,136 @@ ] ] }, + "julich brain mni152 v22 left": { + "type": "segmentation", + "visible": false, + "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/data-repo/20200807_julich_brain_v2_mni152_left/precomputed", + "transform": [ + [ + 1, + 0, + 0, + -96500000 + ], + [ + 0, + 1, + 0, + -132500000 + ], + [ + 0, + 0, + 1, + -78500000 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "julich brain mni152 v22 right": { + "type": "segmentation", + "visible": false, + "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/data-repo/20200807_julich_brain_v2_mni152_right/precomputed", + "transform": [ + [ + 1, + 0, + 0, + -96500000 + ], + [ + 0, + 1, + 0, + -132500000 + ], + [ + 0, + 0, + 1, + -78500000 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "ICBM152_V24_LEFT_NG": { + "type": "segmentation", + "visible": true, + "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201002_JulichBrain-V2_4-ICBM152_MPM_mesh/precomputed/left", + "transform": [ + [ + 1, + 0, + 0, + -96500000 + ], + [ + 0, + 1, + 0, + -132500000 + ], + [ + 0, + 0, + 1, + -78500000 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "_":{ + "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201002_JulichBrain-V2_4-ICBM152_MPM_mesh/src/a282b9077713c0a0fe8abd1cf695bd3490cf9fbb/output/nehuba-ui/left_config.json" + } + }, + "ICBM152_V24_RIGHT_NG": { + "type": "segmentation", + "visible": true, + "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201002_JulichBrain-V2_4-ICBM152_MPM_mesh/precomputed/right", + "transform": [ + [ + 1, + 0, + 0, + -96500000 + ], + [ + 0, + 1, + 0, + -132500000 + ], + [ + 0, + 0, + 1, + -78500000 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "_": { + "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201002_JulichBrain-V2_4-ICBM152_MPM_mesh/src/a282b9077713c0a0fe8abd1cf695bd3490cf9fbb/output/nehuba-ui/right_config.json" + } + }, "fibre bundle long": { "type": "segmentation", "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/Fiber_Bundle/long-bundles_maxprob", diff --git a/src/res/ext/colin.json b/src/res/ext/colin.json index 7838324d34f7d9140858c3940775fb57a2d8fd2d..9ca0966cf40a326f0c11f0b675d319d0e9d4c2cf 100644 --- a/src/res/ext/colin.json +++ b/src/res/ext/colin.json @@ -12,7 +12,6 @@ "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579", "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579", "name": "Cytoarchitectonic Maps", - "ngId": "jubrain colin v18 left", "auxillaryMeshIndices": [ 65535 ], @@ -22,11 +21,10 @@ "originDatasets": [ { "kgSchema": "minds/core/dataset/v1.0.0", - "kgId": "4ac9f0bc-560d-47e0-8916-7b24da9bb0ce" + "kgId": "5249afa7-5e04-4ffd-8039-c3a9231f717c" } ], "properties": { - "version": "1.0", "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI Colin 27 as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.", "publications": [ { @@ -47,8516 +45,12555 @@ { "name": "telencephalon", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "cerebral nuclei", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "basal forebrain", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "magnocellular group within septum", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Ch 123 (Basal Forebrain)", - "arealabel": "Ch-123", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/7SEP-P2V", - "synonyms": [], - "rgb": [ - 124, - 233, - 167 - ], "children": [ { - "name": "Ch 123 (Basal Forebrain) - left hemisphere", + "name": "Ch 123 (Basal Forebrain)", + "status": "left hemisphere", + "labelIndex": 76, "rgb": [ - 124, - 233, - 167 + 200, + 200, + 200 ], - "labelIndex": 286, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -2339339, - 4405405, - -8804805 - ] + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + } + }, + "_": { + "xml": { + "name": "Ch 123 (Basal Forebrain)", + "id": "286", + "grayvalue": "76" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "Ch 123 (Basal Forebrain) - right hemisphere", + "name": "Ch 123 (Basal Forebrain)", + "status": "right hemisphere", + "labelIndex": 76, "rgb": [ - 124, - 233, - 167 + 200, + 200, + 200 ], - "ngId": "jubrain colin v18 right", - "labelIndex": 286, - "children": [], - "status": "publicP", - "position": [ - 3240000, - 5153846, - -8347692 - ] + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + } + }, + "_": { + "xml": { + "name": "Ch 123 (Basal Forebrain)", + "id": "286", + "grayvalue": "76" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + "_": { + "jubrain-ontology_24.json": { + "name": "Ch 123 (Basal Forebrain)", + "arealabel": "Ch-123", + "status": "publicP", + "labelIndex": "286", + "doi": "https://doi.org/10.25493/7SEP-P2V", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/instances/Dataset/147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Ch 123 (Basal Forebrain)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/bb111a95-e04c-4987-8254-4af4ed8b0022" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "magnocellular group within septum", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "sublenticular part of basal forebrain", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Ch 4 (Basal Forebrain)", - "arealabel": "Ch-4", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/VZJ5-8WJ", - "synonyms": [], - "rgb": [ - 116, - 243, - 12 - ], "children": [ { - "name": "Ch 4 (Basal Forebrain) - left hemisphere", + "name": "Ch 4 (Basal Forebrain)", + "status": "left hemisphere", + "labelIndex": 12, "rgb": [ - 116, - 243, - 12 - ], - "labelIndex": 264, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -16053628, - -454259, - -12470032 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "791a14c8-b899-414f-b237-27574a4cce7e", + "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]" + "kgId": "791a14c8-b899-414f-b237-27574a4cce7e" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + } + }, + "_": { + "xml": { + "name": "Ch 4 (Basal Forebrain)", + "id": "264", + "grayvalue": "12" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "Ch 4 (Basal Forebrain) - right hemisphere", + "name": "Ch 4 (Basal Forebrain)", + "status": "right hemisphere", + "labelIndex": 12, "rgb": [ - 116, - 243, - 12 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 264, - "children": [], - "status": "publicP", - "position": [ - 17655072, - 263768, - -11539130 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "791a14c8-b899-414f-b237-27574a4cce7e", + "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]" + "kgId": "791a14c8-b899-414f-b237-27574a4cce7e" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + } + }, + "_": { + "xml": { + "name": "Ch 4 (Basal Forebrain)", + "id": "264", + "grayvalue": "12" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + "_": { + "jubrain-ontology_24.json": { + "name": "Ch 4 (Basal Forebrain)", + "arealabel": "Ch-4", + "status": "publicP", + "labelIndex": "264", + "doi": "https://doi.org/10.25493/VZJ5-8WJ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/791a14c8-b899-414f-b237-27574a4cce7e" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Ch 4 (Basal Forebrain)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a5c9d95f-8e7c-4454-91b6-a790387370fc" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "sublenticular part of basal forebrain", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "magnocellular group within horizontal limb of diagnoal band", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Ch 123 (Basal Forebrain)", - "arealabel": "Ch-123", "status": "publicP", + "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "Ch 123 (Basal Forebrain)", + "arealabel": "Ch-123", + "status": "publicP", + "labelIndex": "286", + "doi": "https://doi.org/10.25493/7SEP-P2V", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/instances/Dataset/147aaab9-d5f2-48db-80f3-95adc9e7e8a6" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "magnocellular group within horizontal limb of diagnoal band", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/7SEP-P2V", "synonyms": [], - "rgb": [ - 124, - 233, - 167 - ], - "children": [ - { - "name": "Ch 123 (Basal Forebrain) - left hemisphere", - "rgb": [ - 124, - 233, - 167 - ], - "labelIndex": 286, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -2339339, - 4405405, - -8804805 - ] - }, - { - "name": "Ch 123 (Basal Forebrain) - right hemisphere", - "rgb": [ - 124, - 233, - 167 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 286, - "children": [], - "status": "publicP", - "position": [ - 3240000, - 5153846, - -8347692 - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" - } - }, - "relatedAreas": [] + "rgb": null } - ] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "basal forebrain", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "amygdala", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "laterobasal group", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "LB (Amygdala)", - "arealabel": "LB", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/C3X0-NV3", - "synonyms": [], - "rgb": null, "children": [ { - "name": "LB (Amygdala) - left hemisphere", - "rgb": null, - "labelIndex": 15, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", + "name": "LB (Amygdala)", + "status": "left hemisphere", + "labelIndex": 91, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + } + }, + "_": { + "xml": { + "name": "LB (Amygdala)", + "id": "187", + "grayvalue": "91" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "LB (Amygdala) - right hemisphere", - "rgb": null, - "ngId": "jubrain colin v18 right", - "labelIndex": 15, - "children": [], - "status": "publicP", + "name": "LB (Amygdala)", + "status": "right hemisphere", + "labelIndex": 91, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + } + }, + "_": { + "xml": { + "name": "LB (Amygdala)", + "id": "187", + "grayvalue": "91" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + "_": { + "jubrain-ontology_24.json": { + "name": "LB (Amygdala)", + "arealabel": "LB", + "status": "publicP", + "labelIndex": "187", + "doi": "https://doi.org/10.25493/C3X0-NV3", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/fa4cab6a-1cec-4cec-b481-90aa0cc7d96c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "LB (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/708df0fa-e9a4-4c23-bd85-8957f6d30faf" } - }, - "relatedAreas": [] - }, - { - "name": "LB (Amygdala)", - "arealabel": "LB", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "laterobasal group", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/C3X0-NV3", "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "superficial group", + "status": null, + "children": [ + { + "name": "CM (Amygdala)", + "status": "publicP", "children": [ { - "name": "LB (Amygdala) - left hemisphere", - "rgb": null, - "labelIndex": 11, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", + "name": "CM (Amygdala)", + "status": "left hemisphere", + "labelIndex": 43, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "CM (Amygdala) [v6.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + } + }, + "_": { + "xml": { + "name": "CM (Amygdala)", + "id": "290", + "grayvalue": "43" + }, + "dat": { + "colors": false, + "names": false + } + } }, { - "name": "LB (Amygdala) - right hemisphere", - "rgb": null, - "ngId": "jubrain colin v18 right", - "labelIndex": 11, - "children": [], - "status": "publicP", + "name": "CM (Amygdala)", + "status": "right hemisphere", + "labelIndex": 43, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "CM (Amygdala) [v6.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + } + }, + "_": { + "xml": { + "name": "CM (Amygdala)", + "id": "290", + "grayvalue": "43" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + "_": { + "jubrain-ontology_24.json": { + "name": "CM (Amygdala)", + "arealabel": "CM", + "status": "publicP", + "labelIndex": "290", + "doi": "https://doi.org/10.25493/36FR-C95", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/21ed6af0-5c39-4153-a3b8-8983530436ac" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CM (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7aba8aef-6430-4fa7-ab54-8ecac558faed" } - }, - "relatedAreas": [] + } }, { - "name": "LB (Amygdala)", - "arealabel": "LB", + "name": "SF (Amygdala)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/C3X0-NV3", - "synonyms": [], - "rgb": null, "children": [ { - "name": "LB (Amygdala) - left hemisphere", - "rgb": null, - "labelIndex": 19, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", + "name": "SF (Amygdala)", + "status": "left hemisphere", + "labelIndex": 110, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "SF (Amygdala) [v6.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + } + }, + "_": { + "xml": { + "name": "SF (Amygdala)", + "id": "185", + "grayvalue": "110" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "LB (Amygdala) - right hemisphere", - "rgb": null, - "ngId": "jubrain colin v18 right", - "labelIndex": 19, - "children": [], - "status": "publicP", + "name": "SF (Amygdala)", + "status": "right hemisphere", + "labelIndex": 110, + "rgb": [ + 200, + 200, + 200 + ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "SF (Amygdala) [v6.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + } + }, + "_": { + "xml": { + "name": "SF (Amygdala)", + "id": "185", + "grayvalue": "110" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + "_": { + "jubrain-ontology_24.json": { + "name": "SF (Amygdala)", + "arealabel": "SF", + "status": "publicP", + "labelIndex": "185", + "doi": "https://doi.org/10.25493/WD31-SEA", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/37a6a7d9-5252-4605-a792-6fefe2fde816" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "SF (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/48929163-bf7b-4471-9f14-991c5225eced" } - }, - "relatedAreas": [] - }, - { - "name": "LB (Amygdala)", - "arealabel": "LB", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superficial group", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/C3X0-NV3", "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "fiber masses", + "status": null, + "children": [ + { + "name": "VTM (Amygdala)", + "status": "publicP", "children": [ { - "name": "LB (Amygdala) - left hemisphere", - "rgb": null, - "labelIndex": 13, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -25304803, - -1696429, - -23766626 + "name": "VTM (Amygdala)", + "status": "left hemisphere", + "labelIndex": 80, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "VTM (Amygdala) [v6.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" + } + }, + "_": { + "xml": { + "name": "VTM (Amygdala)", + "id": "228", + "grayvalue": "80" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "LB (Amygdala) - right hemisphere", - "rgb": null, - "ngId": "jubrain colin v18 right", - "labelIndex": 13, - "children": [], - "status": "publicP", - "position": [ - 28015494, - -81343, - -24045836 + "name": "VTM (Amygdala)", + "status": "right hemisphere", + "labelIndex": 81, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c", + "filename": "VTM (Amygdala) [v6.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "LB (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" + } + }, + "_": { + "xml": { + "name": "VTM (Amygdala)", + "id": "228", + "grayvalue": "81" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + "_": { + "jubrain-ontology_24.json": { + "name": "VTM (Amygdala)", + "arealabel": "VTM", + "status": "publicP", + "labelIndex": "228", + "doi": "https://doi.org/10.25493/99HN-XRE", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/9428d48e-f222-4191-96b8-02d3fa6068da" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "VTM (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a964e6e6-8014-41a2-b975-754d75cbb6f2" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "superficial group", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "SF (Amygdala)", - "arealabel": "SF", + "name": "IF (Amygdala)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/WD31-SEA", - "synonyms": [], - "rgb": null, "children": [ { - "name": "SF (Amygdala) - left hemisphere", - "rgb": null, - "labelIndex": 236, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -16044471, - 530048, - -20831731 + "name": "IF (Amygdala)", + "status": "left hemisphere", + "labelIndex": 59, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", + "filename": "IF (Amygdala) [v6.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" + } + }, + "_": { + "xml": { + "name": "IF (Amygdala)", + "id": "237", + "grayvalue": "59" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "SF (Amygdala) - right hemisphere", - "rgb": null, - "ngId": "jubrain colin v18 right", - "labelIndex": 236, - "children": [], - "status": "publicP", - "position": [ - 19382770, - 1539804, - -19413304 + "name": "IF (Amygdala)", + "status": "right hemisphere", + "labelIndex": 59, + "rgb": [ + 200, + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", + "filename": "IF (Amygdala) [v6.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" + } + }, + "_": { + "xml": { + "name": "IF (Amygdala)", + "id": "237", + "grayvalue": "59" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "48929163-bf7b-4471-9f14-991c5225eced" - } - }, - "relatedAreas": [] - }, - { - "name": "SF (Amygdala)", - "arealabel": "SF", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/WD31-SEA", - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "SF (Amygdala) - left hemisphere", - "rgb": null, - "labelIndex": 17, - "ngId": "jubrain colin v18 left", - "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "IF (Amygdala)", + "arealabel": "IF", "status": "publicP", - "originDatasets": [ - { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, Colin 27, left hemisphere]" - } - ] - }, - { - "name": "SF (Amygdala) - right hemisphere", + "labelIndex": "237", + "doi": "https://doi.org/10.25493/GWPR-G6K", + "synonyms": [], "rgb": null, - "ngId": "jubrain colin v18 right", - "labelIndex": 17, - "children": [], - "status": "publicP", - "originDatasets": [ - { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, Colin 27, right hemisphere]" - } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/3acdb92c-68f0-42db-a7af-9dbb69cbea1d" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "IF (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5a1391c8-6056-40e4-a19b-3774df42bd07" } - }, - "relatedAreas": [] + } }, { - "name": "SF (Amygdala)", - "arealabel": "SF", + "name": "MF (Amygdala)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/WD31-SEA", - "synonyms": [], - "rgb": [ - 18, - 168, - 22 - ], "children": [ { - "name": "SF (Amygdala) - left hemisphere", + "name": "MF (Amygdala)", + "status": "left hemisphere", + "labelIndex": 104, "rgb": [ - 18, - 168, - 22 + 200, + 200, + 200 ], - "labelIndex": 186, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", + "filename": "MF (Amygdala) [v6.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" + } + }, + "_": { + "xml": { + "name": "MF (Amygdala)", + "id": "235", + "grayvalue": "104" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "SF (Amygdala) - right hemisphere", + "name": "MF (Amygdala)", + "status": "right hemisphere", + "labelIndex": 104, "rgb": [ - 18, - 168, - 22 + 200, + 200, + 200 ], - "ngId": "jubrain colin v18 right", - "labelIndex": 186, - "children": [], - "status": "publicP", + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816", + "filename": "MF (Amygdala) [v6.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "SF (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" + } + }, + "_": { + "xml": { + "name": "MF (Amygdala)", + "id": "235", + "grayvalue": "104" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + "_": { + "jubrain-ontology_24.json": { + "name": "MF (Amygdala)", + "arealabel": "MF", + "status": "publicP", + "labelIndex": "235", + "doi": "https://doi.org/10.25493/9375-55V", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1ea87428-a211-439f-b258-40fa3e3363c9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "MF (Amygdala)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3741c788-9412-4b8e-9ab4-9ca2d3a715ca" } - }, - "relatedAreas": [] - }, + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "fiber masses", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "centromedial group", + "status": null, + "children": [ { "name": "CM (Amygdala)", - "arealabel": "CM", "status": "publicP", + "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "CM (Amygdala)", + "arealabel": "CM", + "status": "publicP", + "labelIndex": "290", + "doi": "https://doi.org/10.25493/36FR-C95", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/21ed6af0-5c39-4153-a3b8-8983530436ac" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "centromedial group", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/36FR-C95", "synonyms": [], - "rgb": [ - 102, - 180, - 202 - ], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "amygdala", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebral nuclei", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "cerebral cortex", + "status": null, + "children": [ + { + "name": "parietal lobe", + "status": null, + "children": [ + { + "name": "superior parietal lobule", + "status": null, + "children": [ + { + "name": "Area 5L (SPL)", + "status": "publicP", "children": [ { - "name": "CM (Amygdala) - left hemisphere", + "name": "Area 5L (SPL)", + "status": "left hemisphere", + "labelIndex": 95, "rgb": [ - 102, - 180, - 202 + 184, + 185, + 58 ], - "labelIndex": 22, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "Area 5L (SPL) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" + } + }, + "_": { + "xml": { + "name": "Area 5L (SPL)", + "id": "130", + "grayvalue": "95" + }, + "dat": { + "colors": "130 184 185 58", + "names": "130 5l" } - ] + } }, { - "name": "CM (Amygdala) - right hemisphere", + "name": "Area 5L (SPL)", + "status": "right hemisphere", + "labelIndex": 94, "rgb": [ - 102, - 180, - 202 + 184, + 185, + 58 ], - "ngId": "jubrain colin v18 right", - "labelIndex": 22, - "children": [], - "status": "publicP", + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "Area 5L (SPL) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" + } + }, + "_": { + "xml": { + "name": "Area 5L (SPL)", + "id": "130", + "grayvalue": "94" + }, + "dat": { + "colors": "130 184 185 58", + "names": "130 5l" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 5L (SPL)", + "arealabel": "Area-5L", + "status": "publicP", + "labelIndex": "130", + "doi": "https://doi.org/10.25493/C1FQ-2F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1100df93-93f4-4091-bf2e-6eb48a2d56ff" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 5L (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/64555f7f-1b33-4ffe-9853-be41e7a21096" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "fiber masses", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "VTM (Amygdala)", - "arealabel": "VTM", + "name": "Area 7PC (SPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/99HN-XRE", - "synonyms": [], - "rgb": [ - 89, - 178, - 185 - ], "children": [ { - "name": "VTM (Amygdala) - left hemisphere", + "name": "Area 7PC (SPL)", + "status": "left hemisphere", + "labelIndex": 122, "rgb": [ + 252, 89, - 178, - 185 - ], - "labelIndex": 228, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -23377907, - -9837209, - -14848837 + 28 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da", + "filename": "Area 7PC (SPL) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "VTM (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + } + }, + "_": { + "xml": { + "name": "Area 7PC (SPL)", + "id": "132", + "grayvalue": "122" + }, + "dat": { + "colors": "132 252 89 28", + "names": "132 pc1" } - ] + } }, { - "name": "VTM (Amygdala) - right hemisphere", + "name": "Area 7PC (SPL)", + "status": "right hemisphere", + "labelIndex": 122, "rgb": [ + 252, 89, - 178, - 185 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 228, - "children": [], - "status": "publicP", - "position": [ - 25513514, - -8881081, - -15551351 + 28 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da", + "filename": "Area 7PC (SPL) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "VTM (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + } + }, + "_": { + "xml": { + "name": "Area 7PC (SPL)", + "id": "132", + "grayvalue": "122" + }, + "dat": { + "colors": "132 252 89 28", + "names": "132 pc1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 7PC (SPL)", + "arealabel": "Area-7PC", + "status": "publicP", + "labelIndex": "132", + "doi": "https://doi.org/10.25493/Z45N-1T", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8cc9b1dd-caa6-49d5-85f1-1e2e78be3161" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 7PC (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" } - }, - "relatedAreas": [] + } }, { - "name": "IF (Amygdala)", - "arealabel": "IF", + "name": "Area 5M (SPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/GWPR-G6K", - "synonyms": [], - "rgb": [ - 120, - 190, - 129 - ], "children": [ { - "name": "IF (Amygdala) - left hemisphere", + "name": "Area 5M (SPL)", + "status": "left hemisphere", + "labelIndex": 94, "rgb": [ - 120, - 190, - 129 - ], - "labelIndex": 237, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -27588235, - -1431373, - -17460784 + 225, + 245, + 76 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d", + "filename": "Area 5M (SPL) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "IF (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" + } + }, + "_": { + "xml": { + "name": "Area 5M (SPL)", + "id": "131", + "grayvalue": "94" + }, + "dat": { + "colors": "131 225 245 76", + "names": "131 5ma" } - ] + } }, { - "name": "IF (Amygdala) - right hemisphere", + "name": "Area 5M (SPL)", + "status": "right hemisphere", + "labelIndex": 95, "rgb": [ - 120, - 190, - 129 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 237, - "children": [], - "status": "publicP", - "position": [ - 29372549, - -813725, - -16578431 + 225, + 245, + 76 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d", + "filename": "Area 5M (SPL) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "IF (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" + } + }, + "_": { + "xml": { + "name": "Area 5M (SPL)", + "id": "131", + "grayvalue": "95" + }, + "dat": { + "colors": "131 225 245 76", + "names": "131 5ma" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 5M (SPL)", + "arealabel": "Area-5M", + "status": "publicP", + "labelIndex": "131", + "doi": "https://doi.org/10.25493/Y12F-YMU", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/5ddbc06e-b30c-4d44-a4c0-107210a66b4f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 5M (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/abe105cf-2c29-46af-af75-6b46fdb75137" } - }, - "relatedAreas": [] + } }, { - "name": "MF (Amygdala)", - "arealabel": "MF", + "name": "Area 7P (SPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/9375-55V", - "synonyms": [], - "rgb": [ - 190, - 200, - 9 - ], "children": [ { - "name": "MF (Amygdala) - left hemisphere", + "name": "Area 7P (SPL)", + "status": "left hemisphere", + "labelIndex": 34, "rgb": [ - 190, - 200, - 9 - ], - "labelIndex": 235, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -18714286, - -6523810, - -15428571 + 52, + 20, + 106 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9", + "filename": "Area 7P (SPL) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "MF (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + } + }, + "_": { + "xml": { + "name": "Area 7P (SPL)", + "id": "208", + "grayvalue": "34" + }, + "dat": { + "colors": "208 52 20 106", + "names": "208 pl" } - ] + } }, { - "name": "MF (Amygdala) - right hemisphere", + "name": "Area 7P (SPL)", + "status": "right hemisphere", + "labelIndex": 35, "rgb": [ - 190, - 200, - 9 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 235, - "children": [], - "status": "publicP", - "position": [ - 20976744, - -4930233, - -14441860 + 52, + 20, + 106 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9", + "filename": "Area 7P (SPL) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "MF (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + } + }, + "_": { + "xml": { + "name": "Area 7P (SPL)", + "id": "208", + "grayvalue": "35" + }, + "dat": { + "colors": "208 52 20 106", + "names": "208 pl" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 7P (SPL)", + "arealabel": "Area-7P", + "status": "publicP", + "labelIndex": "208", + "doi": "https://doi.org/10.25493/C3HS-8R7", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/5fd792b5-c306-4fb4-8d29-205dc3536476" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 7P (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/af9c4f39-63a4-409f-b306-e5965d639f37" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "centromedial group", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "CM (Amygdala)", - "arealabel": "CM", + "name": "Area 5Ci (SPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/36FR-C95", - "synonyms": [], - "rgb": [ - 89, - 4, - 190 - ], "children": [ { - "name": "CM (Amygdala) - left hemisphere", + "name": "Area 5Ci (SPL)", + "status": "left hemisphere", + "labelIndex": 70, "rgb": [ - 89, - 4, - 190 + 79, + 242, + 146 ], - "labelIndex": 16, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "Area 5Ci (SPL) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + } + }, + "_": { + "xml": { + "name": "Area 5Ci (SPL)", + "id": "136", + "grayvalue": "70" + }, + "dat": { + "colors": "136 79 242 146", + "names": "136 5mb" } - ] + } }, { - "name": "CM (Amygdala) - right hemisphere", + "name": "Area 5Ci (SPL)", + "status": "right hemisphere", + "labelIndex": 70, "rgb": [ - 89, - 4, - 190 + 79, + 242, + 146 ], - "ngId": "jubrain colin v18 right", - "labelIndex": 16, - "children": [], - "status": "publicP", + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "Area 5Ci (SPL) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + } + }, + "_": { + "xml": { + "name": "Area 5Ci (SPL)", + "id": "136", + "grayvalue": "70" + }, + "dat": { + "colors": "136 79 242 146", + "names": "136 5mb" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 5Ci (SPL)", + "arealabel": "Area-5Ci", + "status": "publicP", + "labelIndex": "136", + "doi": "https://doi.org/10.25493/SQVP-GK1", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/instances/Dataset/fe83803d-f6dc-4341-98a0-a5aeccd63651" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 5Ci (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" } - }, - "relatedAreas": [] + } }, { - "name": "CM (Amygdala)", - "arealabel": "CM", + "name": "Area 7A (SPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/36FR-C95", - "synonyms": [], - "rgb": [ - 9, - 120, - 220 - ], "children": [ { - "name": "CM (Amygdala) - left hemisphere", + "name": "Area 7A (SPL)", + "status": "left hemisphere", + "labelIndex": 82, "rgb": [ - 9, - 120, - 220 - ], - "labelIndex": 21, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -21108108, - -3376448, - -13214286 + 38, + 204, + 19 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "Area 7A (SPL) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, Colin 27, left hemisphere]" + "kgId": "f2635688-3894-471f-88db-c065871582de" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" + } + }, + "_": { + "xml": { + "name": "Area 7A (SPL)", + "id": "134", + "grayvalue": "82" + }, + "dat": { + "colors": "134 38 204 19", + "names": "134 pc2" } - ] + } }, { - "name": "CM (Amygdala) - right hemisphere", + "name": "Area 7A (SPL)", + "status": "right hemisphere", + "labelIndex": 82, "rgb": [ - 9, - 120, - 220 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 21, - "children": [], - "status": "publicP", - "position": [ - 23157767, - -2679612, - -12555825 + 38, + 204, + 19 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac", + "filename": "Area 7A (SPL) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CM (Amygdala) [v6.4, Colin 27, right hemisphere]" + "kgId": "f2635688-3894-471f-88db-c065871582de" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" + } + }, + "_": { + "xml": { + "name": "Area 7A (SPL)", + "id": "134", + "grayvalue": "82" + }, + "dat": { + "colors": "134 38 204 19", + "names": "134 pc2" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 7A (SPL)", + "arealabel": "Area-7A", + "status": "publicP", + "labelIndex": "134", + "doi": "https://doi.org/10.25493/7HX2-AJH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f2635688-3894-471f-88db-c065871582de" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 7A (SPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e26e999f-77ad-4934-9569-8290ed05ebda" } - }, - "relatedAreas": [] + } } - ] - } - ] - } - ] - }, - { - "name": "cerebral cortex", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "parietal lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior parietal lobule", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, { - "name": "superior parietal lobule", + "name": "parietal operculum", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 5L (SPL)", - "arealabel": "Area-5L", + "name": "Area OP3 (POperc)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/C1FQ-2F", - "synonyms": [], - "rgb": [ - 184, - 185, - 58 - ], "children": [ { - "name": "Area 5L (SPL) - left hemisphere", + "name": "Area OP3 (POperc)", + "status": "left hemisphere", + "labelIndex": 81, "rgb": [ - 184, - 185, - 58 - ], - "labelIndex": 130, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -18807832, - -47524930, - 66950353 + 58, + 122, + 80 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff", + "filename": "Area OP3 (POperc) [v11.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5L (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" + } + }, + "_": { + "xml": { + "name": "Area OP3 (POperc)", + "id": "75", + "grayvalue": "81" + }, + "dat": { + "colors": "75 58 122 80", + "names": "75 OP3" } - ] + } }, { - "name": "Area 5L (SPL) - right hemisphere", + "name": "Area OP3 (POperc)", + "status": "right hemisphere", + "labelIndex": 80, "rgb": [ - 184, - 185, - 58 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 130, - "children": [], - "status": "publicP", - "position": [ - 12970516, - -51174624, - 70371695 + 58, + 122, + 80 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff", + "filename": "Area OP3 (POperc) [v11.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5L (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" + } + }, + "_": { + "xml": { + "name": "Area OP3 (POperc)", + "id": "75", + "grayvalue": "80" + }, + "dat": { + "colors": "75 58 122 80", + "names": "75 OP3" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP3 (POperc)", + "arealabel": "Area-OP3", + "status": "publicP", + "labelIndex": "75", + "doi": "https://doi.org/10.25493/1Z8F-PX4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/eddb0ef1-21d6-4271-ad36-f6c81ddba642" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP3 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f6f10b01-6c10-42cf-8129-f5aaf307a36b" } - }, - "relatedAreas": [] + } }, { - "name": "Area 7M (SPL)", - "arealabel": "Area-7M", + "name": "Area OP4 (POperc)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F25F-EKW", - "synonyms": [], - "rgb": [ - 205, - 61, - 236 - ], "children": [ { - "name": "Area 7M (SPL) - left hemisphere", + "name": "Area OP4 (POperc)", + "status": "left hemisphere", + "labelIndex": 10, "rgb": [ - 205, - 61, - 236 - ], - "labelIndex": 135, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -777896, - -78103082, - 35256111 + 89, + 80, + 132 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1715e680-a492-49a2-8f54-025aa41819da", + "filename": "Area OP4 (POperc) [v11.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7M (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "55213785-8693-438c-8f6b-7628609b4017" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + } + }, + "_": { + "xml": { + "name": "Area OP4 (POperc)", + "id": "72", + "grayvalue": "10" + }, + "dat": { + "colors": "72 89 80 132", + "names": "72 OP4" } - ] + } }, { - "name": "Area 7M (SPL) - right hemisphere", + "name": "Area OP4 (POperc)", + "status": "right hemisphere", + "labelIndex": 10, "rgb": [ - 205, - 61, - 236 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 135, - "children": [], - "status": "publicP", - "position": [ - 4281250, - -75882812, - 38312500 + 89, + 80, + 132 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1715e680-a492-49a2-8f54-025aa41819da", + "filename": "Area OP4 (POperc) [v11.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7M (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "55213785-8693-438c-8f6b-7628609b4017" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + } + }, + "_": { + "xml": { + "name": "Area OP4 (POperc)", + "id": "72", + "grayvalue": "10" + }, + "dat": { + "colors": "72 89 80 132", + "names": "72 OP4" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP4 (POperc)", + "arealabel": "Area-OP4", + "status": "publicP", + "labelIndex": "72", + "doi": "https://doi.org/10.25493/BVT0-H3U", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/55213785-8693-438c-8f6b-7628609b4017" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP4 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" } - }, - "relatedAreas": [] + } }, { - "name": "Area 7PC (SPL)", - "arealabel": "Area-7PC", + "name": "Area OP2 (POperc)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/Z45N-1T", - "synonyms": [], - "rgb": [ - 252, - 89, - 28 - ], "children": [ { - "name": "Area 7PC (SPL) - left hemisphere", + "name": "Area OP2 (POperc)", + "status": "left hemisphere", + "labelIndex": 15, "rgb": [ - 252, - 89, - 28 - ], - "labelIndex": 132, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -32056266, - -48916454, - 60868713 + 36, + 47, + 221 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161", + "filename": "Area OP2 (POperc) [v11.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7PC (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + } + }, + "_": { + "xml": { + "name": "Area OP2 (POperc)", + "id": "74", + "grayvalue": "15" + }, + "dat": { + "colors": "74 36 47 221", + "names": "74 OP2" + } + } }, { - "name": "Area 7PC (SPL) - right hemisphere", + "name": "Area OP2 (POperc)", + "status": "right hemisphere", + "labelIndex": 16, "rgb": [ - 252, - 89, - 28 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 132, - "children": [], - "status": "publicP", - "position": [ - 30055171, - -49079568, - 61493485 + 36, + 47, + 221 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161", + "filename": "Area OP2 (POperc) [v11.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7PC (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + } + }, + "_": { + "xml": { + "name": "Area OP2 (POperc)", + "id": "74", + "grayvalue": "16" + }, + "dat": { + "colors": "74 36 47 221", + "names": "74 OP2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP2 (POperc)", + "arealabel": "Area-OP2", + "status": "publicP", + "labelIndex": "74", + "doi": "https://doi.org/10.25493/5KBV-36J", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/0a3e9feb-5816-4593-a5c8-ca4b9099f7b8" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP2 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/ab26cefd-f7d6-4442-8020-a6e418e673ff" } - }, - "relatedAreas": [] + } }, { - "name": "Area 5M (SPL)", - "arealabel": "Area-5M", + "name": "Area OP1 (POperc)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/Y12F-YMU", - "synonyms": [], - "rgb": [ - 225, - 245, - 76 - ], "children": [ { - "name": "Area 5M (SPL) - left hemisphere", + "name": "Area OP1 (POperc)", + "status": "left hemisphere", + "labelIndex": 54, "rgb": [ - 225, - 245, - 76 - ], - "labelIndex": 131, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -7527881, - -41962560, - 59221721 + 250, + 182, + 34 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f", + "filename": "Area OP1 (POperc) [v11.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5M (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "402ec28d-0809-4226-91a4-900d9303291b" + } + }, + "_": { + "xml": { + "name": "Area OP1 (POperc)", + "id": "73", + "grayvalue": "54" + }, + "dat": { + "colors": "73 250 182 34", + "names": "73 OP1" } - ] + } }, { - "name": "Area 5M (SPL) - right hemisphere", + "name": "Area OP1 (POperc)", + "status": "right hemisphere", + "labelIndex": 55, "rgb": [ - 225, - 245, - 76 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 131, - "children": [], - "status": "publicP", - "position": [ - 4642562, - -44304959, - 60273140 + 250, + 182, + 34 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f", + "filename": "Area OP1 (POperc) [v11.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5M (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "402ec28d-0809-4226-91a4-900d9303291b" + } + }, + "_": { + "xml": { + "name": "Area OP1 (POperc)", + "id": "73", + "grayvalue": "55" + }, + "dat": { + "colors": "73 250 182 34", + "names": "73 OP1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP1 (POperc)", + "arealabel": "Area-OP1", + "status": "publicP", + "labelIndex": "73", + "doi": "https://doi.org/10.25493/SH37-979", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1802ffb1-6d1a-4c1a-a7d9-170664a98b49" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP1 (POperc)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/402ec28d-0809-4226-91a4-900d9303291b" } - }, - "relatedAreas": [] - }, - { - "name": "Area 7P (SPL)", - "arealabel": "Area-7P", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "parietal operculum", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/C3HS-8R7", "synonyms": [], - "rgb": [ - 52, - 20, - 106 - ], + "rgb": null + } + } + }, + { + "name": "postcentral gyrus", + "status": null, + "children": [ + { + "name": "Area 3b (PostCG)", + "status": "publicP", "children": [ { - "name": "Area 7P (SPL) - left hemisphere", + "name": "Area 3b (PostCG)", + "status": "left hemisphere", + "labelIndex": 2, "rgb": [ - 52, - 20, - 106 - ], - "labelIndex": 208, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -7679310, - -76043295, - 52631801 + 239, + 246, + 155 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476", + "filename": "Area 3b (PostCG) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7P (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + } + }, + "_": { + "xml": { + "name": "Area 3b (PostCG)", + "id": "127", + "grayvalue": "2" + }, + "dat": { + "colors": "127 239 246 155", + "names": "127 3b" } - ] + } }, { - "name": "Area 7P (SPL) - right hemisphere", + "name": "Area 3b (PostCG)", + "status": "right hemisphere", + "labelIndex": 2, "rgb": [ - 52, - 20, - 106 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 208, - "children": [], - "status": "publicP", - "position": [ - 14232037, - -74892094, - 56304919 + 239, + 246, + 155 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476", + "filename": "Area 3b (PostCG) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7P (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + } + }, + "_": { + "xml": { + "name": "Area 3b (PostCG)", + "id": "127", + "grayvalue": "2" + }, + "dat": { + "colors": "127 239 246 155", + "names": "127 3b" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 3b (PostCG)", + "arealabel": "Area-3b", + "status": "publicP", + "labelIndex": "127", + "doi": "https://doi.org/10.25493/2JK3-QXR", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/50ac42dd-5808-459c-882a-dbd98c76999c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 3b (PostCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" } - }, - "relatedAreas": [] + } }, { - "name": "Area 5Ci (SPL)", - "arealabel": "Area-5Ci", + "name": "Area 1 (PostCG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/SQVP-GK1", - "synonyms": [], - "rgb": [ - 79, - 242, - 146 - ], "children": [ { - "name": "Area 5Ci (SPL) - left hemisphere", + "name": "Area 1 (PostCG)", + "status": "left hemisphere", + "labelIndex": 11, "rgb": [ - 79, - 242, - 146 - ], - "labelIndex": 136, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -14033790, - -35828311, - 43857534 + 232, + 185, + 250 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651", + "filename": "Area 1 (PostCG) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5Ci (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" + } + }, + "_": { + "xml": { + "name": "Area 1 (PostCG)", + "id": "125", + "grayvalue": "11" + }, + "dat": { + "colors": "125 232 185 250", + "names": "125 eins" } - ] + } }, { - "name": "Area 5Ci (SPL) - right hemisphere", + "name": "Area 1 (PostCG)", + "status": "right hemisphere", + "labelIndex": 11, "rgb": [ - 79, - 242, - 146 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 136, - "children": [], - "status": "publicP", - "position": [ - 10563961, - -36194957, - 46892989 + 232, + 185, + 250 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651", + "filename": "Area 1 (PostCG) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 5Ci (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" + } + }, + "_": { + "xml": { + "name": "Area 1 (PostCG)", + "id": "125", + "grayvalue": "11" + }, + "dat": { + "colors": "125 232 185 250", + "names": "125 eins" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 1 (PostCG)", + "arealabel": "Area-1", + "status": "publicP", + "labelIndex": "125", + "doi": "https://doi.org/10.25493/THB5-B64", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ce8c8428-02fe-42f8-9a76-d297579b71c9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 1 (PostCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/c9753e82-80ca-4074-a704-9dd2c4c0d58b" } - }, - "relatedAreas": [] + } }, { - "name": "Area 7A (SPL)", - "arealabel": "Area-7A", + "name": "Area 2 (PostCS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/7HX2-AJH", - "synonyms": [], - "rgb": [ - 38, - 204, - 19 - ], "children": [ { - "name": "Area 7A (SPL) - left hemisphere", + "name": "Area 2 (PostCS)", + "status": "left hemisphere", + "labelIndex": 75, "rgb": [ - 38, - 204, - 19 - ], - "labelIndex": 134, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -20856230, - -62269710, - 61643512 + 23, + 13, + 35 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f2635688-3894-471f-88db-c065871582de", + "filename": "Area 2 (PostCS) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7A (SPL) [v8.4, Colin 27, left hemisphere]" + "kgId": "e81716df-d1ab-417b-b69c-3da566aab026" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + } + }, + "_": { + "xml": { + "name": "Area 2 (PostCS)", + "id": "252", + "grayvalue": "75" + }, + "dat": { + "colors": "252 23 13 35", + "names": "252 area2" } - ] + } }, { - "name": "Area 7A (SPL) - right hemisphere", + "name": "Area 2 (PostCS)", + "status": "right hemisphere", + "labelIndex": 75, "rgb": [ - 38, - 204, - 19 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 134, - "children": [], - "status": "publicP", - "position": [ - 20910951, - -62880523, - 62944473 + 23, + 13, + 35 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f2635688-3894-471f-88db-c065871582de", + "filename": "Area 2 (PostCS) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 7A (SPL) [v8.4, Colin 27, right hemisphere]" + "kgId": "e81716df-d1ab-417b-b69c-3da566aab026" } - ] - } - ], - "relatedAreas": [ - { - "name": "Area 7A", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "811f4adb-4a7c-45c1-8034-4afa9edf586a" + "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + } + }, + "_": { + "xml": { + "name": "Area 2 (PostCS)", + "id": "252", + "grayvalue": "75" + }, + "dat": { + "colors": "252 23 13 35", + "names": "252 area2" } } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 2 (PostCS)", + "arealabel": "Area-2", + "status": "publicP", + "labelIndex": "252", + "doi": "https://doi.org/10.25493/QA8F-DD2", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e81716df-d1ab-417b-b69c-3da566aab026" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 2 (PostCS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" } } - } - ] - }, - { - "name": "parietal operculum", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + }, { - "name": "Area OP3 (POperc)", - "arealabel": "Area-OP3", + "name": "Area 3a (PostCG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/1Z8F-PX4", - "synonyms": [], - "rgb": [ - 58, - 122, - 80 - ], "children": [ { - "name": "Area OP3 (POperc) - left hemisphere", + "name": "Area 3a (PostCG)", + "status": "left hemisphere", + "labelIndex": 105, "rgb": [ - 58, - 122, - 80 - ], - "labelIndex": 75, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -40814044, - -13737321, - 17669701 + 187, + 133, + 50 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642", + "filename": "Area 3a (PostCG) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP3 (POperc) [v9.4, Colin 27, left hemisphere]" + "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + } + }, + "_": { + "xml": { + "name": "Area 3a (PostCG)", + "id": "126", + "grayvalue": "105" + }, + "dat": { + "colors": "126 187 133 50", + "names": "126 3a" } - ] + } }, { - "name": "Area OP3 (POperc) - right hemisphere", + "name": "Area 3a (PostCG)", + "status": "right hemisphere", + "labelIndex": 105, "rgb": [ - 58, - 122, - 80 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 75, - "children": [], - "status": "publicP", - "position": [ - 41195980, - -11633166, - 18002513 + 187, + 133, + 50 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642", + "filename": "Area 3a (PostCG) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP3 (POperc) [v9.4, Colin 27, right hemisphere]" + "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + } + }, + "_": { + "xml": { + "name": "Area 3a (PostCG)", + "id": "126", + "grayvalue": "105" + }, + "dat": { + "colors": "126 187 133 50", + "names": "126 3a" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 3a (PostCG)", + "arealabel": "Area-3a", + "status": "publicP", + "labelIndex": "126", + "doi": "https://doi.org/10.25493/C5QQ-EFB", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d2c20dce-122e-4c69-922a-1f33909496cf" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 3a (PostCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/2657ecc1-da69-4a37-9b37-66ae95f9623c" } - }, - "relatedAreas": [] - }, - { - "name": "Area OP4 (POperc)", - "arealabel": "Area-OP4", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "postcentral gyrus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/BVT0-H3U", "synonyms": [], - "rgb": [ - 89, - 80, - 132 - ], + "rgb": null + } + } + }, + { + "name": "inferior parietal lobule", + "status": null, + "children": [ + { + "name": "Area PF (IPL)", + "status": "publicP", "children": [ { - "name": "Area OP4 (POperc) - left hemisphere", + "name": "Area PF (IPL)", + "status": "left hemisphere", + "labelIndex": 4, "rgb": [ - 89, - 80, - 132 - ], - "labelIndex": 72, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -60514139, - -10849614, - 15368038 + 226, + 211, + 61 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "55213785-8693-438c-8f6b-7628609b4017", + "filename": "Area PF (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP4 (POperc) [v9.4, Colin 27, left hemisphere]" + "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" + } + }, + "_": { + "xml": { + "name": "Area PF (IPL)", + "id": "206", + "grayvalue": "4" + }, + "dat": { + "colors": "206 226 211 61", + "names": "206 PF" } - ] + } }, { - "name": "Area OP4 (POperc) - right hemisphere", + "name": "Area PF (IPL)", + "status": "right hemisphere", + "labelIndex": 3, "rgb": [ - 89, - 80, - 132 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 72, - "children": [], - "status": "publicP", - "position": [ - 63398148, - -9211111, - 12780864 + 226, + 211, + 61 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "55213785-8693-438c-8f6b-7628609b4017", + "filename": "Area PF (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP4 (POperc) [v9.4, Colin 27, right hemisphere]" + "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" + } + }, + "_": { + "xml": { + "name": "Area PF (IPL)", + "id": "206", + "grayvalue": "3" + }, + "dat": { + "colors": "206 226 211 61", + "names": "206 PF" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PF (IPL)", + "arealabel": "Area-PF", + "status": "publicP", + "labelIndex": "206", + "doi": "https://doi.org/10.25493/F1TJ-54W", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e1528fe1-a812-44d9-a0ca-f738b0e705e3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PF (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" } - }, - "relatedAreas": [] + } }, { - "name": "Area OP2 (POperc)", - "arealabel": "Area-OP2", + "name": "Area PFcm (IPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/5KBV-36J", - "synonyms": [], - "rgb": [ - 36, - 47, - 221 - ], "children": [ { - "name": "Area OP2 (POperc) - left hemisphere", + "name": "Area PFcm (IPL)", + "status": "left hemisphere", + "labelIndex": 31, "rgb": [ - 36, - 47, - 221 - ], - "labelIndex": 74, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -36355372, - -23452479, - 18938017 + 98, + 128, + 120 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8", + "filename": "Area PFcm (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP2 (POperc) [v9.4, Colin 27, left hemisphere]" + "kgId": "03520da2-e553-4284-84e4-d8b293446cd4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" + } + }, + "_": { + "xml": { + "name": "Area PFcm (IPL)", + "id": "113", + "grayvalue": "31" + }, + "dat": { + "colors": "113 98 128 120", + "names": "113 PFcm" } - ] + } }, { - "name": "Area OP2 (POperc) - right hemisphere", + "name": "Area PFcm (IPL)", + "status": "right hemisphere", + "labelIndex": 31, "rgb": [ - 36, - 47, - 221 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 74, - "children": [], - "status": "publicP", - "position": [ - 35629457, - -21159690, - 18021705 + 98, + 128, + 120 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8", + "filename": "Area PFcm (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP2 (POperc) [v9.4, Colin 27, right hemisphere]" + "kgId": "03520da2-e553-4284-84e4-d8b293446cd4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" + } + }, + "_": { + "xml": { + "name": "Area PFcm (IPL)", + "id": "113", + "grayvalue": "31" + }, + "dat": { + "colors": "113 98 128 120", + "names": "113 PFcm" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFcm (IPL)", + "arealabel": "Area-PFcm", + "status": "publicP", + "labelIndex": "113", + "doi": "https://doi.org/10.25493/8DP8-8HE", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/03520da2-e553-4284-84e4-d8b293446cd4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFcm (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/10502c3a-f20e-44fa-b985-786d6888d4bb" } - }, - "relatedAreas": [] + } }, { - "name": "Area OP1 (POperc)", - "arealabel": "Area-OP1", + "name": "Area PGa (IPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/SH37-979", - "synonyms": [], - "rgb": [ - 250, - 182, - 34 - ], "children": [ { - "name": "Area OP1 (POperc) - left hemisphere", - "rgb": [ - 250, - 182, - 34 - ], + "name": "Area PGa (IPL)", + "status": "left hemisphere", "labelIndex": 73, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -51566527, - -22523828, - 17190240 + "rgb": [ + 42, + 236, + 131 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49", + "filename": "Area PGa (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP1 (POperc) [v9.4, Colin 27, left hemisphere]" + "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" + } + }, + "_": { + "xml": { + "name": "Area PGa (IPL)", + "id": "110", + "grayvalue": "73" + }, + "dat": { + "colors": "110 42 236 131", + "names": "110 PGa" } - ] + } }, { - "name": "Area OP1 (POperc) - right hemisphere", - "rgb": [ - 250, - 182, - 34 - ], - "ngId": "jubrain colin v18 right", + "name": "Area PGa (IPL)", + "status": "right hemisphere", "labelIndex": 73, - "children": [], - "status": "publicP", - "position": [ - 52888430, - -20697107, - 17000826 + "rgb": [ + 42, + 236, + 131 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49", + "filename": "Area PGa (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP1 (POperc) [v9.4, Colin 27, right hemisphere]" + "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "402ec28d-0809-4226-91a4-900d9303291b" - } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "postcentral gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area 3b (PostCG)", - "arealabel": "Area-3b", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/2JK3-QXR", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area 3b", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "74304fe9-452e-4ca3-97a3-8cf3459bb1a0" + "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" + } + }, + "_": { + "xml": { + "name": "Area PGa (IPL)", + "id": "110", + "grayvalue": "73" + }, + "dat": { + "colors": "110 42 236 131", + "names": "110 PGa" } } } ], - "rgb": [ - 239, - 246, - 155 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area PGa (IPL)", + "arealabel": "Area-PGa", + "status": "publicP", + "labelIndex": "110", + "doi": "https://doi.org/10.25493/V5HY-XTS", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/25451957-c246-4a42-99d4-07c88d4e78fc" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PGa (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d7f6c5be-93c6-4a16-8939-4420329d4147" + } + } + }, + { + "name": "Area PFt (IPL)", + "status": "publicP", "children": [ { - "name": "Area 3b (PostCG) - left hemisphere", + "name": "Area PFt (IPL)", + "status": "left hemisphere", + "labelIndex": 25, "rgb": [ - 239, - 246, - 155 - ], - "labelIndex": 127, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -44439219, - -21735041, - 46012387 + 120, + 135, + 232 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c", + "filename": "Area PFt (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3b (PostCG) [v8.4, Colin 27, left hemisphere]" + "kgId": "b5375459-2b03-4c67-a125-25c923180017" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "847cef50-7340-470d-8580-327b4ce9db19" + } + }, + "_": { + "xml": { + "name": "Area PFt (IPL)", + "id": "109", + "grayvalue": "25" + }, + "dat": { + "colors": "109 120 135 232", + "names": "109 PFt" } - ] + } }, { - "name": "Area 3b (PostCG) - right hemisphere", + "name": "Area PFt (IPL)", + "status": "right hemisphere", + "labelIndex": 26, "rgb": [ - 239, - 246, - 155 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 127, - "children": [], - "status": "publicP", - "position": [ - 38765839, - -25096118, - 48227174 + 120, + 135, + 232 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c", + "filename": "Area PFt (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3b (PostCG) [v8.4, Colin 27, right hemisphere]" + "kgId": "b5375459-2b03-4c67-a125-25c923180017" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "847cef50-7340-470d-8580-327b4ce9db19" + } + }, + "_": { + "xml": { + "name": "Area PFt (IPL)", + "id": "109", + "grayvalue": "26" + }, + "dat": { + "colors": "109 120 135 232", + "names": "109 PFt" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFt (IPL)", + "arealabel": "Area-PFt", + "status": "publicP", + "labelIndex": "109", + "doi": "https://doi.org/10.25493/JGM9-ZET", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/b5375459-2b03-4c67-a125-25c923180017" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFt (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/847cef50-7340-470d-8580-327b4ce9db19" } } }, { - "name": "Area 1 (PostCG)", - "arealabel": "Area-1", + "name": "Area PFm (IPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/THB5-B64", - "synonyms": [], - "rgb": [ - 232, - 185, - 250 - ], "children": [ { - "name": "Area 1 (PostCG) - left hemisphere", + "name": "Area PFm (IPL)", + "status": "left hemisphere", + "labelIndex": 89, "rgb": [ - 232, - 185, - 250 - ], - "labelIndex": 125, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -47104485, - -28297920, - 57798046 + 53, + 76, + 145 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9", + "filename": "Area PFm (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 1 (PostCG) [v8.4, Colin 27, left hemisphere]" + "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "411edde9-685f-464b-970c-a929f9a4067c" + } + }, + "_": { + "xml": { + "name": "Area PFm (IPL)", + "id": "112", + "grayvalue": "89" + }, + "dat": { + "colors": "112 53 76 145", + "names": "112 PFm" } - ] + } }, { - "name": "Area 1 (PostCG) - right hemisphere", + "name": "Area PFm (IPL)", + "status": "right hemisphere", + "labelIndex": 89, "rgb": [ - 232, - 185, - 250 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 125, - "children": [], - "status": "publicP", - "position": [ - 48452543, - -27132790, - 56150187 + 53, + 76, + 145 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9", + "filename": "Area PFm (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 1 (PostCG) [v8.4, Colin 27, right hemisphere]" + "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "411edde9-685f-464b-970c-a929f9a4067c" + } + }, + "_": { + "xml": { + "name": "Area PFm (IPL)", + "id": "112", + "grayvalue": "89" + }, + "dat": { + "colors": "112 53 76 145", + "names": "112 PFm" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFm (IPL)", + "arealabel": "Area-PFm", + "status": "publicP", + "labelIndex": "112", + "doi": "https://doi.org/10.25493/TB94-HRK", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFm (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/411edde9-685f-464b-970c-a929f9a4067c" } - }, - "relatedAreas": [] + } }, { - "name": "Area 2 (PostCS)", - "arealabel": "Area-2", + "name": "Area PGp (IPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/QA8F-DD2", - "synonyms": [], - "rgb": [ - 23, - 13, - 35 - ], "children": [ { - "name": "Area 2 (PostCS) - left hemisphere", + "name": "Area PGp (IPL)", + "status": "left hemisphere", + "labelIndex": 22, "rgb": [ - 23, - 13, - 35 - ], - "labelIndex": 252, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -42268059, - -32424512, - 51210202 + 92, + 116, + 83 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e81716df-d1ab-417b-b69c-3da566aab026", + "filename": "Area PGp (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 2 (PostCS) [v3.4, Colin 27, left hemisphere]" + "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + } + }, + "_": { + "xml": { + "name": "Area PGp (IPL)", + "id": "108", + "grayvalue": "22" + }, + "dat": { + "colors": "108 92 116 83", + "names": "108 PGp" } - ] + } }, { - "name": "Area 2 (PostCS) - right hemisphere", + "name": "Area PGp (IPL)", + "status": "right hemisphere", + "labelIndex": 22, "rgb": [ - 23, - 13, - 35 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 252, - "children": [], - "status": "publicP", - "position": [ - 38223619, - -34651627, - 52535010 + 92, + 116, + 83 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e81716df-d1ab-417b-b69c-3da566aab026", + "filename": "Area PGp (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 2 (PostCS) [v3.4, Colin 27, right hemisphere]" + "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + } + }, + "_": { + "xml": { + "name": "Area PGp (IPL)", + "id": "108", + "grayvalue": "22" + }, + "dat": { + "colors": "108 92 116 83", + "names": "108 PGp" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PGp (IPL)", + "arealabel": "Area-PGp", + "status": "publicP", + "labelIndex": "108", + "doi": "https://doi.org/10.25493/FPFJ-ZCD", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2105576e-e1b0-4e03-9cb4-8c2b65be2f96" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PGp (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b3ef6947-76c9-4935-bbc6-8b2329c0967b" } - }, - "relatedAreas": [] + } }, { - "name": "Area 3a (PostCG)", - "arealabel": "Area-3a", + "name": "Area PFop (IPL)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/C5QQ-EFB", - "synonyms": [], - "rgb": [ - 187, - 133, - 50 - ], "children": [ { - "name": "Area 3a (PostCG) - left hemisphere", + "name": "Area PFop (IPL)", + "status": "left hemisphere", + "labelIndex": 114, "rgb": [ - 187, - 133, - 50 - ], - "labelIndex": 126, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -31927553, - -25650901, - 44513889 + 146, + 153, + 177 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf", + "filename": "Area PFop (IPL) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3a (PostCG) [v8.4, Colin 27, left hemisphere]" + "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" + } + }, + "_": { + "xml": { + "name": "Area PFop (IPL)", + "id": "111", + "grayvalue": "114" + }, + "dat": { + "colors": "111 146 153 177", + "names": "111 PFop" } - ] + } }, { - "name": "Area 3a (PostCG) - right hemisphere", + "name": "Area PFop (IPL)", + "status": "right hemisphere", + "labelIndex": 115, "rgb": [ - 187, - 133, - 50 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 126, - "children": [], - "status": "publicP", - "position": [ - 38813714, - -19184000, - 36284571 + 146, + 153, + 177 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf", + "filename": "Area PFop (IPL) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 3a (PostCG) [v8.4, Colin 27, right hemisphere]" + "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" + } + }, + "_": { + "xml": { + "name": "Area PFop (IPL)", + "id": "111", + "grayvalue": "115" + }, + "dat": { + "colors": "111 146 153 177", + "names": "111 PFop" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + "_": { + "jubrain-ontology_24.json": { + "name": "Area PFop (IPL)", + "arealabel": "Area-PFop", + "status": "publicP", + "labelIndex": "111", + "doi": "https://doi.org/10.25493/M2PM-92Q", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area PFop (IPL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e8262e56-88fe-4006-b078-def4d78416b8" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "inferior parietal lobule", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "inferior parietal lobule", + "name": "parieto-occipital sulcus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area PF (IPL)", - "arealabel": "Area-PF", + "name": "Area hPO1 (POS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F1TJ-54W", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PF", - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f4e177a6-1b2c-48d5-a62c-91949ba636e4" - } - } - } - ], - "rgb": [ - 226, - 211, - 61 - ], "children": [ { - "name": "Area PF (IPL) - left hemisphere", + "name": "Area hPO1 (POS)", + "status": "left hemisphere", + "labelIndex": 14, "rgb": [ - 226, - 211, - 61 - ], - "labelIndex": 206, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -59814938, - -37432365, - 36569295 + 153, + 232, + 235 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3", + "filename": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PF (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" + } + }, + "_": { + "xml": { + "name": "Area hPO1 (POS)", + "id": "297", + "grayvalue": "14" + }, + "dat": { + "colors": "297 153 232 235", + "names": "297 hPO1" } - ] + } }, { - "name": "Area PF (IPL) - right hemisphere", + "name": "Area hPO1 (POS)", + "status": "right hemisphere", + "labelIndex": 14, "rgb": [ - 226, - 211, - 61 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 206, - "children": [], - "status": "publicP", - "position": [ - 64016699, - -33052700, - 30153112 + 153, + 232, + 235 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3", + "filename": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PF (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" - } - } - }, - { - "name": "Area PFcm (IPL)", - "arealabel": "Area-PFcm", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/8DP8-8HE", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PFcm", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f07d441f-452f-471b-ac7c-0d3c2ae16fb2" + "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" + } + }, + "_": { + "xml": { + "name": "Area hPO1 (POS)", + "id": "297", + "grayvalue": "14" + }, + "dat": { + "colors": "297 153 232 235", + "names": "297 hPO1" } } } ], - "rgb": [ - 98, - 128, - 120 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area hPO1 (POS)", + "arealabel": "Area-hPO1", + "status": "publicP", + "labelIndex": "297", + "doi": "https://doi.org/10.25493/W50A-FAP", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7593b453-f916-4bd0-ae2b-d4cbff307428" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hPO1 (POS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a78998c2-99d4-4738-bbda-82a317f713f1" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "parieto-occipital sulcus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "intraparietal sulcus", + "status": null, + "children": [ + { + "name": "Area hIP1 (IPS)", + "status": "publicP", "children": [ { - "name": "Area PFcm (IPL) - left hemisphere", + "name": "Area hIP1 (IPS)", + "status": "left hemisphere", + "labelIndex": 74, "rgb": [ - 98, - 128, - 120 - ], - "labelIndex": 113, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -51751410, - -36954069, - 22546334 + 66, + 149, + 82 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "03520da2-e553-4284-84e4-d8b293446cd4", + "filename": "Area hIP1 (IPS) [v6.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFcm (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "3367db70-cd25-4834-9646-9604308dfa02" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + } + }, + "_": { + "xml": { + "name": "Area hIP1 (IPS)", + "id": "128", + "grayvalue": "74" + }, + "dat": { + "colors": "128 66 149 82", + "names": "128 ip1" } - ] + } }, { - "name": "Area PFcm (IPL) - right hemisphere", + "name": "Area hIP1 (IPS)", + "status": "right hemisphere", + "labelIndex": 74, "rgb": [ - 98, - 128, - 120 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 113, - "children": [], - "status": "publicP", - "position": [ - 53524370, - -31637287, - 23177904 + 66, + 149, + 82 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "03520da2-e553-4284-84e4-d8b293446cd4", + "filename": "Area hIP1 (IPS) [v6.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFcm (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "3367db70-cd25-4834-9646-9604308dfa02" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" - } - } - }, - { - "name": "Area PGa (IPL)", - "arealabel": "Area-PGa", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/V5HY-XTS", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PGa", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d5b168a3-a92e-4ab3-8b4d-61e58e5b7a1c" + "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + } + }, + "_": { + "xml": { + "name": "Area hIP1 (IPS)", + "id": "128", + "grayvalue": "74" + }, + "dat": { + "colors": "128 66 149 82", + "names": "128 ip1" } } } ], - "rgb": [ - 42, - 236, - 131 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP1 (IPS)", + "arealabel": "Area-hIP1", + "status": "publicP", + "labelIndex": "128", + "doi": "https://doi.org/10.25493/92FE-7S6", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/3367db70-cd25-4834-9646-9604308dfa02" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP1 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + } + } + }, + { + "name": "Area hIP7 (IPS)", + "status": "publicP", "children": [ { - "name": "Area PGa (IPL) - left hemisphere", + "name": "Area hIP7 (IPS)", + "status": "left hemisphere", + "labelIndex": 121, "rgb": [ - 42, - 236, - 131 - ], - "labelIndex": 110, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -48873487, - -60780569, - 37191889 + 71, + 196, + 218 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc", + "filename": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGa (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "aff5df97-f341-4370-97af-58d9f40c9877" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" + } + }, + "_": { + "xml": { + "name": "Area hIP7 (IPS)", + "id": "296", + "grayvalue": "121" + }, + "dat": { + "colors": "296 71 196 218", + "names": "296 hIP7" } - ] + } }, { - "name": "Area PGa (IPL) - right hemisphere", + "name": "Area hIP7 (IPS)", + "status": "right hemisphere", + "labelIndex": 121, "rgb": [ - 42, - 236, - 131 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 110, - "children": [], - "status": "publicP", - "position": [ - 55283797, - -55333653, - 30316395 + 71, + 196, + 218 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc", + "filename": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGa (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "aff5df97-f341-4370-97af-58d9f40c9877" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" - } - } - }, - { - "name": "Area PFt (IPL)", - "arealabel": "Area-PFt", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/JGM9-ZET", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PFt", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9ff7fcc4-a88b-4bf8-be07-1386a3760a96" + "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" + } + }, + "_": { + "xml": { + "name": "Area hIP7 (IPS)", + "id": "296", + "grayvalue": "121" + }, + "dat": { + "colors": "296 71 196 218", + "names": "296 hIP7" } } } ], - "rgb": [ - 120, - 135, - 232 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP7 (IPS)", + "arealabel": "Area-hIP7", + "status": "publicP", + "labelIndex": "296", + "doi": "https://doi.org/10.25493/WRCY-8Z1", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/aff5df97-f341-4370-97af-58d9f40c9877" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP7 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9c6c3c96-8129-4e0e-aa22-a0fb435aab45" + } + } + }, + { + "name": "Area hIP3 (IPS)", + "status": "publicP", "children": [ { - "name": "Area PFt (IPL) - left hemisphere", + "name": "Area hIP3 (IPS)", + "status": "left hemisphere", + "labelIndex": 42, "rgb": [ - 120, - 135, - 232 - ], - "labelIndex": 109, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -55015237, - -27583919, - 38095874 + 113, + 172, + 229 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "b5375459-2b03-4c67-a125-25c923180017", + "filename": "Area hIP3 (IPS) [v8.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFt (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + } + }, + "_": { + "xml": { + "name": "Area hIP3 (IPS)", + "id": "133", + "grayvalue": "42" + }, + "dat": { + "colors": "133 113 172 229", + "names": "133 mip" } - ] + } }, { - "name": "Area PFt (IPL) - right hemisphere", + "name": "Area hIP3 (IPS)", + "status": "right hemisphere", + "labelIndex": 42, "rgb": [ - 120, - 135, - 232 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 109, - "children": [], - "status": "publicP", - "position": [ - 54808632, - -24626296, - 37973570 + 113, + 172, + 229 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "b5375459-2b03-4c67-a125-25c923180017", + "filename": "Area hIP3 (IPS) [v8.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFt (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "847cef50-7340-470d-8580-327b4ce9db19" - } - } - }, - { - "name": "Area PFm (IPL)", - "arealabel": "Area-PFm", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/TB94-HRK", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area PFm", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3455ada4-48c3-4748-ae38-2fe3f376f0fc" + "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + } + }, + "_": { + "xml": { + "name": "Area hIP3 (IPS)", + "id": "133", + "grayvalue": "42" + }, + "dat": { + "colors": "133 113 172 229", + "names": "133 mip" } } } ], - "rgb": [ - 53, - 76, - 145 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP3 (IPS)", + "arealabel": "Area-hIP3", + "status": "publicP", + "labelIndex": "133", + "doi": "https://doi.org/10.25493/P8X0-V1G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/bd1062af-e9c5-4b8d-9742-2172be4fef93" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP3 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/700ac6db-870d-44f1-8786-0c01207f992b" + } + } + }, + { + "name": "Area hIP2 (IPS)", + "status": "publicP", "children": [ { - "name": "Area PFm (IPL) - left hemisphere", + "name": "Area hIP2 (IPS)", + "status": "left hemisphere", + "labelIndex": 64, "rgb": [ - 53, - 76, - 145 - ], - "labelIndex": 112, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -54527689, - -52389045, - 38877207 + 127, + 245, + 203 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0", + "filename": "Area hIP2 (IPS) [v6.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFm (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" + } + }, + "_": { + "xml": { + "name": "Area hIP2 (IPS)", + "id": "129", + "grayvalue": "64" + }, + "dat": { + "colors": "129 127 245 203", + "names": "129 ip2" } - ] + } }, { - "name": "Area PFm (IPL) - right hemisphere", + "name": "Area hIP2 (IPS)", + "status": "right hemisphere", + "labelIndex": 64, "rgb": [ - 53, - 76, - 145 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 112, - "children": [], - "status": "publicP", - "position": [ - 56990022, - -45541717, - 38606571 + 127, + 245, + 203 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0", + "filename": "Area hIP2 (IPS) [v6.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFm (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" + } + }, + "_": { + "xml": { + "name": "Area hIP2 (IPS)", + "id": "129", + "grayvalue": "64" + }, + "dat": { + "colors": "129 127 245 203", + "names": "129 ip2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "411edde9-685f-464b-970c-a929f9a4067c" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP2 (IPS)", + "arealabel": "Area-hIP2", + "status": "publicP", + "labelIndex": "129", + "doi": "https://doi.org/10.25493/EJTM-NDY", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a8ee352c-13fc-45fd-9522-c7ac9de9bd61" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP2 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/4490ef3e-ce60-4453-9e9f-85388d0603cb" } } }, { - "name": "Area PGp (IPL)", - "arealabel": "Area-PGp", + "name": "Area hIP4 (IPS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/FPFJ-ZCD", - "synonyms": [], - "rgb": [ - 92, - 116, - 83 - ], "children": [ { - "name": "Area PGp (IPL) - left hemisphere", + "name": "Area hIP4 (IPS)", + "status": "left hemisphere", + "labelIndex": 37, "rgb": [ - 92, - 116, - 83 - ], - "labelIndex": 108, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -44673441, - -73269937, - 29840224 + 254, + 52, + 184 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96", + "filename": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGp (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + } + }, + "_": { + "xml": { + "name": "Area hIP4 (IPS)", + "id": "294", + "grayvalue": "37" + }, + "dat": { + "colors": "294 254 52 184", + "names": "294 hIP4" + } + } }, { - "name": "Area PGp (IPL) - right hemisphere", + "name": "Area hIP4 (IPS)", + "status": "right hemisphere", + "labelIndex": 37, "rgb": [ - 92, - 116, - 83 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 108, - "children": [], - "status": "publicP", - "position": [ - 47749459, - -70528695, - 30721440 + 254, + 52, + 184 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96", + "filename": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PGp (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46" } - ] - } - ], - "relatedAreas": [ - { - "name": "Area PGp", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "1b00a0e4-9493-43ff-bfbd-b02119064813" + "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + } + }, + "_": { + "xml": { + "name": "Area hIP4 (IPS)", + "id": "294", + "grayvalue": "37" + }, + "dat": { + "colors": "294 254 52 184", + "names": "294 hIP4" } } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP4 (IPS)", + "arealabel": "Area-hIP4", + "status": "publicP", + "labelIndex": "294", + "doi": "https://doi.org/10.25493/TSEN-QSY", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f2ec3ab5-c604-4dd6-b941-ffc37288cc46" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP4 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5875bfe2-99ca-4e50-bce2-61c201c3dd54" } } }, { - "name": "Area PFop (IPL)", - "arealabel": "Area-PFop", + "name": "Area hIP5 (IPS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/M2PM-92Q", - "synonyms": [], - "rgb": [ - 146, - 153, - 177 - ], "children": [ { - "name": "Area PFop (IPL) - left hemisphere", + "name": "Area hIP5 (IPS)", + "status": "left hemisphere", + "labelIndex": 33, "rgb": [ - 146, - 153, - 177 - ], - "labelIndex": 111, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -60026462, - -24694986, - 24259053 + 217, + 87, + 210 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f", + "filename": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFop (IPL) [v9.4, Colin 27, left hemisphere]" + "kgId": "24b2682f-5c82-4439-8278-bc526b530030" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" + } + }, + "_": { + "xml": { + "name": "Area hIP5 (IPS)", + "id": "295", + "grayvalue": "33" + }, + "dat": { + "colors": "295 217 87 210", + "names": "295 hIP5" } - ] + } }, { - "name": "Area PFop (IPL) - right hemisphere", + "name": "Area hIP5 (IPS)", + "status": "right hemisphere", + "labelIndex": 33, "rgb": [ - 146, - 153, - 177 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 111, - "children": [], - "status": "publicP", - "position": [ - 58286575, - -20617534, - 24917260 + 217, + 87, + 210 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f", + "filename": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area PFop (IPL) [v9.4, Colin 27, right hemisphere]" + "kgId": "24b2682f-5c82-4439-8278-bc526b530030" } - ] - } - ], - "relatedAreas": [ - { - "name": "Area PFop", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b4397c40-82e1-4d62-b97a-44e8d04b428b" + "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" + } + }, + "_": { + "xml": { + "name": "Area hIP5 (IPS)", + "id": "295", + "grayvalue": "33" + }, + "dat": { + "colors": "295 217 87 210", + "names": "295 hIP5" } } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP5 (IPS)", + "arealabel": "Area-hIP5", + "status": "publicP", + "labelIndex": "295", + "doi": "https://doi.org/10.25493/RNSM-Y4Y", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/24b2682f-5c82-4439-8278-bc526b530030" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP5 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f9717dec-0310-4078-a4ae-294170b4fb37" } } - } - ] - }, - { - "name": "parieto-occipital sulcus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + }, { - "name": "Area hPO1 (POS)", - "arealabel": "Area-hPO1", + "name": "Area hIP6 (IPS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/W50A-FAP", - "synonyms": [], - "rgb": [ - 153, - 232, - 235 - ], "children": [ { - "name": "Area hPO1 (POS) - left hemisphere", + "name": "Area hIP6 (IPS)", + "status": "left hemisphere", + "labelIndex": 40, "rgb": [ - 153, - 232, - 235 - ], - "labelIndex": 297, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -15069260, - -80661951, - 37074565 + 237, + 233, + 37 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428", + "filename": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]" + "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + } + }, + "_": { + "xml": { + "name": "Area hIP6 (IPS)", + "id": "292", + "grayvalue": "40" + }, + "dat": { + "colors": "292 237 233 37", + "names": "292 hIP6" } - ] + } }, { - "name": "Area hPO1 (POS) - right hemisphere", + "name": "Area hIP6 (IPS)", + "status": "right hemisphere", + "labelIndex": 40, "rgb": [ - 153, - 232, - 235 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 297, - "children": [], - "status": "publicP", - "position": [ - 21853147, - -80927739, - 37048660 + 237, + 233, + 37 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428", + "filename": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]" + "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + } + }, + "_": { + "xml": { + "name": "Area hIP6 (IPS)", + "id": "292", + "grayvalue": "40" + }, + "dat": { + "colors": "292 237 233 37", + "names": "292 hIP6" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP6 (IPS)", + "arealabel": "Area-hIP6", + "status": "publicP", + "labelIndex": "292", + "doi": "https://doi.org/10.25493/AFQR-50Q", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e51da69b-f5de-49d5-9566-6fde3ef14d80" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP6 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b9975f8e-f484-4e82-883a-5fd765855ae0" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "intraparietal sulcus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area hIP1 (IPS)", - "arealabel": "Area-hIP1", + "name": "Area hIP8 (IPS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/92FE-7S6", - "synonyms": [], - "rgb": [ - 66, - 149, - 82 - ], "children": [ { - "name": "Area hIP1 (IPS) - left hemisphere", + "name": "Area hIP8 (IPS)", + "status": "left hemisphere", + "labelIndex": 57, "rgb": [ - 66, - 149, - 82 - ], - "labelIndex": 128, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -36841999, - -49449871, - 40584028 + 223, + 109, + 3 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "3367db70-cd25-4834-9646-9604308dfa02", + "filename": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP1 (IPS) [v6.1, Colin 27, left hemisphere]" + "kgId": "2dba112f-075c-4dba-813d-e408ff429586" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" + } + }, + "_": { + "xml": { + "name": "Area hIP8 (IPS)", + "id": "293", + "grayvalue": "57" + }, + "dat": { + "colors": "293 223 109 3", + "names": "293 hIP8" } - ] + } }, { - "name": "Area hIP1 (IPS) - right hemisphere", + "name": "Area hIP8 (IPS)", + "status": "right hemisphere", + "labelIndex": 57, "rgb": [ - 66, - 149, - 82 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 128, - "children": [], - "status": "publicP", - "position": [ - 40629988, - -48019372, - 39158853 + 223, + 109, + 3 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "3367db70-cd25-4834-9646-9604308dfa02", + "filename": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP1 (IPS) [v6.1, Colin 27, right hemisphere]" + "kgId": "2dba112f-075c-4dba-813d-e408ff429586" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" + } + }, + "_": { + "xml": { + "name": "Area hIP8 (IPS)", + "id": "293", + "grayvalue": "57" + }, + "dat": { + "colors": "293 223 109 3", + "names": "293 hIP8" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hIP8 (IPS)", + "arealabel": "Area-hIP8", + "status": "publicP", + "labelIndex": "293", + "doi": "https://doi.org/10.25493/YYT8-FT8", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2dba112f-075c-4dba-813d-e408ff429586" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hIP8 (IPS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" } - }, - "relatedAreas": [] - }, - { - "name": "Area hIP7 (IPS)", - "arealabel": "Area-hIP7", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "intraparietal sulcus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/WRCY-8Z1", "synonyms": [], - "rgb": [ - 71, - 196, - 218 - ], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "parietal lobe", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "occiptal lobe", + "status": null, + "children": [ + { + "name": "dorsal occipital cortex", + "status": null, + "children": [ + { + "name": "Area hOc6 (POS)", + "status": "publicP", "children": [ { - "name": "Area hIP7 (IPS) - left hemisphere", + "name": "Area hOc6 (POS)", + "status": "left hemisphere", + "labelIndex": 47, "rgb": [ - 71, - 196, - 218 - ], - "labelIndex": 296, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -22044741, - -79989011, - 29353218 + 239, + 66, + 26 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "aff5df97-f341-4370-97af-58d9f40c9877", + "filename": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]" + "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + } + }, + "_": { + "xml": { + "name": "Area hOc6 (POS)", + "id": "291", + "grayvalue": "47" + }, + "dat": { + "colors": "291 239 66 26", + "names": "291 hOc6" } - ] + } }, { - "name": "Area hIP7 (IPS) - right hemisphere", + "name": "Area hOc6 (POS)", + "status": "right hemisphere", + "labelIndex": 47, "rgb": [ - 71, - 196, - 218 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 296, - "children": [], - "status": "publicP", - "position": [ - 29041586, - -79117828, - 27046207 + 239, + 66, + 26 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "aff5df97-f341-4370-97af-58d9f40c9877", + "filename": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]" + "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + } + }, + "_": { + "xml": { + "name": "Area hOc6 (POS)", + "id": "291", + "grayvalue": "47" + }, + "dat": { + "colors": "291 239 66 26", + "names": "291 hOc6" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc6 (POS)", + "arealabel": "Area-hOc6", + "status": "publicP", + "labelIndex": "291", + "doi": "https://doi.org/10.25493/4101-1ZG", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f3a24a48-3d23-4d92-9de6-e13dc888f1b5" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc6 (POS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d72e0210-a910-4b15-bcaf-80c3433cd3e0" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP3 (IPS)", - "arealabel": "Area-hIP3", + "name": "Area hOc4d (Cuneus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/P8X0-V1G", - "synonyms": [], - "rgb": [ - 113, - 172, - 229 - ], "children": [ { - "name": "Area hIP3 (IPS) - left hemisphere", + "name": "Area hOc4d (Cuneus)", + "status": "left hemisphere", + "labelIndex": 8, "rgb": [ - 113, - 172, - 229 - ], - "labelIndex": 133, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -30430769, - -55031164, - 46842209 + 109, + 218, + 10 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93", + "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP3 (IPS) [v8.4, Colin 27, left hemisphere]" + "kgId": "704230e3-434b-45d7-875c-05600272f01a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8120426c-f65b-4426-8a58-3060e2334921" + } + }, + "_": { + "xml": { + "name": "Area hOc4d (Cuneus)", + "id": "119", + "grayvalue": "8" + }, + "dat": { + "colors": "119 109 218 10", + "names": "119 V3a" } - ] + } }, { - "name": "Area hIP3 (IPS) - right hemisphere", + "name": "Area hOc4d (Cuneus)", + "status": "right hemisphere", + "labelIndex": 8, "rgb": [ - 113, - 172, - 229 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 133, - "children": [], - "status": "publicP", - "position": [ - 33538679, - -49884591, - 50461950 + 109, + 218, + 10 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93", + "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP3 (IPS) [v8.4, Colin 27, right hemisphere]" + "kgId": "704230e3-434b-45d7-875c-05600272f01a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8120426c-f65b-4426-8a58-3060e2334921" + } + }, + "_": { + "xml": { + "name": "Area hOc4d (Cuneus)", + "id": "119", + "grayvalue": "8" + }, + "dat": { + "colors": "119 109 218 10", + "names": "119 V3a" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4d (Cuneus)", + "arealabel": "Area-hOc4d", + "status": "publicP", + "labelIndex": "119", + "doi": "https://doi.org/10.25493/VSK5-DET", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/704230e3-434b-45d7-875c-05600272f01a" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4d (Cuneus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/8120426c-f65b-4426-8a58-3060e2334921" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP2 (IPS)", - "arealabel": "Area-hIP2", + "name": "Area hOc3d (Cuneus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/EJTM-NDY", - "synonyms": [], - "rgb": [ - 127, - 245, - 203 - ], "children": [ { - "name": "Area hIP2 (IPS) - left hemisphere", + "name": "Area hOc3d (Cuneus)", + "status": "left hemisphere", + "labelIndex": 78, "rgb": [ - 127, - 245, - 203 - ], - "labelIndex": 129, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -46531100, - -41482722, - 43278044 + 105, + 191, + 48 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61", + "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP2 (IPS) [v6.1, Colin 27, left hemisphere]" + "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + } + }, + "_": { + "xml": { + "name": "Area hOc3d (Cuneus)", + "id": "120", + "grayvalue": "78" + }, + "dat": { + "colors": "120 105 191 48", + "names": "120 V3d" + } + } }, { - "name": "Area hIP2 (IPS) - right hemisphere", + "name": "Area hOc3d (Cuneus)", + "status": "right hemisphere", + "labelIndex": 79, "rgb": [ - 127, - 245, - 203 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 129, - "children": [], - "status": "publicP", - "position": [ - 44605145, - -39958613, - 45130872 + 105, + 191, + 48 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61", + "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP2 (IPS) [v6.1, Colin 27, right hemisphere]" + "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + } + }, + "_": { + "xml": { + "name": "Area hOc3d (Cuneus)", + "id": "120", + "grayvalue": "79" + }, + "dat": { + "colors": "120 105 191 48", + "names": "120 V3d" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc3d (Cuneus)", + "arealabel": "Area-hOc3d", + "status": "publicP", + "labelIndex": "120", + "doi": "https://doi.org/10.25493/F9X3-JVJ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc3d (Cuneus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d7ec4342-ae58-41e3-a68c-28e90a719d41" } - }, - "relatedAreas": [] - }, - { - "name": "Area hIP4 (IPS)", - "arealabel": "Area-hIP4", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dorsal occipital cortex", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/TSEN-QSY", "synonyms": [], - "rgb": [ - 254, - 52, - 184 - ], + "rgb": null + } + } + }, + { + "name": "ventral occipital cortex", + "status": null, + "children": [ + { + "name": "Area hOc3v (LingG)", + "status": "publicP", "children": [ { - "name": "Area hIP4 (IPS) - left hemisphere", + "name": "Area hOc3v (LingG)", + "status": "left hemisphere", + "labelIndex": 29, "rgb": [ - 254, - 52, - 184 - ], - "labelIndex": 294, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -29349066, - -79948651, - 25849585 + 83, + 179, + 155 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46", + "filename": "Area hOc3v (LingG) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]" + "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" + } + }, + "_": { + "xml": { + "name": "Area hOc3v (LingG)", + "id": "10", + "grayvalue": "29" + }, + "dat": { + "colors": "10 83 179 155", + "names": "10 Vp" } - ] + } }, { - "name": "Area hIP4 (IPS) - right hemisphere", + "name": "Area hOc3v (LingG)", + "status": "right hemisphere", + "labelIndex": 29, "rgb": [ - 254, - 52, - 184 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 294, - "children": [], - "status": "publicP", - "position": [ - 37324927, - -76495150, - 22338021 + 83, + 179, + 155 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46", + "filename": "Area hOc3v (LingG) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]" + "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" + } + }, + "_": { + "xml": { + "name": "Area hOc3v (LingG)", + "id": "10", + "grayvalue": "29" + }, + "dat": { + "colors": "10 83 179 155", + "names": "10 Vp" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc3v (LingG)", + "arealabel": "Area-hOc3v", + "status": "publicP", + "labelIndex": "10", + "doi": "https://doi.org/10.25493/E5E8-1VV", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/76b837d8-5c64-4c50-b825-efbbe72f6625" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc3v (LingG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/0d6392fd-b905-4bc3-bac9-fc44d8990a30" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP5 (IPS)", - "arealabel": "Area-hIP5", + "name": "Area hOc4v (LingG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/RNSM-Y4Y", - "synonyms": [], - "rgb": [ - 217, - 87, - 210 - ], "children": [ { - "name": "Area hIP5 (IPS) - left hemisphere", + "name": "Area hOc4v (LingG)", + "status": "left hemisphere", + "labelIndex": 115, "rgb": [ - 217, - 87, - 210 - ], - "labelIndex": 295, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -28321120, - -73162807, - 36664362 + 222, + 77, + 155 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "24b2682f-5c82-4439-8278-bc526b530030", + "filename": "Area hOc4v (LingG) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]" + "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + } + }, + "_": { + "xml": { + "name": "Area hOc4v (LingG)", + "id": "9", + "grayvalue": "115" + }, + "dat": { + "colors": "9 222 77 155", + "names": "9 V4v" } - ] + } }, { - "name": "Area hIP5 (IPS) - right hemisphere", + "name": "Area hOc4v (LingG)", + "status": "right hemisphere", + "labelIndex": 114, "rgb": [ - 217, - 87, - 210 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 295, - "children": [], - "status": "publicP", - "position": [ - 34614713, - -68930590, - 33299252 + 222, + 77, + 155 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "24b2682f-5c82-4439-8278-bc526b530030", + "filename": "Area hOc4v (LingG) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]" + "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + } + }, + "_": { + "xml": { + "name": "Area hOc4v (LingG)", + "id": "9", + "grayvalue": "114" + }, + "dat": { + "colors": "9 222 77 155", + "names": "9 V4v" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4v (LingG)", + "arealabel": "Area-hOc4v", + "status": "publicP", + "labelIndex": "9", + "doi": "https://doi.org/10.25493/AASR-M8P", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e2d948e4-f52d-4f02-a635-017f3c71186c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4v (LingG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" } - }, - "relatedAreas": [] - }, - { - "name": "Area hIP6 (IPS)", - "arealabel": "Area-hIP6", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "ventral occipital cortex", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/AFQR-50Q", "synonyms": [], - "rgb": [ - 237, - 233, - 37 - ], + "rgb": null + } + } + }, + { + "name": "occipital cortex", + "status": null, + "children": [ + { + "name": "Area hOc2 (V2, 18)", + "status": "publicP", "children": [ { - "name": "Area hIP6 (IPS) - left hemisphere", + "name": "Area hOc2 (V2, 18)", + "status": "left hemisphere", + "labelIndex": 5, "rgb": [ - 237, - 233, - 37 - ], - "labelIndex": 292, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -31988131, - -66522626, - 46155045 + 84, + 110, + 22 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80", + "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]" + "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" + } + }, + "_": { + "xml": { + "name": "Area hOc2 (V2, 18)", + "id": "7", + "grayvalue": "5" + }, + "dat": { + "colors": "7 84 110 22", + "names": "7 V2" } - ] + } }, { - "name": "Area hIP6 (IPS) - right hemisphere", + "name": "Area hOc2 (V2, 18)", + "status": "right hemisphere", + "labelIndex": 5, "rgb": [ - 237, - 233, - 37 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 292, - "children": [], - "status": "publicP", - "position": [ - 37069307, - -63723479, - 45628006 + 84, + 110, + 22 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80", + "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]" + "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" + } + }, + "_": { + "xml": { + "name": "Area hOc2 (V2, 18)", + "id": "7", + "grayvalue": "5" + }, + "dat": { + "colors": "7 84 110 22", + "names": "7 V2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc2 (V2, 18)", + "arealabel": "Area-hOc2", + "status": "publicP", + "labelIndex": "7", + "doi": "https://doi.org/10.25493/QG9C-THD", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/fa2af93e-c0bb-4c76-bdfe-52776a37d0c0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc2 (V2, 18)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/04674a3c-bb3a-495e-a466-206355e630bd" } - }, - "relatedAreas": [] + } }, { - "name": "Area hIP8 (IPS)", - "arealabel": "Area-hIP8", + "name": "Area hOc1 (V1, 17, CalcS)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/YYT8-FT8", - "synonyms": [], - "rgb": [ - 223, - 109, - 3 - ], "children": [ { - "name": "Area hIP8 (IPS) - left hemisphere", + "name": "Area hOc1 (V1, 17, CalcS)", + "status": "left hemisphere", + "labelIndex": 117, "rgb": [ - 223, - 109, - 3 - ], - "labelIndex": 293, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -18133307, - -72231198, - 43245125 + 190, + 132, + 147 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2dba112f-075c-4dba-813d-e408ff429586", + "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]" + "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + } + }, + "_": { + "xml": { + "name": "Area hOc1 (V1, 17, CalcS)", + "id": "8", + "grayvalue": "117" + }, + "dat": { + "colors": "8 190 132 147", + "names": "8 V1" } - ] + } }, { - "name": "Area hIP8 (IPS) - right hemisphere", + "name": "Area hOc1 (V1, 17, CalcS)", + "status": "right hemisphere", + "labelIndex": 117, "rgb": [ - 223, - 109, - 3 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 293, - "children": [], - "status": "publicP", - "position": [ - 26220986, - -71480127, - 41680048 + 190, + 132, + 147 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2dba112f-075c-4dba-813d-e408ff429586", + "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]" + "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + } + }, + "_": { + "xml": { + "name": "Area hOc1 (V1, 17, CalcS)", + "id": "8", + "grayvalue": "117" + }, + "dat": { + "colors": "8 190 132 147", + "names": "8 V1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc1 (V1, 17, CalcS)", + "arealabel": "Area-hOc1", + "status": "publicP", + "labelIndex": "8", + "doi": "https://doi.org/10.25493/MXJ6-6DH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/5c669b77-c981-424a-858d-fe9f527dbc07" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc1 (V1, 17, CalcS)", + "alias": "Area hOc1 (V1, 17, CalcS)", + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5151ab8f-d8cb-4e67-a449-afe2a41fb007" } - }, - "relatedAreas": [] + } } - ] - } - ] - }, - { - "name": "occiptal lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + ], + "_": { + "jubrain-ontology_24.json": { + "name": "occipital cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, { - "name": "dorsal occipital cortex", + "name": "lateral occipital cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hOc6 (POS)", - "arealabel": "Area-hOc6", + "name": "Area hOc4lp (LOC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/4101-1ZG", - "synonyms": [], - "rgb": [ - 239, - 66, - 26 - ], "children": [ { - "name": "Area hOc6 (POS) - left hemisphere", + "name": "Area hOc4lp (LOC)", + "status": "left hemisphere", + "labelIndex": 123, "rgb": [ - 239, - 66, - 26 - ], - "labelIndex": 291, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -15925775, - -70685971, - 16518760 + 96, + 113, + 253 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5", + "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]" + "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + } + }, + "_": { + "xml": { + "name": "Area hOc4lp (LOC)", + "id": "117", + "grayvalue": "123" + }, + "dat": { + "colors": "117 96 113 253", + "names": "117 V4lp" } - ] + } }, { - "name": "Area hOc6 (POS) - right hemisphere", + "name": "Area hOc4lp (LOC)", + "status": "right hemisphere", + "labelIndex": 123, "rgb": [ - 239, - 66, - 26 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 291, - "children": [], - "status": "publicP", - "position": [ - 17750454, - -67625227, - 17755898 + 96, + 113, + 253 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5", + "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]" + "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + } + }, + "_": { + "xml": { + "name": "Area hOc4lp (LOC)", + "id": "117", + "grayvalue": "123" + }, + "dat": { + "colors": "117 96 113 253", + "names": "117 V4lp" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4lp (LOC)", + "arealabel": "Area-hOc4lp", + "status": "publicP", + "labelIndex": "117", + "doi": "https://doi.org/10.25493/4B87-Q8X", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/487f86a9-2637-4cd1-bb33-f2b0db904697" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4lp (LOC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9006ee6a-6dc1-4604-9f20-7e08b42d574d" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc4d (Cuneus)", - "arealabel": "Area-hOc4d", + "name": "Area hOc5 (LOC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/VSK5-DET", - "synonyms": [], - "rgb": [ - 109, - 218, - 10 - ], "children": [ { - "name": "Area hOc4d (Cuneus) - left hemisphere", + "name": "Area hOc5 (LOC)", + "status": "left hemisphere", + "labelIndex": 106, "rgb": [ - 109, - 218, - 10 - ], - "labelIndex": 119, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -17209585, - -87846006, - 25522684 + 255, + 0, + 0 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "704230e3-434b-45d7-875c-05600272f01a", + "filename": "Area hOc5 (LOC) [v2.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, left hemisphere]" + "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" + } + }, + "_": { + "xml": { + "name": "Area hOc5 (LOC)", + "id": "6", + "grayvalue": "106" + }, + "dat": { + "colors": "6 255 0 0", + "names": "6 V5" } - ] + } }, { - "name": "Area hOc4d (Cuneus) - right hemisphere", + "name": "Area hOc5 (LOC)", + "status": "right hemisphere", + "labelIndex": 107, "rgb": [ - 109, - 218, - 10 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 119, - "children": [], - "status": "publicP", - "position": [ - 20232373, - -87193644, - 27253227 + 255, + 0, + 0 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "704230e3-434b-45d7-875c-05600272f01a", + "filename": "Area hOc5 (LOC) [v2.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4d (Cuneus) [v2.4, Colin 27, right hemisphere]" + "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" + } + }, + "_": { + "xml": { + "name": "Area hOc5 (LOC)", + "id": "6", + "grayvalue": "107" + }, + "dat": { + "colors": "6 255 0 0", + "names": "6 V5" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8120426c-f65b-4426-8a58-3060e2334921" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc5 (LOC)", + "arealabel": "Area-hOc5", + "status": "publicP", + "labelIndex": "6", + "doi": "https://doi.org/10.25493/2WSH-MCT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/84897b6c-78d3-4dd4-bea9-dbb6459fba20" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc5 (LOC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc3d (Cuneus)", - "arealabel": "Area-hOc3d", + "name": "Area hOc4la (LOC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F9X3-JVJ", - "synonyms": [], - "rgb": [ - 105, - 191, - 48 - ], "children": [ { - "name": "Area hOc3d (Cuneus) - left hemisphere", + "name": "Area hOc4la (LOC)", + "status": "left hemisphere", + "labelIndex": 3, "rgb": [ - 105, - 191, - 48 - ], - "labelIndex": 120, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -12816505, - -91289984, - 21840872 + 233, + 168, + 189 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc", + "filename": "Area hOc4la (LOC) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, left hemisphere]" + "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "94365b82-6204-4937-8b86-fe0433287938" + } + }, + "_": { + "xml": { + "name": "Area hOc4la (LOC)", + "id": "118", + "grayvalue": "3" + }, + "dat": { + "colors": "118 233 168 189", + "names": "118 V4la" } - ] + } }, { - "name": "Area hOc3d (Cuneus) - right hemisphere", + "name": "Area hOc4la (LOC)", + "status": "right hemisphere", + "labelIndex": 4, "rgb": [ - 105, - 191, - 48 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 120, - "children": [], - "status": "publicP", - "position": [ - 16129503, - -88897084, - 23080617 + 233, + 168, + 189 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc", + "filename": "Area hOc4la (LOC) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3d (Cuneus) [v2.4, Colin 27, right hemisphere]" + "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "94365b82-6204-4937-8b86-fe0433287938" + } + }, + "_": { + "xml": { + "name": "Area hOc4la (LOC)", + "id": "118", + "grayvalue": "4" + }, + "dat": { + "colors": "118 233 168 189", + "names": "118 V4la" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + "_": { + "jubrain-ontology_24.json": { + "name": "Area hOc4la (LOC)", + "arealabel": "Area-hOc4la", + "status": "publicP", + "labelIndex": "118", + "doi": "https://doi.org/10.25493/Z9JX-WKB", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/304342d8-5d55-4dea-a97e-39dccc72a7a4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area hOc4la (LOC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/94365b82-6204-4937-8b86-fe0433287938" } - }, - "relatedAreas": [] + } } - ] - }, - { - "name": "ventral occipital cortex", + ], + "_": { + "jubrain-ontology_24.json": { + "name": "lateral occipital cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "occiptal lobe", "status": null, "labelIndex": null, "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "frontal lobe", + "status": null, + "children": [ + { + "name": "inferior frontal gyrus", + "status": null, "children": [ { - "name": "Area hOc3v (LingG)", - "arealabel": "Area-hOc3v", + "name": "Area 44 (IFG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/E5E8-1VV", - "synonyms": [], - "rgb": [ - 83, - 179, - 155 - ], "children": [ { - "name": "Area hOc3v (LingG) - left hemisphere", + "name": "Area 44 (IFG)", + "status": "left hemisphere", + "labelIndex": 65, "rgb": [ - 83, - 179, - 155 - ], - "labelIndex": 10, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -18685863, - -85629087, - -10106719 + 54, + 74, + 75 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625", + "filename": "Area 44 (IFG) [v7.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3v (LingG) [v3.4, Colin 27, left hemisphere]" + "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" + } + }, + "_": { + "xml": { + "name": "Area 44 (IFG)", + "id": "2", + "grayvalue": "65" + }, + "dat": { + "colors": "2 54 74 75", + "names": "2 44" } - ] + } }, { - "name": "Area hOc3v (LingG) - right hemisphere", + "name": "Area 44 (IFG)", + "status": "right hemisphere", + "labelIndex": 65, "rgb": [ - 83, - 179, - 155 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 10, - "children": [], - "status": "publicP", - "position": [ - 24296060, - -81686611, - -10031193 + 54, + 74, + 75 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625", + "filename": "Area 44 (IFG) [v7.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc3v (LingG) [v3.4, Colin 27, right hemisphere]" + "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" + } + }, + "_": { + "xml": { + "name": "Area 44 (IFG)", + "id": "2", + "grayvalue": "65" + }, + "dat": { + "colors": "2 54 74 75", + "names": "2 44" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 44 (IFG)", + "arealabel": "Area-44", + "status": "publicP", + "labelIndex": "2", + "doi": "https://doi.org/10.25493/F9P8-ZVW", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8f180ff1-20d1-4112-9e71-a5c7eca6c369" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 44 (IFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/8a6be82c-5947-4fff-8348-cf9bf73e4f40" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc4v (LingG)", - "arealabel": "Area-hOc4v", + "name": "Area 45 (IFG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/AASR-M8P", - "synonyms": [], - "rgb": [ - 222, - 77, - 155 - ], "children": [ { - "name": "Area hOc4v (LingG) - left hemisphere", + "name": "Area 45 (IFG)", + "status": "left hemisphere", + "labelIndex": 68, "rgb": [ - 222, - 77, - 155 - ], - "labelIndex": 9, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -26315808, - -78419533, - -12497238 + 167, + 103, + 146 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c", + "filename": "Area 45 (IFG) [v7.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4v (LingG) [v3.4, Colin 27, left hemisphere]" + "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cb32e688-43f0-4ae3-9554-085973137663" + } + }, + "_": { + "xml": { + "name": "Area 45 (IFG)", + "id": "1", + "grayvalue": "68" + }, + "dat": { + "colors": "1 167 103 146", + "names": "1 45" } - ] + } }, { - "name": "Area hOc4v (LingG) - right hemisphere", + "name": "Area 45 (IFG)", + "status": "right hemisphere", + "labelIndex": 68, "rgb": [ - 222, - 77, - 155 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 9, - "children": [], - "status": "publicP", - "position": [ - 32665897, - -76519832, - -12453305 + 167, + 103, + 146 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c", + "filename": "Area 45 (IFG) [v7.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4v (LingG) [v3.4, Colin 27, right hemisphere]" + "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cb32e688-43f0-4ae3-9554-085973137663" + } + }, + "_": { + "xml": { + "name": "Area 45 (IFG)", + "id": "1", + "grayvalue": "68" + }, + "dat": { + "colors": "1 167 103 146", + "names": "1 45" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 45 (IFG)", + "arealabel": "Area-45", + "status": "publicP", + "labelIndex": "1", + "doi": "https://doi.org/10.25493/MR1V-BJ3", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1db64761-aad6-4d3d-b67c-2a9ef4df6e47" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 45 (IFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cb32e688-43f0-4ae3-9554-085973137663" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "inferior frontal gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "occipital cortex", + "name": "dorsal precentral gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hOc2 (V2, 18)", - "arealabel": "Area-hOc2", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/QG9C-THD", - "synonyms": [], - "rgb": [ - 84, - 110, - 22 - ], + "name": "Area 6d2 (PreCG)", + "status": "publicDOI", "children": [ { - "name": "Area hOc2 (V2, 18) - left hemisphere", + "name": "Area 6d2 (PreCG)", + "status": "left hemisphere", + "labelIndex": 6, "rgb": [ - 84, - 110, - 22 - ], - "labelIndex": 7, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -10521334, - -88185706, - 4055081 + 170, + 151, + 180 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0", + "filename": "Area 6d2 (PreCG) [v4.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, left hemisphere]" + "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" + } + }, + "_": { + "xml": { + "name": "Area 6d2 (PreCG)", + "id": "288", + "grayvalue": "6" + }, + "dat": { + "colors": "288 170 151 180", + "names": "288 6d2" } - ] + } }, { - "name": "Area hOc2 (V2, 18) - right hemisphere", + "name": "Area 6d2 (PreCG)", + "status": "right hemisphere", + "labelIndex": 6, "rgb": [ - 84, - 110, - 22 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 7, - "children": [], - "status": "publicP", - "position": [ - 15409559, - -86163484, - 2905309 + 170, + 151, + 180 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0", + "filename": "Area 6d2 (PreCG) [v4.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc2 (V2, 18) [v2.4, Colin 27, right hemisphere]" + "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" + } + }, + "_": { + "xml": { + "name": "Area 6d2 (PreCG)", + "id": "288", + "grayvalue": "6" + }, + "dat": { + "colors": "288 170 151 180", + "names": "288 6d2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6d2 (PreCG)", + "arealabel": "Area-6d2", + "status": "publicDOI", + "labelIndex": "288", + "doi": "https://doi.org/10.25493/KXHS-N90", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6d2 (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/963c5281-67df-4d41-9b91-60b31cf150c0" } - }, - "relatedAreas": [] + } }, { - "name": "Area hOc1 (V1, 17, CalcS)", - "arealabel": "Area-hOc1", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/MXJ6-6DH", - "synonyms": [], - "rgb": [ - 190, - 132, - 147 - ], + "name": "Area 6d1 (PreCG)", + "status": "publicDOI", "children": [ { - "name": "Area hOc1 (V1, 17, CalcS) - left hemisphere", + "name": "Area 6d1 (PreCG)", + "status": "left hemisphere", + "labelIndex": 35, "rgb": [ - 190, - 132, - 147 + 45, + 33, + 27 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07", + "filename": "Area 6d1 (PreCG) [v4.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]" + "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298" } ], - "labelIndex": 8, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -8533787, - -84646549, - 1855106 - ] + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" + } + }, + "_": { + "xml": { + "name": "Area 6d1 (PreCG)", + "id": "287", + "grayvalue": "35" + }, + "dat": { + "colors": "287 45 33 27", + "names": "287 6d1" + } + } }, { - "name": "Area hOc1 (V1, 17, CalcS) - right hemisphere", + "name": "Area 6d1 (PreCG)", + "status": "right hemisphere", + "labelIndex": 34, "rgb": [ - 190, - 132, - 147 + 45, + 33, + 27 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07", + "filename": "Area 6d1 (PreCG) [v4.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, right hemisphere]" + "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298" } ], - "ngId": "jubrain colin v18 right", - "labelIndex": 8, - "children": [], - "status": "publicP", - "position": [ - 14654595, - -81416396, - 1637838 - ] - } - ], - "relatedAreas": [ - { - "name": "Area hOc1", "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b851eb9d-9502-45e9-8dd8-2861f0e6da3f" + "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" + } + }, + "_": { + "xml": { + "name": "Area 6d1 (PreCG)", + "id": "287", + "grayvalue": "34" + }, + "dat": { + "colors": "287 45 33 27", + "names": "287 6d1" } } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6d1 (PreCG)", + "arealabel": "Area-6d1", + "status": "publicDOI", + "labelIndex": "287", + "doi": "https://doi.org/10.25493/4WSQ-8FM", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/6a2ee2d8-120c-40de-b390-53ca87210298" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6d1 (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" } } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dorsal precentral gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { - "name": "lateral occipital cortex", + "name": "posterior medial superior frontal gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area hOc4lp (LOC)", - "arealabel": "Area-hOc4lp", + "name": "Area 6ma (preSMA, mesial SFG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/4B87-Q8X", - "synonyms": [], - "rgb": [ - 96, - 113, - 253 - ], "children": [ { - "name": "Area hOc4lp (LOC) - left hemisphere", + "name": "Area 6ma (preSMA, mesial SFG)", + "status": "left hemisphere", + "labelIndex": 24, "rgb": [ - 96, - 113, - 253 - ], - "labelIndex": 117, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -34066943, - -88725728, - 6360721 + 204, + 108, + 222 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697", + "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, left hemisphere]" + "kgId": "89347668-eee6-4be5-b783-8dddf422bba0" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + } + }, + "_": { + "xml": { + "name": "Area 6ma (preSMA, mesial SFG)", + "id": "299", + "grayvalue": "24" + }, + "dat": { + "colors": "299 204 108 222", + "names": "299 presma" + } + } }, { - "name": "Area hOc4lp (LOC) - right hemisphere", + "name": "Area 6ma (preSMA, mesial SFG)", + "status": "right hemisphere", + "labelIndex": 24, "rgb": [ - 96, - 113, - 253 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 117, - "children": [], - "status": "publicP", - "position": [ - 38538256, - -86375516, - 4086228 + 204, + 108, + 222 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697", + "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4lp (LOC) [v3.4, Colin 27, right hemisphere]" + "kgId": "89347668-eee6-4be5-b783-8dddf422bba0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + } + }, + "_": { + "xml": { + "name": "Area 6ma (preSMA, mesial SFG)", + "id": "299", + "grayvalue": "24" + }, + "dat": { + "colors": "299 204 108 222", + "names": "299 presma" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6ma (preSMA, mesial SFG)", + "arealabel": "Area-6ma", + "status": "publicP", + "labelIndex": "299", + "doi": "https://doi.org/10.25493/WVNR-SPT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/89347668-eee6-4be5-b783-8dddf422bba0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6ma (preSMA, mesial SFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" } - }, - "relatedAreas": [] - }, - { - "name": "Area hOc5 (LOC)", - "arealabel": "Area-hOc5", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "posterior medial superior frontal gyrus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/2WSH-MCT", "synonyms": [], - "rgb": [ - 255, - 0, - 0 - ], + "rgb": null + } + } + }, + { + "name": "superior frontal sulcus", + "status": null, + "children": [ + { + "name": "Area 6d3 (SFS)", + "status": "publicDOI", "children": [ { - "name": "Area hOc5 (LOC) - left hemisphere", + "name": "Area 6d3 (SFS)", + "status": "left hemisphere", + "labelIndex": 62, "rgb": [ - 255, - 0, - 0 - ], - "labelIndex": 6, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -42484324, - -71486486, - 1795676 + 55, + 239, + 21 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20", + "filename": "Area 6d3 (SFS) [v4.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc5 (LOC) [v2.4, Colin 27, left hemisphere]" + "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + } + }, + "_": { + "xml": { + "name": "Area 6d3 (SFS)", + "id": "289", + "grayvalue": "62" + }, + "dat": { + "colors": "289 55 239 21", + "names": "289 6d3" } - ] + } }, { - "name": "Area hOc5 (LOC) - right hemisphere", + "name": "Area 6d3 (SFS)", + "status": "right hemisphere", + "labelIndex": 62, "rgb": [ - 255, - 0, - 0 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 6, - "children": [], - "status": "publicP", - "position": [ - 48090700, - -66172216, - 3121699 + 55, + 239, + 21 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20", + "filename": "Area 6d3 (SFS) [v4.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc5 (LOC) [v2.4, Colin 27, right hemisphere]" + "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + } + }, + "_": { + "xml": { + "name": "Area 6d3 (SFS)", + "id": "289", + "grayvalue": "62" + }, + "dat": { + "colors": "289 55 239 21", + "names": "289 6d3" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6d3 (SFS)", + "arealabel": "Area-6d3", + "status": "publicDOI", + "labelIndex": "289", + "doi": "https://doi.org/10.25493/NVJ5-JJ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/502b40a0-1689-4329-854e-a77dfd94d30b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6d3 (SFS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/266c1ada-1840-462f-8223-7ff2df457552" } - }, - "relatedAreas": [] - }, - { - "name": "Area hOc4la (LOC)", - "arealabel": "Area-hOc4la", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior frontal sulcus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/Z9JX-WKB", "synonyms": [], - "rgb": [ - 233, - 168, - 189 - ], + "rgb": null + } + } + }, + { + "name": "frontal pole", + "status": null, + "children": [ + { + "name": "Area Fp1 (FPole)", + "status": "publicP", "children": [ { - "name": "Area hOc4la (LOC) - left hemisphere", + "name": "Area Fp1 (FPole)", + "status": "left hemisphere", + "labelIndex": 100, "rgb": [ - 233, - 168, - 189 - ], - "labelIndex": 118, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -46291484, - -76947955, - -372761 + 226, + 14, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4", + "filename": "Area Fp1 (FPole) [v2.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4la (LOC) [v3.4, Colin 27, left hemisphere]" + "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" + } + }, + "_": { + "xml": { + "name": "Area Fp1 (FPole)", + "id": "212", + "grayvalue": "100" + }, + "dat": { + "colors": "212 226 14 200", + "names": "212 ba10p" } - ] + } }, { - "name": "Area hOc4la (LOC) - right hemisphere", + "name": "Area Fp1 (FPole)", + "status": "right hemisphere", + "labelIndex": 100, "rgb": [ - 233, - 168, - 189 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 118, - "children": [], - "status": "publicP", - "position": [ - 48566255, - -73862041, - -779202 + 226, + 14, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4", + "filename": "Area Fp1 (FPole) [v2.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area hOc4la (LOC) [v3.4, Colin 27, right hemisphere]" + "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" + } + }, + "_": { + "xml": { + "name": "Area Fp1 (FPole)", + "id": "212", + "grayvalue": "100" + }, + "dat": { + "colors": "212 226 14 200", + "names": "212 ba10p" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "94365b82-6204-4937-8b86-fe0433287938" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fp1 (FPole)", + "arealabel": "Area-Fp1", + "status": "publicP", + "labelIndex": "212", + "doi": "https://doi.org/10.25493/PTKW-R7W", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fp1 (FPole)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/10dc5343-941b-4e3e-80ed-df031c33bbc6" } - }, - "relatedAreas": [] - } - ] - } - ] - }, - { - "name": "frontal lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "inferior frontal gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area 44 (IFG)", - "arealabel": "Area-44", + "name": "Area Fp2 (FPole)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F9P8-ZVW", - "synonyms": [], - "relatedAreas": [ + "children": [ { - "name": "Area 44v", + "name": "Area Fp2 (FPole)", + "status": "left hemisphere", + "labelIndex": 50, + "rgb": [ + 239, + 137, + 211 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Fp2 (FPole) [v2.4, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7e5e7aa8-28b8-445b-8980-2a6f3fa645b3" + "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" + } + }, + "_": { + "xml": { + "name": "Area Fp2 (FPole)", + "id": "211", + "grayvalue": "50" + }, + "dat": { + "colors": "211 239 137 211", + "names": "211 ba10m" } } }, { - "name": "Area 44d", + "name": "Area Fp2 (FPole)", + "status": "right hemisphere", + "labelIndex": 50, + "rgb": [ + 239, + 137, + 211 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Fp2 (FPole) [v2.4, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8aeae833-81c8-4e27-a8d6-deee339d6052" + "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" + } + }, + "_": { + "xml": { + "name": "Area Fp2 (FPole)", + "id": "211", + "grayvalue": "50" + }, + "dat": { + "colors": "211 239 137 211", + "names": "211 ba10m" } } } ], - "rgb": [ - 54, - 74, - 75 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fp2 (FPole)", + "arealabel": "Area-Fp2", + "status": "publicP", + "labelIndex": "211", + "doi": "https://doi.org/10.25493/GZW1-7R3", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8d2f06b2-d3bd-4f89-a6e3-953c90cc9661" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fp2 (FPole)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3bf7bde1-cc06-4657-b296-380275f9d4b8" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "frontal pole", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "precentral gyrus ", + "status": null, + "children": [ + { + "name": "Area 4p (PreCG)", + "status": "publicP", "children": [ { - "name": "Area 44 (IFG) - left hemisphere", + "name": "Area 4p (PreCG)", + "status": "left hemisphere", + "labelIndex": 45, "rgb": [ - 54, - 74, - 75 - ], - "labelIndex": 2, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -54242820, - 11425127, - 18292735 + 116, + 92, + 124 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369", + "filename": "Area 4p (PreCG) [v9.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 44 (IFG) [v7.4, Colin 27, left hemisphere]" + "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" + } + }, + "_": { + "xml": { + "name": "Area 4p (PreCG)", + "id": "123", + "grayvalue": "45" + }, + "dat": { + "colors": "123 116 92 124", + "names": "123 4p" } - ] + } }, { - "name": "Area 44 (IFG) - right hemisphere", + "name": "Area 4p (PreCG)", + "status": "right hemisphere", + "labelIndex": 45, "rgb": [ - 54, - 74, - 75 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 2, - "children": [], - "status": "publicP", - "position": [ - 56359074, - 11741030, - 13444358 + 116, + 92, + 124 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369", + "filename": "Area 4p (PreCG) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 44 (IFG) [v7.4, Colin 27, right hemisphere]" + "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" + } + }, + "_": { + "xml": { + "name": "Area 4p (PreCG)", + "id": "123", + "grayvalue": "45" + }, + "dat": { + "colors": "123 116 92 124", + "names": "123 4p" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 4p (PreCG)", + "arealabel": "Area-4p", + "status": "publicP", + "labelIndex": "123", + "doi": "https://doi.org/10.25493/5HSF-81J", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/02a0087e-3fdc-4b95-826a-0a953490103b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 4p (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/82e6e826-a439-41db-84ff-4674ca3d643a" } } }, { - "name": "Area 45 (IFG)", - "arealabel": "Area-45", + "name": "Area 4a (PreCG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/MR1V-BJ3", - "synonyms": [], - "relatedAreas": [ + "children": [ { - "name": "Area 45", + "name": "Area 4a (PreCG)", + "status": "left hemisphere", + "labelIndex": 92, + "rgb": [ + 118, + 239, + 183 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area 4a (PreCG) [v9.4, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "131e6de8-b073-4f01-8f60-1bdb5a6c9a9a" + "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" + } + }, + "_": { + "xml": { + "name": "Area 4a (PreCG)", + "id": "124", + "grayvalue": "92" + }, + "dat": { + "colors": "124 118 239 183", + "names": "124 4a" } } - } - ], - "rgb": [ - 167, - 103, - 146 - ], - "children": [ + }, { - "name": "Area 45 (IFG) - left hemisphere", + "name": "Area 4a (PreCG)", + "status": "right hemisphere", + "labelIndex": 93, "rgb": [ - 167, - 103, - 146 - ], - "labelIndex": 1, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -54903012, - 26558233, - 15528514 + 118, + 239, + 183 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47", + "filename": "Area 4a (PreCG) [v9.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 45 (IFG) [v7.4, Colin 27, left hemisphere]" + "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f" } - ] - }, - { - "name": "Area 45 (IFG) - right hemisphere", - "rgb": [ - 167, - 103, - 146 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 1, - "children": [], - "status": "publicP", - "position": [ - 55787613, - 26216770, - 12102941 ], - "originDatasets": [ - { - "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 45 (IFG) [v7.4, Colin 27, right hemisphere]" + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" + } + }, + "_": { + "xml": { + "name": "Area 4a (PreCG)", + "id": "124", + "grayvalue": "93" + }, + "dat": { + "colors": "124 118 239 183", + "names": "124 4a" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "cb32e688-43f0-4ae3-9554-085973137663" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 4a (PreCG)", + "arealabel": "Area-4a", + "status": "publicP", + "labelIndex": "124", + "doi": "https://doi.org/10.25493/PVPP-P3Q", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/6e1728c2-dd89-40d4-a0ea-fdede469684f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 4a (PreCG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/175848ff-4c55-47e3-a0ae-f905a14e03cd" } } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "precentral gyrus ", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { - "name": "dorsal precentral gyrus", + "name": "mesial precentral gyrus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area 6d2 (PreCG)", - "arealabel": "Area-6d2", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/KXHS-N90", - "synonyms": [], - "rgb": [ - 170, - 151, - 180 - ], + "name": "Area 6mp (SMA, mesial SFG)", + "status": "publicP", "children": [ { - "name": "Area 6d2 (PreCG) - left hemisphere", + "name": "Area 6mp (SMA, mesial SFG)", + "status": "left hemisphere", + "labelIndex": 20, "rgb": [ - 170, - 151, - 180 - ], - "labelIndex": 288, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -15757793, - 2030353, - 68024610 + 75, + 95, + 87 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3", + "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d2 (PreCG) [v4.1, Colin 27, left hemisphere]" + "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + } + }, + "_": { + "xml": { + "name": "Area 6mp (SMA, mesial SFG)", + "id": "298", + "grayvalue": "20" + }, + "dat": { + "colors": "298 75 95 87", + "names": "298 sma" } - ] + } }, { - "name": "Area 6d2 (PreCG) - right hemisphere", + "name": "Area 6mp (SMA, mesial SFG)", + "status": "right hemisphere", + "labelIndex": 20, "rgb": [ - 170, - 151, - 180 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 288, - "children": [], - "status": "publicDOI", - "position": [ - 14562976, - 2312675, - 68442439 + 75, + 95, + 87 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3", + "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d2 (PreCG) [v4.1, Colin 27, right hemisphere]" + "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + } + }, + "_": { + "xml": { + "name": "Area 6mp (SMA, mesial SFG)", + "id": "298", + "grayvalue": "20" + }, + "dat": { + "colors": "298 75 95 87", + "names": "298 sma" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 6mp (SMA, mesial SFG)", + "arealabel": "Area-6mp", + "status": "publicP", + "labelIndex": "298", + "doi": "https://doi.org/10.25493/2E1T-47F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1e7ee33c-a1e4-49a9-9093-54520392dff9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 6mp (SMA, mesial SFG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/def99e8e-ce8f-4a62-bd5d-739948c4b010" } - }, - "relatedAreas": [] - }, - { - "name": "Area 6d1 (PreCG)", - "arealabel": "Area-6d1", - "status": "publicDOI", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "mesial precentral gyrus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/4WSQ-8FM", "synonyms": [], - "rgb": [ - 45, - 33, - 27 - ], + "rgb": null + } + } + }, + { + "name": "medial orbitofrontal cortex", + "status": null, + "children": [ + { + "name": "Area Fo1 (OFC)", + "status": "publicP", "children": [ { - "name": "Area 6d1 (PreCG) - left hemisphere", + "name": "Area Fo1 (OFC)", + "status": "left hemisphere", + "labelIndex": 111, "rgb": [ - 45, - 33, - 27 - ], - "labelIndex": 287, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -20332759, - -14746524, - 68590141 + 7, + 255, + 179 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298", + "filename": "Area Fo1 (OFC) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d1 (PreCG) [v4.1, Colin 27, left hemisphere]" + "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" + } + }, + "_": { + "xml": { + "name": "Area Fo1 (OFC)", + "id": "3", + "grayvalue": "111" + }, + "dat": { + "colors": "3 7 255 179", + "names": "3 11a" } - ] + } }, { - "name": "Area 6d1 (PreCG) - right hemisphere", + "name": "Area Fo1 (OFC)", + "status": "right hemisphere", + "labelIndex": 111, "rgb": [ - 45, - 33, - 27 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 287, - "children": [], - "status": "publicDOI", - "position": [ - 20258981, - -16559656, - 68870890 + 7, + 255, + 179 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298", + "filename": "Area Fo1 (OFC) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d1 (PreCG) [v4.1, Colin 27, right hemisphere]" + "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" + } + }, + "_": { + "xml": { + "name": "Area Fo1 (OFC)", + "id": "3", + "grayvalue": "111" + }, + "dat": { + "colors": "3 7 255 179", + "names": "3 11a" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo1 (OFC)", + "arealabel": "Area-Fo1", + "status": "publicP", + "labelIndex": "3", + "doi": "https://doi.org/10.25493/H2N2-6J2", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2153a21a-7fee-4fcd-9a91-6d23c494403b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo1 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "posterior medial superior frontal gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area 6ma (preSMA, mesial SFG)", - "arealabel": "Area-6ma", + "name": "Area Fo3 (OFC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/WVNR-SPT", - "synonyms": [], - "rgb": [ - 204, - 108, - 222 - ], "children": [ { - "name": "Area 6ma (preSMA, mesial SFG) - left hemisphere", + "name": "Area Fo3 (OFC)", + "status": "left hemisphere", + "labelIndex": 124, "rgb": [ - 204, - 108, - 222 - ], - "labelIndex": 299, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -4083913, - 4296092, - 58555023 + 182, + 189, + 250 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "89347668-eee6-4be5-b783-8dddf422bba0", + "filename": "Area Fo3 (OFC) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, left hemisphere]" + "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" + } + }, + "_": { + "xml": { + "name": "Area Fo3 (OFC)", + "id": "5", + "grayvalue": "124" + }, + "dat": { + "colors": "5 182 189 250", + "names": "5 13" } - ] + } }, { - "name": "Area 6ma (preSMA, mesial SFG) - right hemisphere", + "name": "Area Fo3 (OFC)", + "status": "right hemisphere", + "labelIndex": 124, "rgb": [ - 204, - 108, - 222 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 299, - "children": [], - "status": "publicP", - "position": [ - 5230140, - 4042128, - 58355079 + 182, + 189, + 250 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "89347668-eee6-4be5-b783-8dddf422bba0", + "filename": "Area Fo3 (OFC) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6ma (preSMA, mesial SFG) [v9.1, Colin 27, right hemisphere]" + "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" + } + }, + "_": { + "xml": { + "name": "Area Fo3 (OFC)", + "id": "5", + "grayvalue": "124" + }, + "dat": { + "colors": "5 182 189 250", + "names": "5 13" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo3 (OFC)", + "arealabel": "Area-Fo3", + "status": "publicP", + "labelIndex": "5", + "doi": "https://doi.org/10.25493/E1YQ-65U", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/fca58db5-fadb-4314-a06c-75948110d7f0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo3 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/741f6a9e-cfd7-4173-ac7d-ee616c29555e" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "superior frontal sulcus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area 6d3 (SFS)", - "arealabel": "Area-6d3", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/NVJ5-JJ", - "synonyms": [], - "rgb": [ - 55, - 239, - 21 - ], + "name": "Area Fo2 (OFC)", + "status": "publicP", "children": [ { - "name": "Area 6d3 (SFS) - left hemisphere", + "name": "Area Fo2 (OFC)", + "status": "left hemisphere", + "labelIndex": 118, "rgb": [ - 55, - 239, - 21 - ], - "labelIndex": 289, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -23315931, - 4317151, - 51434008 + 0, + 255, + 0 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b", + "filename": "Area Fo2 (OFC) [v3.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d3 (SFS) [v4.1, Colin 27, left hemisphere]" + "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" + } + }, + "_": { + "xml": { + "name": "Area Fo2 (OFC)", + "id": "4", + "grayvalue": "118" + }, + "dat": { + "colors": "4 0 255 0", + "names": "4 11p" } - ] + } }, { - "name": "Area 6d3 (SFS) - right hemisphere", + "name": "Area Fo2 (OFC)", + "status": "right hemisphere", + "labelIndex": 118, "rgb": [ - 55, - 239, - 21 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 289, - "children": [], - "status": "publicDOI", - "position": [ - 25173639, - 1578188, - 53334281 + 0, + 255, + 0 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b", + "filename": "Area Fo2 (OFC) [v3.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6d3 (SFS) [v4.1, Colin 27, right hemisphere]" + "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" + } + }, + "_": { + "xml": { + "name": "Area Fo2 (OFC)", + "id": "4", + "grayvalue": "118" + }, + "dat": { + "colors": "4 0 255 0", + "names": "4 11p" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo2 (OFC)", + "arealabel": "Area-Fo2", + "status": "publicP", + "labelIndex": "4", + "doi": "https://doi.org/10.25493/3JB9-2V2", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2e8f2ce5-abf8-4881-8ea6-4eddcb188c12" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo2 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/30a04d2b-58e1-43d7-8b8f-1f0b598382d0" } - }, - "relatedAreas": [] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "medial orbitofrontal cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { - "name": "frontal pole", + "name": "frontal operculum ", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area Fp1 (FPole)", - "arealabel": "Area-Fp1", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/PTKW-R7W", - "synonyms": [], - "rgb": [ - 226, - 14, - 200 - ], + "name": "Area OP6 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area Fp1 (FPole) - left hemisphere", + "name": "Area OP6 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 38, "rgb": [ - 226, - 14, - 200 - ], - "labelIndex": 212, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -16331031, - 64168302, - 549101 + 138, + 63, + 100 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107", + "filename": "Area OP6 (Frontal Operculum) [v2.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp1 (FPole) [v2.4, Colin 27, left hemisphere]" + "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af208413-1233-4512-9395-8ac2c4533875" + } + }, + "_": { + "xml": { + "name": "Area OP6 (Frontal Operculum)", + "id": "349", + "grayvalue": "38" + }, + "dat": { + "colors": "349 138 63 100", + "names": "349 Op6" } - ] + } }, { - "name": "Area Fp1 (FPole) - right hemisphere", + "name": "Area OP6 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 38, "rgb": [ - 226, - 14, - 200 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 212, - "children": [], - "status": "publicP", - "position": [ - 18482225, - 63988011, - -317043 + 138, + 63, + 100 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107", + "filename": "Area OP6 (Frontal Operculum) [v2.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp1 (FPole) [v2.4, Colin 27, right hemisphere]" + "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4" } - ] - } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af208413-1233-4512-9395-8ac2c4533875" + } + }, + "_": { + "xml": { + "name": "Area OP6 (Frontal Operculum)", + "id": "349", + "grayvalue": "38" + }, + "dat": { + "colors": "349 138 63 100", + "names": "349 Op6" + } + } + } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP6 (Frontal Operculum)", + "arealabel": "Area-OP6", + "status": "publicDOI", + "labelIndex": "349", + "doi": "https://doi.org/10.25493/41KE-8HT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ee72c2a3-bc04-4853-b6db-cb9ecdd247b4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP6 (Frontal Operculum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/af208413-1233-4512-9395-8ac2c4533875" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fp2 (FPole)", - "arealabel": "Area-Fp2", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/GZW1-7R3", - "synonyms": [], - "rgb": [ - 239, - 137, - 211 - ], + "name": "Area OP8 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area Fp2 (FPole) - left hemisphere", + "name": "Area OP8 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 84, "rgb": [ - 239, - 137, - 211 - ], - "labelIndex": 211, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -3739067, - 59074587, - -1181973 + 29, + 76, + 168 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661", + "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp2 (FPole) [v2.4, Colin 27, left hemisphere]" + "kgId": "43d46017-2bef-467b-b870-9866c838e4f3" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP8 (Frontal Operculum)", + "id": "273", + "grayvalue": "84" + }, + "dat": { + "colors": "273 29 76 168", + "names": "273 Op8" } - ] + } }, { - "name": "Area Fp2 (FPole) - right hemisphere", + "name": "Area OP8 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 83, "rgb": [ - 239, - 137, - 211 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 211, - "children": [], - "status": "publicP", - "position": [ - 6093420, - 59611191, - -509606 + 29, + 76, + 168 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661", + "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fp2 (FPole) [v2.4, Colin 27, right hemisphere]" + "kgId": "43d46017-2bef-467b-b870-9866c838e4f3" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" - } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "precentral gyrus ", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area 4p (PreCG)", - "arealabel": "Area-4p", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/5HSF-81J", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area 4p", - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "861ab96a-c4b5-4ba6-bd40-1e80d4680f89" + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP8 (Frontal Operculum)", + "id": "273", + "grayvalue": "83" + }, + "dat": { + "colors": "273 29 76 168", + "names": "273 Op8" } } } ], - "rgb": [ - 116, - 92, - 124 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP8 (Frontal Operculum)", + "arealabel": "Area-OP8", + "status": "publicDOI", + "labelIndex": "273", + "doi": "https://doi.org/10.25493/NGF8-TA4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/43d46017-2bef-467b-b870-9866c838e4f3" + } + } + }, + { + "name": "Area OP5 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area 4p (PreCG) - left hemisphere", + "name": "Area OP5 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 87, "rgb": [ - 116, - 92, - 124 - ], - "labelIndex": 123, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -36140917, - -22750424, - 49282965 + 222, + 78, + 253 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b", + "filename": "Area OP5 (Frontal Operculum) [v2.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4p (PreCG) [v9.4, Colin 27, left hemisphere]" + "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP5 (Frontal Operculum)", + "id": "348", + "grayvalue": "87" + }, + "dat": { + "colors": "348 222 78 253", + "names": "348 Op5" } - ] + } }, { - "name": "Area 4p (PreCG) - right hemisphere", + "name": "Area OP5 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 88, "rgb": [ - 116, - 92, - 124 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 123, - "children": [], - "status": "publicP", - "position": [ - 37510795, - -21359659, - 46456250 + 222, + 78, + 253 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b", + "filename": "Area OP5 (Frontal Operculum) [v2.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4p (PreCG) [v9.4, Colin 27, right hemisphere]" + "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP5 (Frontal Operculum)", + "id": "348", + "grayvalue": "88" + }, + "dat": { + "colors": "348 222 78 253", + "names": "348 Op5" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP5 (Frontal Operculum)", + "arealabel": "Area-OP5", + "status": "publicDOI", + "labelIndex": "348", + "doi": "https://doi.org/10.25493/TWFH-BJZ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d9fc6c97-7a2c-4620-aa0f-7ffc9e410918" } } }, { - "name": "Area 4a (PreCG)", - "arealabel": "Area-4a", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/PVPP-P3Q", - "synonyms": [], - "rgb": [ - 118, - 239, - 183 - ], + "name": "Area OP9 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area 4a (PreCG) - left hemisphere", + "name": "Area OP9 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 58, "rgb": [ - 118, - 239, - 183 - ], - "labelIndex": 124, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -17367391, - -28669064, - 67404682 + 175, + 123, + 34 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f", + "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4a (PreCG) [v9.4, Colin 27, left hemisphere]" + "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP9 (Frontal Operculum)", + "id": "274", + "grayvalue": "58" + }, + "dat": { + "colors": "274 175 123 34", + "names": "274 Op9" } - ] + } }, { - "name": "Area 4a (PreCG) - right hemisphere", + "name": "Area OP9 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 58, "rgb": [ - 118, - 239, - 183 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 124, - "children": [], - "status": "publicP", - "position": [ - 9609157, - -31334779, - 68068112 + 175, + 123, + 34 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f", + "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 4a (PreCG) [v9.4, Colin 27, right hemisphere]" + "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed" + } + ], + "fullId": {}, + "_": { + "xml": { + "name": "Area OP9 (Frontal Operculum)", + "id": "274", + "grayvalue": "58" + }, + "dat": { + "colors": "274 175 123 34", + "names": "274 Op9" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP9 (Frontal Operculum)", + "arealabel": "Area-OP9", + "status": "publicDOI", + "labelIndex": "274", + "doi": "https://doi.org/10.25493/3A30-5E4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2034ee9f-69f8-4633-9b81-eaf4b8f44aed" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "mesial precentral gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area 6mp (SMA, mesial SFG)", - "arealabel": "Area-6mp", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/2E1T-47F", - "synonyms": [], - "rgb": [ - 75, - 95, - 87 - ], + "name": "Area OP7 (Frontal Operculum)", + "status": "publicDOI", "children": [ { - "name": "Area 6mp (SMA, mesial SFG) - left hemisphere", + "name": "Area OP7 (Frontal Operculum)", + "status": "left hemisphere", + "labelIndex": 44, "rgb": [ - 75, - 95, - 87 - ], - "labelIndex": 298, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -4094374, - -14286751, - 59329220 + 134, + 116, + 192 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9", + "filename": "Area OP7 (Frontal Operculum) [v2.0, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, left hemisphere]" + "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc" + } + }, + "_": { + "xml": { + "name": "Area OP7 (Frontal Operculum)", + "id": "350", + "grayvalue": "44" + }, + "dat": { + "colors": "350 134 116 192", + "names": "350 Op7" } - ] + } }, { - "name": "Area 6mp (SMA, mesial SFG) - right hemisphere", + "name": "Area OP7 (Frontal Operculum)", + "status": "right hemisphere", + "labelIndex": 44, "rgb": [ - 75, - 95, - 87 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 298, - "children": [], - "status": "publicP", - "position": [ - 4949202, - -13788668, - 57534028 + 134, + 116, + 192 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9", + "filename": "Area OP7 (Frontal Operculum) [v2.0, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 6mp (SMA, mesial SFG) [v9.1, Colin 27, right hemisphere]" + "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc" + } + }, + "_": { + "xml": { + "name": "Area OP7 (Frontal Operculum)", + "id": "350", + "grayvalue": "44" + }, + "dat": { + "colors": "350 134 116 192", + "names": "350 Op7" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + "_": { + "jubrain-ontology_24.json": { + "name": "Area OP7 (Frontal Operculum)", + "arealabel": "Area-OP7", + "status": "publicDOI", + "labelIndex": "350", + "doi": "https://doi.org/10.25493/T2M3-2ST", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ed0b0aee-4260-4d4d-b84b-63a718f24f8d" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area OP7 (Frontal Operculum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/c7fca306-e515-40bc-a61e-8014ddd45ddc" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "frontal operculum ", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "medial orbitofrontal cortex", + "name": "lateral orbitofrontal cortex", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area Fo1 (OFC)", - "arealabel": "Area-Fo1", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/H2N2-6J2", - "synonyms": [], - "rgb": [ - 7, - 255, - 179 - ], + "name": "Area Fo5 (OFC)", + "status": "publicDOI", "children": [ { - "name": "Area Fo1 (OFC) - left hemisphere", + "name": "Area Fo5 (OFC)", + "status": "left hemisphere", + "labelIndex": 41, "rgb": [ - 7, - 255, - 179 - ], - "labelIndex": 3, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -7962771, - 41364968, - -22537687 + 219, + 11, + 91 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b", + "filename": "Area Fo5 (OFC) [v2.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo1 (OFC) [v3.4, Colin 27, left hemisphere]" + "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" + } + }, + "_": { + "xml": { + "name": "Area Fo5 (OFC)", + "id": "325", + "grayvalue": "41" + }, + "dat": { + "colors": "325 219 11 91", + "names": "325 Fo5" + } + } }, { - "name": "Area Fo1 (OFC) - right hemisphere", + "name": "Area Fo5 (OFC)", + "status": "right hemisphere", + "labelIndex": 41, "rgb": [ - 7, - 255, - 179 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 3, - "children": [], - "status": "publicP", - "position": [ - 9705948, - 40760961, - -22481988 + 219, + 11, + 91 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b", + "filename": "Area Fo5 (OFC) [v2.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo1 (OFC) [v3.4, Colin 27, right hemisphere]" + "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" + } + }, + "_": { + "xml": { + "name": "Area Fo5 (OFC)", + "id": "325", + "grayvalue": "41" + }, + "dat": { + "colors": "325 219 11 91", + "names": "325 Fo5" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo5 (OFC)", + "arealabel": "Area-Fo5", + "status": "publicDOI", + "labelIndex": "325", + "doi": "https://doi.org/10.25493/HJMY-ZZP", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/688bee67-abc0-4a17-9800-21c5c9bf3870" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo5 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3fd2e113-ec08-407b-bc88-172c9285694a" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fo3 (OFC)", - "arealabel": "Area-Fo3", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/E1YQ-65U", - "synonyms": [], - "rgb": [ - 182, - 189, - 250 - ], + "name": "Area Fo4 (OFC)", + "status": "publicDOI", "children": [ { - "name": "Area Fo3 (OFC) - left hemisphere", + "name": "Area Fo4 (OFC)", + "status": "left hemisphere", + "labelIndex": 9, "rgb": [ - 182, - 189, - 250 - ], - "labelIndex": 5, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -21866985, - 33732378, - -19882472 + 163, + 204, + 53 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0", + "filename": "Area Fo4 (OFC) [v2.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo3 (OFC) [v3.4, Colin 27, left hemisphere]" + "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" + } + }, + "_": { + "xml": { + "name": "Area Fo4 (OFC)", + "id": "324", + "grayvalue": "9" + }, + "dat": { + "colors": "324 163 204 53", + "names": "324 Fo4" } - ] + } }, { - "name": "Area Fo3 (OFC) - right hemisphere", + "name": "Area Fo4 (OFC)", + "status": "right hemisphere", + "labelIndex": 9, "rgb": [ - 182, - 189, - 250 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 5, - "children": [], - "status": "publicP", - "position": [ - 22929678, - 33527877, - -20231493 + 163, + 204, + 53 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0", + "filename": "Area Fo4 (OFC) [v2.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo3 (OFC) [v3.4, Colin 27, right hemisphere]" + "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" + } + }, + "_": { + "xml": { + "name": "Area Fo4 (OFC)", + "id": "324", + "grayvalue": "9" + }, + "dat": { + "colors": "324 163 204 53", + "names": "324 Fo4" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo4 (OFC)", + "arealabel": "Area-Fo4", + "status": "publicDOI", + "labelIndex": "324", + "doi": "https://doi.org/10.25493/29G0-66F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo4 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/2cdee956-207a-4d4d-b051-bef80045210b" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fo2 (OFC)", - "arealabel": "Area-Fo2", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/3JB9-2V2", - "synonyms": [], - "rgb": [ - 0, - 255, - 0 - ], + "name": "Area Fo6 (OFC)", + "status": "publicDOI", "children": [ { - "name": "Area Fo2 (OFC) - left hemisphere", + "name": "Area Fo6 (OFC)", + "status": "left hemisphere", + "labelIndex": 113, "rgb": [ - 0, - 255, - 0 - ], - "labelIndex": 4, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -8588272, - 22532156, - -20474464 + 199, + 156, + 187 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12", + "filename": "Area Fo6 (OFC) [v2.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo2 (OFC) [v3.4, Colin 27, left hemisphere]" + "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" + } + }, + "_": { + "xml": { + "name": "Area Fo6 (OFC)", + "id": "326", + "grayvalue": "113" + }, + "dat": { + "colors": "326 199 156 187", + "names": "326 Fo6" } - ] + } }, { - "name": "Area Fo2 (OFC) - right hemisphere", + "name": "Area Fo6 (OFC)", + "status": "right hemisphere", + "labelIndex": 113, "rgb": [ - 0, - 255, - 0 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 4, - "children": [], - "status": "publicP", - "position": [ - 9164379, - 21928964, - -20593342 + 199, + 156, + 187 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12", + "filename": "Area Fo6 (OFC) [v2.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo2 (OFC) [v3.4, Colin 27, right hemisphere]" + "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" + } + }, + "_": { + "xml": { + "name": "Area Fo6 (OFC)", + "id": "326", + "grayvalue": "113" + }, + "dat": { + "colors": "326 199 156 187", + "names": "326 Fo6" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo6 (OFC)", + "arealabel": "Area-Fo6", + "status": "publicDOI", + "labelIndex": "326", + "doi": "https://doi.org/10.25493/34Q4-H62", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/ab21e50f-c46d-45c5-b9f6-2b82d5728400" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo6 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/330ae178-557c-4bd0-a932-f138c0a05345" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "frontal operculum ", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area OP8 (Frontal Operculum)", - "arealabel": "Area-OP8", + "name": "Area Fo7 (OFC)", "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/NGF8-TA4", - "synonyms": [], - "rgb": [ - 29, - 76, - 168 - ], "children": [ { - "name": "Area OP8 (Frontal Operculum) - left hemisphere", + "name": "Area Fo7 (OFC)", + "status": "left hemisphere", + "labelIndex": 66, "rgb": [ - 29, - 76, - 168 - ], - "labelIndex": 273, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -41777921, - 17183344, - 7912847 + 64, + 211, + 186 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "43d46017-2bef-467b-b870-9866c838e4f3", + "filename": "Area Fo7 (OFC) [v2.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]" + "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" + } + }, + "_": { + "xml": { + "name": "Area Fo7 (OFC)", + "id": "327", + "grayvalue": "66" + }, + "dat": { + "colors": "327 64 211 186", + "names": "327 Fo7" } - ] + } }, { - "name": "Area OP8 (Frontal Operculum) - right hemisphere", + "name": "Area Fo7 (OFC)", + "status": "right hemisphere", + "labelIndex": 66, "rgb": [ - 29, - 76, - 168 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 273, - "children": [], - "status": "publicDOI", - "position": [ - 42725111, - 16774146, - 7832095 + 64, + 211, + 186 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "43d46017-2bef-467b-b870-9866c838e4f3", + "filename": "Area Fo7 (OFC) [v2.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP8 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]" + "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" + } + }, + "_": { + "xml": { + "name": "Area Fo7 (OFC)", + "id": "327", + "grayvalue": "66" + }, + "dat": { + "colors": "327 64 211 186", + "names": "327 Fo7" } - ] + } } - ] - }, - { - "name": "Area OP9 (Frontal Operculum)", - "arealabel": "Area-OP9", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/3A30-5E4", - "synonyms": [], - "rgb": [ - 175, - 123, - 34 ], - "children": [ - { - "name": "Area OP9 (Frontal Operculum) - left hemisphere", - "rgb": [ - 175, - 123, - 34 - ], - "labelIndex": 274, - "ngId": "jubrain colin v18 left", - "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Fo7 (OFC)", + "arealabel": "Area-Fo7", "status": "publicDOI", - "position": [ - -45090542, - 25998787, - 5597413 - ], - "originDatasets": [ - { - "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, left hemisphere]" - } - ] + "labelIndex": "327", + "doi": "https://doi.org/10.25493/3WEV-561", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7d4726da-7023-4e64-8b60-9d0271766bea" }, - { - "name": "Area OP9 (Frontal Operculum) - right hemisphere", - "rgb": [ - 175, - 123, - 34 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 274, - "children": [], - "status": "publicDOI", - "position": [ - 44374928, - 26272467, - 2966228 - ], - "originDatasets": [ - { - "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area OP9 (Frontal Operculum) [v5.1, Colin 27, right hemisphere]" - } - ] + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Fo7 (OFC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/1b882148-fcdd-4dbe-b33d-659957840e9e" } - ] + } } - ] - }, - { - "name": "lateral orbitofrontal cortex", + ], + "_": { + "jubrain-ontology_24.json": { + "name": "lateral orbitofrontal cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "frontal lobe", "status": null, "labelIndex": null, "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "insula", + "status": null, + "children": [ + { + "name": "granular insula", + "status": null, "children": [ { - "name": "Area Fo5 (OFC)", - "arealabel": "Area-Fo5", + "name": "Area Ig3 (Insula)", "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/HJMY-ZZP", - "synonyms": [], - "rgb": [ - 219, - 11, - 91 - ], "children": [ { - "name": "Area Fo5 (OFC) - left hemisphere", + "name": "Area Ig3 (Insula)", + "status": "left hemisphere", + "labelIndex": 7, "rgb": [ - 219, - 11, - 91 - ], - "labelIndex": 325, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -38055351, - 56315867, - -8720295 + 105, + 253, + 197 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870", + "filename": "Area Ig3 (Insula) [v3.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo5 (OFC) [v2.1, Colin 27, left hemisphere]" + "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb" + } + }, + "_": { + "xml": { + "name": "Area Ig3 (Insula)", + "id": "336", + "grayvalue": "7" + }, + "dat": { + "colors": "336 105 253 197", + "names": "336 Ig3" } - ] + } }, { - "name": "Area Fo5 (OFC) - right hemisphere", + "name": "Area Ig3 (Insula)", + "status": "right hemisphere", + "labelIndex": 7, "rgb": [ - 219, - 11, - 91 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 325, - "children": [], - "status": "publicDOI", - "position": [ - 40545983, - 54504228, - -4983615 + 105, + 253, + 197 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870", + "filename": "Area Ig3 (Insula) [v3.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo5 (OFC) [v2.1, Colin 27, right hemisphere]" + "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb" + } + }, + "_": { + "xml": { + "name": "Area Ig3 (Insula)", + "id": "336", + "grayvalue": "7" + }, + "dat": { + "colors": "336 105 253 197", + "names": "336 Ig3" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ig3 (Insula)", + "arealabel": "Area-Ig3", + "status": "publicDOI", + "labelIndex": "336", + "doi": "https://doi.org/10.25493/2FTZ-MWQ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e84b2da3-2cd6-4a66-a9fd-84beab67b552" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ig3 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/10dba769-4f6c-40f9-8ffd-e0cce71c5adb" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fo4 (OFC)", - "arealabel": "Area-Fo4", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/29G0-66F", - "synonyms": [], - "rgb": [ - 163, - 204, - 53 - ], + "name": "Area Ig1 (Insula)", + "status": "publicP", "children": [ { - "name": "Area Fo4 (OFC) - left hemisphere", + "name": "Area Ig1 (Insula)", + "status": "left hemisphere", + "labelIndex": 23, "rgb": [ - 163, - 204, - 53 - ], - "labelIndex": 324, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -27573653, - 52998204, - -14510778 + 18, + 111, + 40 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4", + "filename": "Area Ig1 (Insula) [v13.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo4 (OFC) [v2.1, Colin 27, left hemisphere]" + "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" + } + }, + "_": { + "xml": { + "name": "Area Ig1 (Insula)", + "id": "115", + "grayvalue": "23" + }, + "dat": { + "colors": "115 18 111 40", + "names": "115 Ig1" } - ] + } }, { - "name": "Area Fo4 (OFC) - right hemisphere", + "name": "Area Ig1 (Insula)", + "status": "right hemisphere", + "labelIndex": 23, "rgb": [ - 163, - 204, - 53 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 324, - "children": [], - "status": "publicDOI", - "position": [ - 33636124, - 52034755, - -15509742 + 18, + 111, + 40 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4", + "filename": "Area Ig1 (Insula) [v13.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo4 (OFC) [v2.1, Colin 27, right hemisphere]" + "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" + } + }, + "_": { + "xml": { + "name": "Area Ig1 (Insula)", + "id": "115", + "grayvalue": "23" + }, + "dat": { + "colors": "115 18 111 40", + "names": "115 Ig1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ig1 (Insula)", + "arealabel": "Area-Ig1", + "status": "publicP", + "labelIndex": "115", + "doi": "https://doi.org/10.25493/EKV9-29D", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/30d68317-ee5b-4975-b643-4468eb8dfbe3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ig1 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/46cf08af-8086-4e8a-9e9f-182ca583bdf0" } - }, - "relatedAreas": [] + } }, { - "name": "Area Fo6 (OFC)", - "arealabel": "Area-Fo6", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/34Q4-H62", - "synonyms": [], - "rgb": [ - 199, - 156, - 187 - ], + "name": "Area Ig2 (Insula)", + "status": "publicP", "children": [ { - "name": "Area Fo6 (OFC) - left hemisphere", + "name": "Area Ig2 (Insula)", + "status": "left hemisphere", + "labelIndex": 48, "rgb": [ - 199, - 156, - 187 - ], - "labelIndex": 326, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -44272971, - 42876258, - -12938967 + 105, + 61, + 82 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400", + "filename": "Area Ig2 (Insula) [v13.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo6 (OFC) [v2.1, Colin 27, left hemisphere]" + "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" + } + }, + "_": { + "xml": { + "name": "Area Ig2 (Insula)", + "id": "114", + "grayvalue": "48" + }, + "dat": { + "colors": "114 105 61 82", + "names": "114 Ig2" } - ] + } }, { - "name": "Area Fo6 (OFC) - right hemisphere", + "name": "Area Ig2 (Insula)", + "status": "right hemisphere", + "labelIndex": 48, "rgb": [ - 199, - 156, - 187 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 326, - "children": [], - "status": "publicDOI", - "position": [ - 48891176, - 40513824, - -12457353 + 105, + 61, + 82 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400", + "filename": "Area Ig2 (Insula) [v13.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo6 (OFC) [v2.1, Colin 27, right hemisphere]" + "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" + } + }, + "_": { + "xml": { + "name": "Area Ig2 (Insula)", + "id": "114", + "grayvalue": "48" + }, + "dat": { + "colors": "114 105 61 82", + "names": "114 Ig2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ig2 (Insula)", + "arealabel": "Area-Ig2", + "status": "publicP", + "labelIndex": "114", + "doi": "https://doi.org/10.25493/662G-E0W", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ig2 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/49092952-1eef-4b89-b8bf-1bf1f25f149a" } - }, - "relatedAreas": [] - }, - { - "name": "Area Fo7 (OFC)", - "arealabel": "Area-Fo7", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "granular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "agranular insula", + "status": null, + "children": [ + { + "name": "Area Ia (Insula)", "status": "publicDOI", + "children": [ + { + "name": "Area Ia (Insula)", + "status": "left hemisphere", + "labelIndex": 77, + "rgb": [ + 71, + 217, + 62 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Ia (Insula) [v3.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + } + }, + "_": { + "xml": { + "name": "Area Ia (Insula)", + "id": "339", + "grayvalue": "77" + }, + "dat": { + "colors": "339 71 217 62", + "names": "339 aIa" + } + } + }, + { + "name": "Area Ia (Insula)", + "status": "right hemisphere", + "labelIndex": 77, + "rgb": [ + 71, + 217, + 62 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Ia (Insula) [v3.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + } + }, + "_": { + "xml": { + "name": "Area Ia (Insula)", + "id": "339", + "grayvalue": "77" + }, + "dat": { + "colors": "339 71 217 62", + "names": "339 aIa" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Ia (Insula)", + "arealabel": "Area-Ia", + "status": "publicDOI", + "labelIndex": "339", + "doi": "https://doi.org/10.25493/WW8G-T2G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8c98a495-a8d6-4fe8-8de1-5fd876e37d3f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Ia (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/110d0d7b-cb88-48ea-9caf-863f548dbe38" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "agranular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "dys-agranular insula", + "status": null, + "children": [ + { + "name": "Area Id7 (Insula)", + "status": "publicDOI", + "children": [ + { + "name": "Area Id7 (Insula)", + "status": "left hemisphere", + "labelIndex": 107, + "rgb": [ + 188, + 250, + 216 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Id7 (Insula) [v6.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" + } + }, + "_": { + "xml": { + "name": "Area Id7 (Insula)", + "id": "159", + "grayvalue": "107" + }, + "dat": { + "colors": "159 188 250 216", + "names": "159 Iad1" + } + } + }, + { + "name": "Area Id7 (Insula)", + "status": "right hemisphere", + "labelIndex": 106, + "rgb": [ + 188, + 250, + 216 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Id7 (Insula) [v6.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" + } + }, + "_": { + "xml": { + "name": "Area Id7 (Insula)", + "id": "159", + "grayvalue": "106" + }, + "dat": { + "colors": "159 188 250 216", + "names": "159 Iad1" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id7 (Insula)", + "arealabel": "Area-Id7", + "status": "publicDOI", + "labelIndex": "159", + "doi": "https://doi.org/10.25493/88QG-JMS", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2da42b86-d839-41e8-bb27-1bb7697e3868" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id7 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3d5729f5-55c6-412a-8fc1-41a95c71b13a" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dys-agranular insula", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/3WEV-561", "synonyms": [], - "rgb": [ - 64, - 211, - 186 + "rgb": null + } + } + }, + { + "name": "dysgranular insula", + "status": null, + "children": [ + { + "name": "Area Id2 (Insula)", + "status": "publicDOI", + "children": [ + { + "name": "Area Id2 (Insula)", + "status": "left hemisphere", + "labelIndex": 53, + "rgb": [ + 225, + 126, + 73 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Id2 (Insula) [v7.1, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "a260b3b4eadda85af9fd8df4100c10a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf9dea67-649d-4034-ae57-ec389f339277" + } + }, + "_": { + "xml": { + "name": "Area Id2 (Insula)", + "id": "56", + "grayvalue": "53" + }, + "dat": { + "colors": "56 225 126 73", + "names": "56 Id2" + } + } + }, + { + "name": "Area Id2 (Insula)", + "status": "right hemisphere", + "labelIndex": 53, + "rgb": [ + 225, + 126, + 73 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Id2 (Insula) [v7.1, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "a260b3b4eadda85af9fd8df4100c10a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf9dea67-649d-4034-ae57-ec389f339277" + } + }, + "_": { + "xml": { + "name": "Area Id2 (Insula)", + "id": "56", + "grayvalue": "53" + }, + "dat": { + "colors": "56 225 126 73", + "names": "56 Id2" + } + } + } ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id2 (Insula)", + "arealabel": "Area-Id2", + "status": "publicDOI", + "labelIndex": "56", + "doi": "https://doi.org10.25493/377R-T96", + "synonyms": [], + "rgb": null, + "kgHref": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id2 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cf9dea67-649d-4034-ae57-ec389f339277" + } + } + }, + { + "name": "Area Id1 (Insula)", + "status": "publicP", + "children": [ + { + "name": "Area Id1 (Insula)", + "status": "left hemisphere", + "labelIndex": 69, + "rgb": [ + 141, + 112, + 216 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Id1 (Insula) [v13.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c22055c1-514f-4096-906b-abf57286053b" + } + }, + "_": { + "xml": { + "name": "Area Id1 (Insula)", + "id": "116", + "grayvalue": "69" + }, + "dat": { + "colors": "116 141 112 216", + "names": "116 Id1" + } + } + }, + { + "name": "Area Id1 (Insula)", + "status": "right hemisphere", + "labelIndex": 69, + "rgb": [ + 141, + 112, + 216 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Id1 (Insula) [v13.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c22055c1-514f-4096-906b-abf57286053b" + } + }, + "_": { + "xml": { + "name": "Area Id1 (Insula)", + "id": "116", + "grayvalue": "69" + }, + "dat": { + "colors": "116 141 112 216", + "names": "116 Id1" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id1 (Insula)", + "arealabel": "Area-Id1", + "status": "publicP", + "labelIndex": "116", + "doi": "https://doi.org/10.25493/F37H-8WB", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/456e67e7-ef36-4d1e-8b2e-0a1b40831086" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id1 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/c22055c1-514f-4096-906b-abf57286053b" + } + } + }, + { + "name": "Area Id5 (Insula)", + "status": "publicDOI", + "children": [ + { + "name": "Area Id5 (Insula)", + "status": "left hemisphere", + "labelIndex": 72, + "rgb": [ + 112, + 6, + 50 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Id5 (Insula) [v3.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" + } + }, + "_": { + "xml": { + "name": "Area Id5 (Insula)", + "id": "338", + "grayvalue": "72" + }, + "dat": { + "colors": "338 112 6 50", + "names": "338 aId2" + } + } + }, + { + "name": "Area Id5 (Insula)", + "status": "right hemisphere", + "labelIndex": 72, + "rgb": [ + 112, + 6, + 50 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Id5 (Insula) [v3.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" + } + }, + "_": { + "xml": { + "name": "Area Id5 (Insula)", + "id": "338", + "grayvalue": "72" + }, + "dat": { + "colors": "338 112 6 50", + "names": "338 aId2" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id5 (Insula)", + "arealabel": "Area-Id5", + "status": "publicDOI", + "labelIndex": "338", + "doi": "https://doi.org/10.25493/5CK1-B1G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/bfee9d73-2ea3-4b35-9e99-8862e1ed59a9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id5 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e03cd3c6-d0be-481c-b906-9b39c1d0b641" + } + } + }, + { + "name": "Area Id6 (Insula)", + "status": "publicDOI", + "children": [ + { + "name": "Area Id6 (Insula)", + "status": "left hemisphere", + "labelIndex": 56, + "rgb": [ + 138, + 127, + 119 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Id6 (Insula) [v3.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + } + }, + "_": { + "xml": { + "name": "Area Id6 (Insula)", + "id": "340", + "grayvalue": "56" + }, + "dat": { + "colors": "340 138 127 119", + "names": "340 aId3" + } + } + }, + { + "name": "Area Id6 (Insula)", + "status": "right hemisphere", + "labelIndex": 56, + "rgb": [ + 138, + 127, + 119 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Id6 (Insula) [v3.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + } + }, + "_": { + "xml": { + "name": "Area Id6 (Insula)", + "id": "340", + "grayvalue": "56" + }, + "dat": { + "colors": "340 138 127 119", + "names": "340 aId3" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id6 (Insula)", + "arealabel": "Area-Id6", + "status": "publicDOI", + "labelIndex": "340", + "doi": "https://doi.org/10.25493/54HZ-KFQ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a98c1711-4d2c-4351-bc63-c3f827f41eab" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id6 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + } + } + }, + { + "name": "Area Id4 (Insula)", + "status": "publicDOI", + "children": [ + { + "name": "Area Id4 (Insula)", + "status": "left hemisphere", + "labelIndex": 52, + "rgb": [ + 38, + 174, + 113 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area Id4 (Insula) [v3.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" + } + }, + "_": { + "xml": { + "name": "Area Id4 (Insula)", + "id": "337", + "grayvalue": "52" + }, + "dat": { + "colors": "337 38 174 113", + "names": "337 aId1" + } + } + }, + { + "name": "Area Id4 (Insula)", + "status": "right hemisphere", + "labelIndex": 52, + "rgb": [ + 38, + 174, + 113 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area Id4 (Insula) [v3.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" + } + }, + "_": { + "xml": { + "name": "Area Id4 (Insula)", + "id": "337", + "grayvalue": "52" + }, + "dat": { + "colors": "337 38 174 113", + "names": "337 aId1" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id4 (Insula)", + "arealabel": "Area-Id4", + "status": "publicDOI", + "labelIndex": "337", + "doi": "https://doi.org/10.25493/K63G-89H", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/49a74d3a-9290-4ff9-9a5a-522c0a096d1b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id4 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" + } + } + }, + { + "name": "Area Id3 (Insula)", + "status": "publicDOI", "children": [ { - "name": "Area Fo7 (OFC) - left hemisphere", + "name": "Area Id3 (Insula)", + "status": "left hemisphere", + "labelIndex": 19, "rgb": [ - 64, - 211, - 186 - ], - "labelIndex": 327, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -36046240, - 37308943, - -11666667 + 32, + 32, + 58 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea", + "filename": "Area Id3 (Insula) [v7.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo7 (OFC) [v2.1, Colin 27, left hemisphere]" + "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3" + } + }, + "_": { + "xml": { + "name": "Area Id3 (Insula)", + "id": "57", + "grayvalue": "19" + }, + "dat": { + "colors": "57 32 32 58", + "names": "57 Id3" } - ] + } }, { - "name": "Area Fo7 (OFC) - right hemisphere", + "name": "Area Id3 (Insula)", + "status": "right hemisphere", + "labelIndex": 19, "rgb": [ - 64, - 211, - 186 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 327, - "children": [], - "status": "publicDOI", - "position": [ - 37850755, - 37700302, - -13777644 + 32, + 32, + 58 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea", + "filename": "Area Id3 (Insula) [v7.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Fo7 (OFC) [v2.1, Colin 27, right hemisphere]" + "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3" + } + }, + "_": { + "xml": { + "name": "Area Id3 (Insula)", + "id": "57", + "grayvalue": "19" + }, + "dat": { + "colors": "57 32 32 58", + "names": "57 Id3" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" + "_": { + "jubrain-ontology_24.json": { + "name": "Area Id3 (Insula)", + "arealabel": "Area-Id3", + "status": "publicDOI", + "labelIndex": "57", + "doi": "https://doi.org/10.25493/AE2S-KT6", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/85869b4f-9c3f-47f3-b911-838de6ab8317" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area Id3 (Insula)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3dcfcfc2-035c-4785-a820-a671f2104ac3" } - }, - "relatedAreas": [] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dysgranular insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "insula", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "insula", + "name": "temporal lobe", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "granular insula", + "name": "superior temporal sulcus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area Ig1 (Insula)", - "arealabel": "Area-Ig1", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/EKV9-29D", - "synonyms": [], - "rgb": [ - 18, - 111, - 40 - ], + "name": "Area STS2 (STS)", + "status": "publicDOI", "children": [ { - "name": "Area Ig1 (Insula) - left hemisphere", + "name": "Area STS2 (STS)", + "status": "left hemisphere", + "labelIndex": 18, "rgb": [ - 18, - 111, - 40 - ], - "labelIndex": 115, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -33211215, - -24171963, - 9923364 + 62, + 117, + 123 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3", + "filename": "Area STS2 (STS) [v3.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig1 (Insula) [v13.1, Colin 27, left hemisphere]" + "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" + } + }, + "_": { + "xml": { + "name": "Area STS2 (STS)", + "id": "272", + "grayvalue": "18" + }, + "dat": { + "colors": "272 62 117 123", + "names": "272 Te5" } - ] + } }, { - "name": "Area Ig1 (Insula) - right hemisphere", + "name": "Area STS2 (STS)", + "status": "right hemisphere", + "labelIndex": 18, "rgb": [ - 18, - 111, - 40 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 115, - "children": [], - "status": "publicP", - "position": [ - 33707983, - -23338235, - 9071429 + 62, + 117, + 123 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3", + "filename": "Area STS2 (STS) [v3.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig1 (Insula) [v13.1, Colin 27, right hemisphere]" + "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" + } + }, + "_": { + "xml": { + "name": "Area STS2 (STS)", + "id": "272", + "grayvalue": "18" + }, + "dat": { + "colors": "272 62 117 123", + "names": "272 Te5" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" + "_": { + "jubrain-ontology_24.json": { + "name": "Area STS2 (STS)", + "arealabel": "Area-STS2", + "status": "publicDOI", + "labelIndex": "272", + "doi": "https://doi.org/10.25493/KHY9-J3Y", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7cef408f-0b23-46c3-8411-102cce3d86a0" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area STS2 (STS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/278fc30f-2e24-4046-856b-95dfaf561635" } - }, - "relatedAreas": [] + } }, { - "name": "Area Ig3 (Insula)", - "arealabel": "Area-Ig3", + "name": "Area STS1 (STS)", "status": "publicDOI", - "labelIndex": null, - "doi": "", - "synonyms": [], - "rgb": [ - 105, - 253, - 197 - ], "children": [ { - "name": "Area Ig3 (Insula) - left hemisphere", + "name": "Area STS1 (STS)", + "status": "left hemisphere", + "labelIndex": 93, "rgb": [ - 105, - 253, - 197 + 205, + 228, + 4 ], - "labelIndex": 336, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -37956284, - -14423497, - 13513661 - ] + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area STS1 (STS) [v3.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" + } + }, + "_": { + "xml": { + "name": "Area STS1 (STS)", + "id": "271", + "grayvalue": "93" + }, + "dat": { + "colors": "271 205 228 4", + "names": "271 Te4" + } + } }, { - "name": "Area Ig3 (Insula) - right hemisphere", + "name": "Area STS1 (STS)", + "status": "right hemisphere", + "labelIndex": 92, "rgb": [ - 105, - 253, - 197 + 205, + 228, + 4 ], - "ngId": "jubrain colin v18 right", - "labelIndex": 336, - "children": [], - "status": "publicDOI", - "position": [ - 38219144, - -13750630, - 13916877 - ] + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area STS1 (STS) [v3.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" + } + }, + "_": { + "xml": { + "name": "Area STS1 (STS)", + "id": "271", + "grayvalue": "92" + }, + "dat": { + "colors": "271 205 228 4", + "names": "271 Te4" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb" + "_": { + "jubrain-ontology_24.json": { + "name": "Area STS1 (STS)", + "arealabel": "Area-STS1", + "status": "publicDOI", + "labelIndex": "271", + "doi": "https://doi.org/10.25493/F6DF-H8P", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/61460dd7-7696-485e-b638-407e7b7dc99f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area STS1 (STS)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/68784b66-ff15-4b09-b28a-a2146c0f8907" } - }, - "relatedAreas": [] - }, - { - "name": "Area Ig2 (Insula)", - "arealabel": "Area-Ig2", - "status": "publicP", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior temporal sulcus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/662G-E0W", "synonyms": [], - "rgb": [ - 105, - 61, - 82 - ], + "rgb": null + } + } + }, + { + "name": "superior temporal gyrus", + "status": null, + "children": [ + { + "name": "Area TE 3 (STG)", + "status": "publicP", "children": [ { - "name": "Area Ig2 (Insula) - left hemisphere", + "name": "Area TE 3 (STG)", + "status": "left hemisphere", + "labelIndex": 30, "rgb": [ - 105, - 61, - 82 - ], - "labelIndex": 114, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -37117338, - -17859895, - 5094571 + 159, + 104, + 108 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147", + "filename": "Area TE 3 (STG) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig2 (Insula) [v13.1, Colin 27, left hemisphere]" + "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + } + }, + "_": { + "xml": { + "name": "Area TE 3 (STG)", + "id": "31", + "grayvalue": "30" + }, + "dat": { + "colors": "31 159 104 108", + "names": "31 Te3" + } + } }, { - "name": "Area Ig2 (Insula) - right hemisphere", + "name": "Area TE 3 (STG)", + "status": "right hemisphere", + "labelIndex": 30, "rgb": [ - 105, - 61, - 82 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 114, - "children": [], - "status": "publicP", - "position": [ - 37843632, - -16445145, - 5703657 + 159, + 104, + 108 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147", + "filename": "Area TE 3 (STG) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ig2 (Insula) [v13.1, Colin 27, right hemisphere]" + "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + } + }, + "_": { + "xml": { + "name": "Area TE 3 (STG)", + "id": "31", + "grayvalue": "30" + }, + "dat": { + "colors": "31 159 104 108", + "names": "31 Te3" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 3 (STG)", + "arealabel": "Area-TE-3", + "status": "publicP", + "labelIndex": "31", + "doi": "https://doi.org/10.25493/BN5J-JT8", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/03b1cb7b-f142-4612-bbd3-10fc7743bf13" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 3 (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7e1a3291-efdc-4ca6-a3d0-6c496c34639f" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "agranular insula", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area Ia (Insula)", - "arealabel": "Area-Ia", + "name": "Area TE 2.2 (STG)", "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/WW8G-T2G", - "synonyms": [], - "rgb": [ - 71, - 217, - 62 - ], "children": [ { - "name": "Area Ia (Insula) - left hemisphere", + "name": "Area TE 2.2 (STG)", + "status": "left hemisphere", + "labelIndex": 120, "rgb": [ - 71, - 217, - 62 + 58, + 104, + 125 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area TE 2.2 (STG) [v5.1, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61" + } + }, + "_": { + "xml": { + "name": "Area TE 2.2 (STG)", + "id": "34", + "grayvalue": "120" + }, + "dat": { + "colors": "34 58 104 125", + "names": "34 Te22" + } + } + }, + { + "name": "Area TE 2.2 (STG)", + "status": "right hemisphere", + "labelIndex": 120, + "rgb": [ + 58, + 104, + 125 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area TE 2.2 (STG) [v5.1, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7" + } ], - "labelIndex": 339, - "ngId": "jubrain colin v18 left", - "children": [], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61" + } + }, + "_": { + "xml": { + "name": "Area TE 2.2 (STG)", + "id": "34", + "grayvalue": "120" + }, + "dat": { + "colors": "34 58 104 125", + "names": "34 Te22" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 2.2 (STG)", + "arealabel": "Area-TE-2.2", "status": "publicDOI", - "position": [ - -41612827, - -1876485, - -7019002 + "labelIndex": "34", + "doi": " https://doi.org/10.25493/RTTN-R5F", + "synonyms": [], + "rgb": null, + "kgHref": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 2.2 (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9ecfd5e0-dc37-4303-894d-a897faa51d61" + } + } + }, + { + "name": "Area TE 2.1 (STG)", + "status": "publicDOI", + "children": [ + { + "name": "Area TE 2.1 (STG)", + "status": "left hemisphere", + "labelIndex": 79, + "rgb": [ + 67, + 254, + 44 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f", + "filename": "Area TE 2.1 (STG) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ia (Insula) [v3.1, Colin 27, left hemisphere]" + "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c" + } + }, + "_": { + "xml": { + "name": "Area TE 2.1 (STG)", + "id": "28", + "grayvalue": "79" + }, + "dat": { + "colors": "28 67 254 44", + "names": "28 Te21" } - ] + } }, { - "name": "Area Ia (Insula) - right hemisphere", + "name": "Area TE 2.1 (STG)", + "status": "right hemisphere", + "labelIndex": 78, "rgb": [ - 71, - 217, - 62 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 339, - "children": [], - "status": "publicDOI", - "position": [ - 43525000, - 36538, - -7609615 + 67, + 254, + 44 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f", + "filename": "Area TE 2.1 (STG) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Ia (Insula) [v3.1, Colin 27, right hemisphere]" + "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c" + } + }, + "_": { + "xml": { + "name": "Area TE 2.1 (STG)", + "id": "28", + "grayvalue": "78" + }, + "dat": { + "colors": "28 67 254 44", + "names": "28 Te21" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 2.1 (STG)", + "arealabel": "Area-TE-2.1", + "status": "publicDOI", + "labelIndex": "28", + "doi": "https://doi.org/10.25493/R28N-2TD", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a5589ffe-5148-4006-8d8d-8bcf411f750b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 2.1 (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/3332ad65-a5e6-436f-95f0-c634fbcb075c" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "superior temporal gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "dys-/agranular insula", + "name": "temporal-insula", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area Id7 (Insula)", - "arealabel": "Area-Id7", + "name": "Area TI (STG)", "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/88QG-JMS", - "synonyms": [], - "rgb": [ - 101, - 202, - 38 - ], "children": [ { - "name": "Area Id7 (Insula) - left hemisphere", + "name": "Area TI (STG)", + "status": "left hemisphere", + "labelIndex": 26, "rgb": [ + 86, 101, - 202, - 38 - ], - "labelIndex": 159, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -30926962, - 23741297, - 4787031 + 22 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868", + "filename": "Area TI (STG) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id7 (Insula) [v6.1, Colin 27, left hemisphere]" + "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43" + } + }, + "_": { + "xml": { + "name": "Area TI (STG)", + "id": "243", + "grayvalue": "26" + }, + "dat": { + "colors": "243 86 101 22", + "names": "243 TI2" + } + } }, { - "name": "Area Id7 (Insula) - right hemisphere", + "name": "Area TI (STG)", + "status": "right hemisphere", + "labelIndex": 25, "rgb": [ + 86, 101, - 202, - 38 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 159, - "children": [], - "status": "publicDOI", - "position": [ - 35034429, - 24873239, - 2446009 + 22 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868", + "filename": "Area TI (STG) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id7 (Insula) [v6.1, Colin 27, right hemisphere]" + "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43" + } + }, + "_": { + "xml": { + "name": "Area TI (STG)", + "id": "243", + "grayvalue": "25" + }, + "dat": { + "colors": "243 86 101 22", + "names": "243 TI2" + } + } } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "dysgranular insula", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area Id2 (Insula)", - "arealabel": "Area-Id2", - "status": "publicDOI", - "labelIndex": null, - "doi": "", - "synonyms": [], - "rgb": [ - 225, - 126, - 73 ], - "children": [ - { - "name": "Area Id2 (Insula) - left hemisphere", - "rgb": [ - 225, - 126, - 73 - ], - "labelIndex": 56, - "ngId": "jubrain colin v18 left", - "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "Area TI (STG)", + "arealabel": "Area-TI", "status": "publicDOI", - "position": [ - -41933981, - -11436893, - 4091262 - ] + "labelIndex": "243", + "doi": "https://doi.org/10.25493/57FA-VX6", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/48383281-9a83-4c6f-8166-f8bb139052dd" }, - { - "name": "Area Id2 (Insula) - right hemisphere", - "rgb": [ - 225, - 126, - 73 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 56, - "children": [], - "status": "publicDOI", - "position": [ - 44043478, - -10289855, - 3759834 - ] + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TI (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43" } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "cf9dea67-649d-4034-ae57-ec389f339277" - } - }, - "relatedAreas": [] + } }, { - "name": "Area Id1 (Insula)", - "arealabel": "Area-Id1", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F37H-8WB", - "synonyms": [], - "rgb": [ - 141, - 112, - 216 - ], + "name": "Area TeI (STG)", + "status": " publicDOI", "children": [ { - "name": "Area Id1 (Insula) - left hemisphere", + "name": "Area TeI (STG)", + "status": "left hemisphere", + "labelIndex": 125, "rgb": [ - 141, - 112, - 216 - ], - "labelIndex": 116, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -40090747, - -18279359, - -4567616 + 23, + 78, + 92 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086", + "filename": "Area TeI (STG) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id1 (Insula) [v13.1, Colin 27, left hemisphere]" + "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a" + } + }, + "_": { + "xml": { + "name": "Area TeI (STG)", + "id": "242", + "grayvalue": "125" + }, + "dat": { + "colors": "242 23 78 92", + "names": "242 TI1" + } + } }, { - "name": "Area Id1 (Insula) - right hemisphere", + "name": "Area TeI (STG)", + "status": "right hemisphere", + "labelIndex": 125, "rgb": [ - 141, - 112, - 216 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 116, - "children": [], - "status": "publicP", - "position": [ - 40527825, - -17443508, - -4688027 + 23, + 78, + 92 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086", + "filename": "Area TeI (STG) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id1 (Insula) [v13.1, Colin 27, right hemisphere]" + "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a" + } + }, + "_": { + "xml": { + "name": "Area TeI (STG)", + "id": "242", + "grayvalue": "125" + }, + "dat": { + "colors": "242 23 78 92", + "names": "242 TI1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "c22055c1-514f-4096-906b-abf57286053b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TeI (STG)", + "arealabel": "Area-TeI", + "status": " publicDOI", + "labelIndex": "242", + "doi": "https://doi.org/10.25493/DTC3-EVM", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/35f2107d-2e3c-41ae-b26a-83b101829346" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TeI (STG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/0eff5159-a136-4b42-b591-f17fbc82ae8a" } - }, - "relatedAreas": [] - }, - { - "name": "Area Id3 (Insula)", - "arealabel": "Area-Id3", - "status": "publicDOI", + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "temporal-insula", + "status": null, "labelIndex": null, - "doi": "", "synonyms": [], - "rgb": [ - 32, - 32, - 58 - ], + "rgb": null + } + } + }, + { + "name": "Heschl's gyrus", + "status": null, + "children": [ + { + "name": "Area TE 1.2 (HESCHL)", + "status": "publicP", "children": [ { - "name": "Area Id3 (Insula) - left hemisphere", + "name": "Area TE 1.2 (HESCHL)", + "status": "left hemisphere", + "labelIndex": 71, "rgb": [ - 32, - 32, - 58 + 202, + 251, + 192 ], - "labelIndex": 57, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -40414195, - -7819915, - -8263771 - ] + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + } + }, + "_": { + "xml": { + "name": "Area TE 1.2 (HESCHL)", + "id": "30", + "grayvalue": "71" + }, + "dat": { + "colors": "30 202 251 192", + "names": "30 Te12" + } + } }, { - "name": "Area Id3 (Insula) - right hemisphere", + "name": "Area TE 1.2 (HESCHL)", + "status": "right hemisphere", + "labelIndex": 71, "rgb": [ - 32, - 32, - 58 + 202, + 251, + 192 ], - "ngId": "jubrain colin v18 right", - "labelIndex": 57, - "children": [], - "status": "publicDOI", - "position": [ - 41459316, - -6224335, - -9042586 - ] + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + } + }, + "_": { + "xml": { + "name": "Area TE 1.2 (HESCHL)", + "id": "30", + "grayvalue": "71" + }, + "dat": { + "colors": "30 202 251 192", + "names": "30 Te12" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 1.2 (HESCHL)", + "arealabel": "Area-TE-1.2", + "status": "publicP", + "labelIndex": "30", + "doi": "https://doi.org/10.25493/R382-617", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 1.2 (HESCHL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" } - }, - "relatedAreas": [] + } }, { - "name": "Area Id5 (Insula)", - "arealabel": "Area-Id5", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/5CK1-B1G", - "synonyms": [], - "rgb": [ - 112, - 6, - 50 - ], + "name": "Area TE 1.1 (HESCHL)", + "status": "publicP", "children": [ { - "name": "Area Id5 (Insula) - left hemisphere", + "name": "Area TE 1.1 (HESCHL)", + "status": "left hemisphere", + "labelIndex": 1, "rgb": [ - 112, - 6, - 50 - ], - "labelIndex": 338, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -40174302, - -3354190, - 741899 + 8, + 113, + 68 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9", + "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id5 (Insula) [v3.1, Colin 27, left hemisphere]" + "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" + } + }, + "_": { + "xml": { + "name": "Area TE 1.1 (HESCHL)", + "id": "33", + "grayvalue": "1" + }, + "dat": { + "colors": "33 8 113 68", + "names": "33 Te11" } - ] + } }, { - "name": "Area Id5 (Insula) - right hemisphere", + "name": "Area TE 1.1 (HESCHL)", + "status": "right hemisphere", + "labelIndex": 1, "rgb": [ - 112, - 6, - 50 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 338, - "children": [], - "status": "publicDOI", - "position": [ - 41094953, - -2659538, - 607357 + 8, + 113, + 68 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9", + "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id5 (Insula) [v3.1, Colin 27, right hemisphere]" + "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" + } + }, + "_": { + "xml": { + "name": "Area TE 1.1 (HESCHL)", + "id": "33", + "grayvalue": "1" + }, + "dat": { + "colors": "33 8 113 68", + "names": "33 Te11" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 1.1 (HESCHL)", + "arealabel": "Area-TE-1.1", + "status": "publicP", + "labelIndex": "33", + "doi": "https://doi.org/10.25493/4HA3-BBE", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/85ad6ef7-228a-4543-a0b1-71ccf11bc69c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 1.1 (HESCHL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e2969911-77eb-4b21-af70-216cab5285b1" } - }, - "relatedAreas": [] + } }, { - "name": "Area Id6 (Insula)", - "arealabel": "Area-Id6", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/54HZ-KFQ", - "synonyms": [], - "rgb": [ - 138, - 127, - 119 - ], + "name": "Area TE 1.0 (HESCHL)", + "status": "publicP", "children": [ { - "name": "Area Id6 (Insula) - left hemisphere", + "name": "Area TE 1.0 (HESCHL)", + "status": "left hemisphere", + "labelIndex": 17, "rgb": [ - 138, - 127, - 119 - ], - "labelIndex": 340, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -36392282, - 9843698, - 3385341 + 252, + 84, + 222 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab", + "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id6 (Insula) [v3.1, Colin 27, left hemisphere]" + "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "13e21153-2ba8-4212-b172-8894f1012225" + } + }, + "_": { + "xml": { + "name": "Area TE 1.0 (HESCHL)", + "id": "27", + "grayvalue": "17" + }, + "dat": { + "colors": "27 252 84 222", + "names": "27 Te10" } - ] + } }, { - "name": "Area Id6 (Insula) - right hemisphere", + "name": "Area TE 1.0 (HESCHL)", + "status": "right hemisphere", + "labelIndex": 17, "rgb": [ - 138, - 127, - 119 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 340, - "children": [], - "status": "publicDOI", - "position": [ - 37750946, - 10762642, - 3041624 + 252, + 84, + 222 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab", + "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id6 (Insula) [v3.1, Colin 27, right hemisphere]" + "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "13e21153-2ba8-4212-b172-8894f1012225" + } + }, + "_": { + "xml": { + "name": "Area TE 1.0 (HESCHL)", + "id": "27", + "grayvalue": "17" + }, + "dat": { + "colors": "27 252 84 222", + "names": "27 Te10" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + "_": { + "jubrain-ontology_24.json": { + "name": "Area TE 1.0 (HESCHL)", + "arealabel": "Area-TE-1.0", + "status": "publicP", + "labelIndex": "27", + "doi": "https://doi.org/10.25493/MV3G-RET", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8a105954-a724-428d-aed8-6c8d50fe4218" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area TE 1.0 (HESCHL)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/13e21153-2ba8-4212-b172-8894f1012225" } - }, - "relatedAreas": [] - }, + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "Heschl's gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "fusiform gyrus", + "status": null, + "children": [ { - "name": "Area Id4 (Insula)", - "arealabel": "Area-Id4", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/K63G-89H", - "synonyms": [], - "rgb": [ - 38, - 174, - 113 - ], + "name": "Area FG2 (FusG)", + "status": "publicP", "children": [ { - "name": "Area Id4 (Insula) - left hemisphere", + "name": "Area FG2 (FusG)", + "status": "left hemisphere", + "labelIndex": 39, "rgb": [ - 38, - 174, - 113 - ], - "labelIndex": 337, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -37055965, - -3505155, - 11422680 + 67, + 94, + 149 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b", + "filename": "Area FG2 (FusG) [v1.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id4 (Insula) [v3.1, Colin 27, left hemisphere]" + "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + } + }, + "_": { + "xml": { + "name": "Area FG2 (FusG)", + "id": "106", + "grayvalue": "39" + }, + "dat": { + "colors": "106 67 94 149", + "names": "106 GF2" } - ] + } }, { - "name": "Area Id4 (Insula) - right hemisphere", + "name": "Area FG2 (FusG)", + "status": "right hemisphere", + "labelIndex": 39, "rgb": [ - 38, - 174, - 113 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 337, - "children": [], - "status": "publicDOI", - "position": [ - 37461444, - -3746634, - 10858017 + 67, + 94, + 149 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b", + "filename": "Area FG2 (FusG) [v1.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area Id4 (Insula) [v3.1, Colin 27, right hemisphere]" + "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + } + }, + "_": { + "xml": { + "name": "Area FG2 (FusG)", + "id": "106", + "grayvalue": "39" + }, + "dat": { + "colors": "106 67 94 149", + "names": "106 GF2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG2 (FusG)", + "arealabel": "Area-FG2", + "status": "publicP", + "labelIndex": "106", + "doi": "https://doi.org/10.25493/F2JH-KVV", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/526f6a7d-e8f8-4a8e-a895-a92696281eb9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG2 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/6e7a0441-4baa-4355-921b-50d23d07d50f" } - }, - "relatedAreas": [] - } - ] - } - ] - }, - { - "name": "temporal lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "superior temporal sulcus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area STS2 (STS)", - "arealabel": "Area-STS2", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/KHY9-J3Y", - "synonyms": [], - "rgb": [ - 62, - 117, - 123 - ], + "name": "Area FG3 (FusG)", + "status": "publicP", "children": [ { - "name": "Area STS2 (STS) - left hemisphere", + "name": "Area FG3 (FusG)", + "status": "left hemisphere", + "labelIndex": 96, "rgb": [ - 62, - 117, - 123 - ], - "labelIndex": 272, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -56352486, - -8557380, - -14844672 + 120, + 147, + 37 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0", + "filename": "Area FG3 (FusG) [v6.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS2 (STS) [v3.1, Colin 27, left hemisphere]" + "kgId": "34f29154-e210-4bef-9510-73b77f727132" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" + } + }, + "_": { + "xml": { + "name": "Area FG3 (FusG)", + "id": "239", + "grayvalue": "96" + }, + "dat": { + "colors": "239 120 147 37", + "names": "239 fg4" } - ] + } }, { - "name": "Area STS2 (STS) - right hemisphere", + "name": "Area FG3 (FusG)", + "status": "right hemisphere", + "labelIndex": 97, "rgb": [ - 62, - 117, - 123 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 272, - "children": [], - "status": "publicDOI", - "position": [ - 56942990, - -8020716, - -16067930 + 120, + 147, + 37 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0", + "filename": "Area FG3 (FusG) [v6.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS2 (STS) [v3.1, Colin 27, right hemisphere]" + "kgId": "34f29154-e210-4bef-9510-73b77f727132" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" + } + }, + "_": { + "xml": { + "name": "Area FG3 (FusG)", + "id": "239", + "grayvalue": "97" + }, + "dat": { + "colors": "239 120 147 37", + "names": "239 fg4" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG3 (FusG)", + "arealabel": "Area-FG3", + "status": "publicP", + "labelIndex": "239", + "doi": "https://doi.org/10.25493/Z0F6-0SY", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/34f29154-e210-4bef-9510-73b77f727132" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG3 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/023f8ef7-c266-4c45-8bf2-4a17dc52985b" } - }, - "relatedAreas": [] + } }, { - "name": "Area STS1 (STS)", - "arealabel": "Area-STS1", - "status": "publicDOI", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F6DF-H8P", - "synonyms": [], - "rgb": [ - 205, - 228, - 4 - ], + "name": "Area FG1 (FusG)", + "status": "publicP", "children": [ { - "name": "Area STS1 (STS) - left hemisphere", + "name": "Area FG1 (FusG)", + "status": "left hemisphere", + "labelIndex": 36, "rgb": [ - 205, - 228, - 4 - ], - "labelIndex": 271, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicDOI", - "position": [ - -54514755, - -16753913, - -5260713 + 131, + 183, + 58 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f", + "filename": "Area FG1 (FusG) [v1.4, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS1 (STS) [v3.1, Colin 27, left hemisphere]" + "kgId": "a00577ca-5089-443d-918e-b99531efd5e9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" + } + }, + "_": { + "xml": { + "name": "Area FG1 (FusG)", + "id": "107", + "grayvalue": "36" + }, + "dat": { + "colors": "107 131 183 58", + "names": "107 GF1" } - ] + } }, { - "name": "Area STS1 (STS) - right hemisphere", + "name": "Area FG1 (FusG)", + "status": "right hemisphere", + "labelIndex": 36, "rgb": [ - 205, - 228, - 4 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 271, - "children": [], - "status": "publicDOI", - "position": [ - 54536567, - -17992636, - -5712544 + 131, + 183, + 58 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f", + "filename": "Area FG1 (FusG) [v1.4, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area STS1 (STS) [v3.1, Colin 27, right hemisphere]" + "kgId": "a00577ca-5089-443d-918e-b99531efd5e9" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" + } + }, + "_": { + "xml": { + "name": "Area FG1 (FusG)", + "id": "107", + "grayvalue": "36" + }, + "dat": { + "colors": "107 131 183 58", + "names": "107 GF1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG1 (FusG)", + "arealabel": "Area-FG1", + "status": "publicP", + "labelIndex": "107", + "doi": "https://doi.org/10.25493/5ZVQ-R8R", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/a00577ca-5089-443d-918e-b99531efd5e9" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG1 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/39fb34a8-fd6d-4fba-898c-2f6167e40459" } - }, - "relatedAreas": [] - } - ] - }, - { - "name": "superior temporal gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + } + }, { - "name": "Area TE 3 (STG)", - "arealabel": "Area-TE-3", + "name": "Area FG4 (FusG)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/BN5J-JT8", - "synonyms": [], - "rgb": [ - 159, - 104, - 108 - ], "children": [ { - "name": "Area TE 3 (STG) - left hemisphere", + "name": "Area FG4 (FusG)", + "status": "left hemisphere", + "labelIndex": 108, "rgb": [ - 159, - 104, - 108 - ], - "labelIndex": 31, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -64398501, - -12497885, - 1316801 + 170, + 220, + 175 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13", + "filename": "Area FG4 (FusG) [v6.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 3 (STG) [v5.1, Colin 27, left hemisphere]" + "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" + } + }, + "_": { + "xml": { + "name": "Area FG4 (FusG)", + "id": "238", + "grayvalue": "108" + }, + "dat": { + "colors": "238 170 220 175", + "names": "238 fg3" } - ] + } }, { - "name": "Area TE 3 (STG) - right hemisphere", + "name": "Area FG4 (FusG)", + "status": "right hemisphere", + "labelIndex": 108, "rgb": [ - 159, - 104, - 108 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 31, - "children": [], - "status": "publicP", - "position": [ - 65811519, - -9018989, - -1027621 + 170, + 220, + 175 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13", + "filename": "Area FG4 (FusG) [v6.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 3 (STG) [v5.1, Colin 27, right hemisphere]" + "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" + } + }, + "_": { + "xml": { + "name": "Area FG4 (FusG)", + "id": "238", + "grayvalue": "108" + }, + "dat": { + "colors": "238 170 220 175", + "names": "238 fg3" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area FG4 (FusG)", + "arealabel": "Area-FG4", + "status": "publicP", + "labelIndex": "238", + "doi": "https://doi.org/10.25493/13RG-FYV", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/e7a2b57c-c4f0-41b9-8d80-8accd509497b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area FG4 (FusG)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/fa602743-5f6e-49d1-9734-29dffaa95ff5" } - }, - "relatedAreas": [] + } } - ] - }, - { - "name": "Heschl's gyrus", + ], + "_": { + "jubrain-ontology_24.json": { + "name": "fusiform gyrus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "temporal lobe", "status": null, "labelIndex": null, "synonyms": [], - "rgb": null, + "rgb": null + } + } + }, + { + "name": "limbic lobe", + "status": null, + "children": [ + { + "name": "cingulate gyrus, frontal part", + "status": null, "children": [ { - "name": "Area TE 1.2 (HESCHL)", - "arealabel": "Area-TE-1.2", + "name": "Area p24c (pACC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/R382-617", - "synonyms": [], - "rgb": [ - 202, - 251, - 192 - ], "children": [ { - "name": "Area TE 1.2 (HESCHL) - left hemisphere", + "name": "Area p24c (pACC)", + "status": "left hemisphere", + "labelIndex": 28, "rgb": [ - 202, - 251, - 192 - ], - "labelIndex": 30, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -50810427, - -6551343, - 1635071 + 241, + 164, + 195 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2", + "filename": "Area p24c (pACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, left hemisphere]" + "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + } + }, + "_": { + "xml": { + "name": "Area p24c (pACC)", + "id": "232", + "grayvalue": "28" + }, + "dat": { + "colors": "232 241 164 195", + "names": "232 p24c" } - ] + } }, { - "name": "Area TE 1.2 (HESCHL) - right hemisphere", + "name": "Area p24c (pACC)", + "status": "right hemisphere", + "labelIndex": 28, "rgb": [ - 202, - 251, - 192 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 30, - "children": [], - "status": "publicP", - "position": [ - 55870330, - -2672527, - 52747 + 241, + 164, + 195 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2", + "filename": "Area p24c (pACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.2 (HESCHL) [v5.1, Colin 27, right hemisphere]" + "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + } + }, + "_": { + "xml": { + "name": "Area p24c (pACC)", + "id": "232", + "grayvalue": "28" + }, + "dat": { + "colors": "232 241 164 195", + "names": "232 p24c" + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area p24c (pACC)", + "arealabel": "Area-p24c", + "status": "publicP", + "labelIndex": "232", + "doi": "https://doi.org/10.25493/QA7B-JM9", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/8b778e42-b3f2-41e2-8295-a6f0e1f20721" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p24c (pACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e6507a3d-f2f8-4c17-84ff-0e7297e836a0" } - }, - "relatedAreas": [] + } }, { - "name": "Area TE 1.1 (HESCHL)", - "arealabel": "Area-TE-1.1", + "name": "Area 25 (sACC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/4HA3-BBE", - "synonyms": [], - "rgb": [ - 8, - 113, - 68 - ], "children": [ { - "name": "Area TE 1.1 (HESCHL) - left hemisphere", + "name": "Area 25 (sACC)", + "status": "left hemisphere", + "labelIndex": 86, "rgb": [ - 8, - 113, - 68 - ], - "labelIndex": 33, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -38219760, - -27125577, - 10774700 + 170, + 68, + 220 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c", + "filename": "Area 25 (sACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, left hemisphere]" + "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" + } + }, + "_": { + "xml": { + "name": "Area 25 (sACC)", + "id": "184", + "grayvalue": "86" + }, + "dat": { + "colors": "184 170 68 220", + "names": "184 25" + } + } }, { - "name": "Area TE 1.1 (HESCHL) - right hemisphere", + "name": "Area 25 (sACC)", + "status": "right hemisphere", + "labelIndex": 86, "rgb": [ - 8, - 113, - 68 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 33, - "children": [], - "status": "publicP", - "position": [ - 40719340, - -24106132, - 10308962 + 170, + 68, + 220 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c", + "filename": "Area 25 (sACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.1 (HESCHL) [v5.1, Colin 27, right hemisphere]" + "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" - } - }, - "relatedAreas": [] - }, - { - "name": "Area TE 1.0 (HESCHL)", - "arealabel": "Area-TE-1.0", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/MV3G-RET", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area Te1", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "f424643e-9baf-4c50-9417-db1ac33dcd3e" + "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" + } + }, + "_": { + "xml": { + "name": "Area 25 (sACC)", + "id": "184", + "grayvalue": "86" + }, + "dat": { + "colors": "184 170 68 220", + "names": "184 25" } } } ], - "rgb": [ - 252, - 84, - 222 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area 25 (sACC)", + "arealabel": "Area-25", + "status": "publicP", + "labelIndex": "184", + "doi": "https://doi.org/10.25493/51AM-WN4", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/74bc9736-7044-4c72-b7bb-15739ae70e1e" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 25 (sACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9010ef76-accd-4308-9951-f37b6a10f42b" + } + } + }, + { + "name": "Area p24ab (pACC)", + "status": "publicP", "children": [ { - "name": "Area TE 1.0 (HESCHL) - left hemisphere", - "rgb": [ - 252, - 84, - 222 - ], + "name": "Area p24ab (pACC)", + "status": "left hemisphere", "labelIndex": 27, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -46560150, - -17508772, - 7622807 + "rgb": [ + 153, + 195, + 229 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218", + "filename": "Area p24ab (pACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, left hemisphere]" + "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" + } + }, + "_": { + "xml": { + "name": "Area p24ab (pACC)", + "id": "231", + "grayvalue": "27" + }, + "dat": { + "colors": "231 153 195 229", + "names": "231 p24ab" } - ] + } }, { - "name": "Area TE 1.0 (HESCHL) - right hemisphere", - "rgb": [ - 252, - 84, - 222 - ], - "ngId": "jubrain colin v18 right", + "name": "Area p24ab (pACC)", + "status": "right hemisphere", "labelIndex": 27, - "children": [], - "status": "publicP", - "position": [ - 50392116, - -12932573, - 5942946 + "rgb": [ + 153, + 195, + 229 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218", + "filename": "Area p24ab (pACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area TE 1.0 (HESCHL) [v5.1, Colin 27, right hemisphere]" + "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503" } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "13e21153-2ba8-4212-b172-8894f1012225" - } - } - } - ] - }, - { - "name": "fusiform gyrus", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ - { - "name": "Area FG2 (FusG)", - "arealabel": "Area-FG2", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/F2JH-KVV", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area FG2", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8f436328-4251-4706-ae38-767e1ab21c6f" + "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" + } + }, + "_": { + "xml": { + "name": "Area p24ab (pACC)", + "id": "231", + "grayvalue": "27" + }, + "dat": { + "colors": "231 153 195 229", + "names": "231 p24ab" } } } ], - "rgb": [ - 67, - 94, - 149 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area p24ab (pACC)", + "arealabel": "Area-p24ab", + "status": "publicP", + "labelIndex": "231", + "doi": "https://doi.org/10.25493/DHXC-2KN", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1acd6cd6-6941-4228-94fa-9da5ce014503" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p24ab (pACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/5dbb1035-487c-4f43-b551-ccadcf058340" + } + } + }, + { + "name": "Area s32 (sACC)", + "status": "publicP", "children": [ { - "name": "Area FG2 (FusG) - left hemisphere", + "name": "Area s32 (sACC)", + "status": "left hemisphere", + "labelIndex": 102, "rgb": [ - 67, + 193, 94, - 149 - ], - "labelIndex": 106, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -43549584, - -65531770, - -16708135 + 250 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9", + "filename": "Area s32 (sACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG2 (FusG) [v1.4, Colin 27, left hemisphere]" + "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + } + }, + "_": { + "xml": { + "name": "Area s32 (sACC)", + "id": "46", + "grayvalue": "102" + }, + "dat": { + "colors": "46 193 94 250", + "names": "46 s32" } - ] + } }, { - "name": "Area FG2 (FusG) - right hemisphere", + "name": "Area s32 (sACC)", + "status": "right hemisphere", + "labelIndex": 103, "rgb": [ - 67, + 193, 94, - 149 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 106, - "children": [], - "status": "publicP", - "position": [ - 44839825, - -63606518, - -17316773 + 250 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9", + "filename": "Area s32 (sACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG2 (FusG) [v1.4, Colin 27, right hemisphere]" + "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + } + }, + "_": { + "xml": { + "name": "Area s32 (sACC)", + "id": "46", + "grayvalue": "103" + }, + "dat": { + "colors": "46 193 94 250", + "names": "46 s32" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + "_": { + "jubrain-ontology_24.json": { + "name": "Area s32 (sACC)", + "arealabel": "Area-s32", + "status": "publicP", + "labelIndex": "46", + "doi": "https://doi.org/10.25493/XTRR-172", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/57ac8798-a260-4c9b-8f9c-3e32d1dd3aca" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area s32 (sACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/61b44255-ae3a-4a23-b1bc-7d303a48dbd3" } } }, { - "name": "Area FG3 (FusG)", - "arealabel": "Area-FG3", + "name": "Area 33 (ACC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/Z0F6-0SY", - "synonyms": [], - "rgb": [ - 120, - 147, - 37 - ], "children": [ { - "name": "Area FG3 (FusG) - left hemisphere", + "name": "Area 33 (ACC)", + "status": "left hemisphere", + "labelIndex": 46, "rgb": [ - 120, - 147, - 37 - ], - "labelIndex": 239, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -29844935, - -45368421, - -14184493 + 51, + 57, + 245 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "34f29154-e210-4bef-9510-73b77f727132", + "filename": "Area 33 (ACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG3 (FusG) [v6.1, Colin 27, left hemisphere]" + "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" + } + }, + "_": { + "xml": { + "name": "Area 33 (ACC)", + "id": "39", + "grayvalue": "46" + }, + "dat": { + "colors": "39 51 57 245", + "names": "39 33" } - ] + } }, { - "name": "Area FG3 (FusG) - right hemisphere", + "name": "Area 33 (ACC)", + "status": "right hemisphere", + "labelIndex": 46, "rgb": [ - 120, - 147, - 37 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 239, - "children": [], - "status": "publicP", - "position": [ - 31148061, - -44485336, - -15533822 + 51, + 57, + 245 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "34f29154-e210-4bef-9510-73b77f727132", + "filename": "Area 33 (ACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG3 (FusG) [v6.1, Colin 27, right hemisphere]" + "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" + } + }, + "_": { + "xml": { + "name": "Area 33 (ACC)", + "id": "39", + "grayvalue": "46" + }, + "dat": { + "colors": "39 51 57 245", + "names": "39 33" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" + "_": { + "jubrain-ontology_24.json": { + "name": "Area 33 (ACC)", + "arealabel": "Area-33", + "status": "publicP", + "labelIndex": "39", + "doi": "https://doi.org/10.25493/X9QP-C6F", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2801b466-fc6e-4079-91da-1f2a5180f76c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area 33 (ACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b83a3330-b80e-42a0-b8d2-82f38784aa1d" } - }, - "relatedAreas": [] + } }, { - "name": "Area FG1 (FusG)", - "arealabel": "Area-FG1", + "name": "Area p32 (pACC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/5ZVQ-R8R", - "synonyms": [], - "rgb": [ - 131, - 183, - 58 - ], "children": [ { - "name": "Area FG1 (FusG) - left hemisphere", + "name": "Area p32 (pACC)", + "status": "left hemisphere", + "labelIndex": 116, "rgb": [ - 131, - 183, - 58 - ], - "labelIndex": 107, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -29006116, - -66264526, - -12290010 + 87, + 135, + 14 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "a00577ca-5089-443d-918e-b99531efd5e9", + "filename": "Area p32 (pACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG1 (FusG) [v1.4, Colin 27, left hemisphere]" + "kgId": "7a326443-3ced-482f-8772-fb948b0f298f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" + } + }, + "_": { + "xml": { + "name": "Area p32 (pACC)", + "id": "47", + "grayvalue": "116" + }, + "dat": { + "colors": "47 87 135 14", + "names": "47 p32" } - ] + } }, { - "name": "Area FG1 (FusG) - right hemisphere", + "name": "Area p32 (pACC)", + "status": "right hemisphere", + "labelIndex": 116, "rgb": [ - 131, - 183, - 58 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 107, - "children": [], - "status": "publicP", - "position": [ - 32840456, - -64340456, - -12612536 + 87, + 135, + 14 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "a00577ca-5089-443d-918e-b99531efd5e9", + "filename": "Area p32 (pACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG1 (FusG) [v1.4, Colin 27, right hemisphere]" + "kgId": "7a326443-3ced-482f-8772-fb948b0f298f" } - ] - } - ], - "relatedAreas": [ - { - "name": "Area FG1", + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "6318e160-4ad2-4eec-8a2e-2df6fe07d8f4" + "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" + } + }, + "_": { + "xml": { + "name": "Area p32 (pACC)", + "id": "47", + "grayvalue": "116" + }, + "dat": { + "colors": "47 87 135 14", + "names": "47 p32" } } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" + "_": { + "jubrain-ontology_24.json": { + "name": "Area p32 (pACC)", + "arealabel": "Area-p32", + "status": "publicP", + "labelIndex": "47", + "doi": "https://doi.org/10.25493/3JX0-7E5", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/7a326443-3ced-482f-8772-fb948b0f298f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p32 (pACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b09aaa77-f41b-4008-b8b9-f984b0417cf3" } } }, { - "name": "Area FG4 (FusG)", - "arealabel": "Area-FG4", + "name": "Area s24 (sACC)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/13RG-FYV", - "synonyms": [], - "relatedAreas": [ - { - "name": "Area FG2", - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "8f436328-4251-4706-ae38-767e1ab21c6f" - } - } - } - ], - "rgb": [ - 170, - 220, - 175 - ], "children": [ { - "name": "Area FG4 (FusG) - left hemisphere", + "name": "Area s24 (sACC)", + "status": "left hemisphere", + "labelIndex": 112, "rgb": [ - 170, - 220, - 175 - ], - "labelIndex": 238, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -43204016, - -44325167, - -20016734 + 133, + 34, + 201 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b", + "filename": "Area s24 (sACC) [v16.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG4 (FusG) [v6.1, Colin 27, left hemisphere]" + "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" + } + }, + "_": { + "xml": { + "name": "Area s24 (sACC)", + "id": "183", + "grayvalue": "112" + }, + "dat": { + "colors": "183 133 34 201", + "names": "183 s24" } - ] + } }, { - "name": "Area FG4 (FusG) - right hemisphere", + "name": "Area s24 (sACC)", + "status": "right hemisphere", + "labelIndex": 112, "rgb": [ - 170, - 220, - 175 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 238, - "children": [], - "status": "publicP", - "position": [ - 43609694, - -43478025, - -22392295 + 133, + 34, + 201 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b", + "filename": "Area s24 (sACC) [v16.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area FG4 (FusG) [v6.1, Colin 27, right hemisphere]" + "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" + } + }, + "_": { + "xml": { + "name": "Area s24 (sACC)", + "id": "183", + "grayvalue": "112" + }, + "dat": { + "colors": "183 133 34 201", + "names": "183 s24" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" + "_": { + "jubrain-ontology_24.json": { + "name": "Area s24 (sACC)", + "arealabel": "Area-s24", + "status": "publicP", + "labelIndex": "183", + "doi": "https://doi.org/10.25493/HXWM-NRX", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/2092649c-7880-4d13-9537-a8f5a71dccf3" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area s24 (sACC)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/d4ea6cc5-1e1d-4212-966f-81fed01eb648" } } } - ] - } - ] - }, - { - "name": "limbic lobe", - "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, - "children": [ + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cingulate gyrus, frontal part", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, { - "name": "cingulate gyrus, frontal part", + "name": "hippocampal formation", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "Area p24c (pACC)", - "arealabel": "Area-p24c", + "name": "HATA (Hippocampus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/QA7B-JM9", - "synonyms": [], - "rgb": [ - 241, - 164, - 195 - ], "children": [ { - "name": "Area p24c (pACC) - left hemisphere", + "name": "HATA (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 63, "rgb": [ - 241, - 164, - 195 - ], - "labelIndex": 232, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -8144989, - 41168443, - 14314854 + 137, + 12, + 73 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721", + "filename": "HATA (Hippocampus) [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24c (pACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + } + }, + "_": { + "xml": { + "name": "HATA (Hippocampus)", + "id": "68", + "grayvalue": "63" + }, + "dat": { + "colors": "68 137 12 73", + "names": "68 HATA" + } + } }, { - "name": "Area p24c (pACC) - right hemisphere", + "name": "HATA (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 63, "rgb": [ - 241, - 164, - 195 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 232, - "children": [], - "status": "publicP", - "position": [ - 9856593, - 40780558, - 12002406 + 137, + 12, + 73 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721", + "filename": "HATA (Hippocampus) [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24c (pACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + } + }, + "_": { + "xml": { + "name": "HATA (Hippocampus)", + "id": "68", + "grayvalue": "63" + }, + "dat": { + "colors": "68 137 12 73", + "names": "68 HATA" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + "_": { + "jubrain-ontology_24.json": { + "name": "HATA (Hippocampus)", + "arealabel": "HATA", + "status": "publicP", + "labelIndex": "68", + "doi": "https://doi.org/10.25493/M1XP-VSQ", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/4225fb8e-b9b4-456a-961e-9db90acac575" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "HATA (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" } - }, - "relatedAreas": [] + } }, { - "name": "Area 25 (sACC)", - "arealabel": "Area-25", + "name": "Entorhinal Cortex", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/51AM-WN4", - "synonyms": [], - "rgb": [ - 170, - 68, - 220 - ], "children": [ { - "name": "Area 25 (sACC) - left hemisphere", + "name": "Entorhinal Cortex", + "status": "left hemisphere", + "labelIndex": 51, "rgb": [ - 170, - 68, - 220 - ], - "labelIndex": 184, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -3522692, - 13560250, - -11860720 + 234, + 239, + 14 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e", + "filename": "Entorhinal Cortex [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 25 (sACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" + } + }, + "_": { + "xml": { + "name": "Entorhinal Cortex", + "id": "60", + "grayvalue": "51" + }, + "dat": { + "colors": "60 234 239 14", + "names": "60 EC" } - ] + } }, { - "name": "Area 25 (sACC) - right hemisphere", + "name": "Entorhinal Cortex", + "status": "right hemisphere", + "labelIndex": 51, "rgb": [ - 170, - 68, - 220 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 184, - "children": [], - "status": "publicP", - "position": [ - 4564663, - 12954463, - -12174863 + 234, + 239, + 14 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e", + "filename": "Entorhinal Cortex [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 25 (sACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" + } + }, + "_": { + "xml": { + "name": "Entorhinal Cortex", + "id": "60", + "grayvalue": "51" + }, + "dat": { + "colors": "60 234 239 14", + "names": "60 EC" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" + "_": { + "jubrain-ontology_24.json": { + "name": "Entorhinal Cortex", + "arealabel": "Entorhinal-Cortex", + "status": "publicP", + "labelIndex": "60", + "doi": "https://doi.org/10.25493/KNXY-B1Z", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/f251d71c-32ac-489d-b96d-fe5e1297fcb7" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Entorhinal Cortex", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/030827d4-e0d1-4406-b71f-3f58dc2f9cca" } - }, - "relatedAreas": [] + } }, { - "name": "Area p24ab (pACC)", - "arealabel": "Area-p24ab", + "name": "CA3 (Hippocampus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/DHXC-2KN", - "synonyms": [], - "rgb": [ - 153, - 195, - 229 - ], "children": [ { - "name": "Area p24ab (pACC) - left hemisphere", + "name": "CA3 (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 88, "rgb": [ - 153, - 195, - 229 - ], - "labelIndex": 231, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -2244059, - 38783168, - 6389109 + 39, + 0, + 250 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503", + "filename": "CA3 (Hippocampus) [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24ab (pACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "73d8e689-9485-4796-b2b2-47181fc45323" + } + }, + "_": { + "xml": { + "name": "CA3 (Hippocampus)", + "id": "59", + "grayvalue": "88" + }, + "dat": { + "colors": "59 39 0 250", + "names": "59 CA3" } - ] + } }, { - "name": "Area p24ab (pACC) - right hemisphere", + "name": "CA3 (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 87, "rgb": [ - 153, - 195, - 229 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 231, - "children": [], - "status": "publicP", - "position": [ - 3429274, - 38385609, - 7809963 + 39, + 0, + 250 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503", + "filename": "CA3 (Hippocampus) [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p24ab (pACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "73d8e689-9485-4796-b2b2-47181fc45323" + } + }, + "_": { + "xml": { + "name": "CA3 (Hippocampus)", + "id": "59", + "grayvalue": "87" + }, + "dat": { + "colors": "59 39 0 250", + "names": "59 CA3" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" + "_": { + "jubrain-ontology_24.json": { + "name": "CA3 (Hippocampus)", + "arealabel": "CA3", + "status": "publicP", + "labelIndex": "59", + "doi": "https://doi.org/10.25493/C546-GS0", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/72f4d9d3-6a14-4b68-8924-bcc01a977f07" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CA3 (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/73d8e689-9485-4796-b2b2-47181fc45323" } - }, - "relatedAreas": [] + } }, { - "name": "Area s32 (sACC)", - "arealabel": "Area-s32", + "name": "CA1 (Hippocampus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/XTRR-172", - "synonyms": [], - "rgb": [ - 193, - 94, - 250 - ], "children": [ { - "name": "Area s32 (sACC) - left hemisphere", + "name": "CA1 (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 55, "rgb": [ - 193, - 94, - 250 - ], - "labelIndex": 46, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -6738110, - 35256183, - -11765377 + 250, + 89, + 0 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca", + "filename": "CA1 (Hippocampus) [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s32 (sACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c" + } + }, + "_": { + "xml": { + "name": "CA1 (Hippocampus)", + "id": "66", + "grayvalue": "55" + }, + "dat": { + "colors": "66 250 89 0", + "names": "66 CA1" } - ] + } }, { - "name": "Area s32 (sACC) - right hemisphere", + "name": "CA1 (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 54, "rgb": [ - 193, - 94, - 250 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 46, - "children": [], - "status": "publicP", - "position": [ - 4307795, - 34460360, - -12141905 + 250, + 89, + 0 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca", + "filename": "CA1 (Hippocampus) [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s32 (sACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c" + } + }, + "_": { + "xml": { + "name": "CA1 (Hippocampus)", + "id": "66", + "grayvalue": "54" + }, + "dat": { + "colors": "66 250 89 0", + "names": "66 CA1" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + "_": { + "jubrain-ontology_24.json": { + "name": "CA1 (Hippocampus)", + "arealabel": "CA1", + "status": "publicP", + "labelIndex": "66", + "doi": "https://doi.org/10.25493/4A6X-6F0", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/effec48c-edf6-4be4-9e0e-75c57480d53c" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CA1 (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/bfc0beb7-310c-4c57-b810-2adc464bd02c" } - }, - "relatedAreas": [] + } }, { - "name": "Area 33 (ACC)", - "arealabel": "Area-33", + "name": "CA2 (Hippocampus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/X9QP-C6F", - "synonyms": [], - "rgb": [ - 51, - 57, - 245 - ], "children": [ { - "name": "Area 33 (ACC) - left hemisphere", + "name": "CA2 (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 49, "rgb": [ - 51, - 57, - 245 - ], - "labelIndex": 39, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -4861218, - 14163048, - 15911877 + 0, + 250, + 98 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c", + "filename": "CA2 (Hippocampus) [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 33 (ACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "159b16ee-2451-44d6-81cf-871d04755da4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd" + } + }, + "_": { + "xml": { + "name": "CA2 (Hippocampus)", + "id": "58", + "grayvalue": "49" + }, + "dat": { + "colors": "58 0 250 98", + "names": "58 CA2" } - ] + } }, { - "name": "Area 33 (ACC) - right hemisphere", + "name": "CA2 (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 49, "rgb": [ - 51, - 57, - 245 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 39, - "children": [], - "status": "publicP", - "position": [ - 5087045, - 15562321, - 16125051 + 0, + 250, + 98 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c", + "filename": "CA2 (Hippocampus) [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area 33 (ACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "159b16ee-2451-44d6-81cf-871d04755da4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd" + } + }, + "_": { + "xml": { + "name": "CA2 (Hippocampus)", + "id": "58", + "grayvalue": "49" + }, + "dat": { + "colors": "58 0 250 98", + "names": "58 CA2" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" + "_": { + "jubrain-ontology_24.json": { + "name": "CA2 (Hippocampus)", + "arealabel": "CA2", + "status": "publicP", + "labelIndex": "58", + "doi": "https://doi.org/10.25493/46G6-T33", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/159b16ee-2451-44d6-81cf-871d04755da4" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "CA2 (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cf4b3fad-2d45-458b-8bc7-1095983ed1dd" } - }, - "relatedAreas": [] + } }, { - "name": "Area p32 (pACC)", - "arealabel": "Area-p32", + "name": "DG (Hippocampus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/3JX0-7E5", - "synonyms": [], - "rgb": [ - 87, - 135, - 14 - ], "children": [ { - "name": "Area p32 (pACC) - left hemisphere", + "name": "DG (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 21, "rgb": [ - 87, - 135, - 14 - ], - "labelIndex": 47, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -6122937, - 49256108, - 11929896 + 0, + 149, + 8 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "7a326443-3ced-482f-8772-fb948b0f298f", + "filename": "DG (Hippocampus) [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p32 (pACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + } + }, + "_": { + "xml": { + "name": "DG (Hippocampus)", + "id": "61", + "grayvalue": "21" + }, + "dat": { + "colors": "61 0 149 8", + "names": "61 DG" } - ] + } }, { - "name": "Area p32 (pACC) - right hemisphere", + "name": "DG (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 21, "rgb": [ - 87, - 135, - 14 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 47, - "children": [], - "status": "publicP", - "position": [ - 7759613, - 48520792, - 12436058 + 0, + 149, + 8 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "7a326443-3ced-482f-8772-fb948b0f298f", + "filename": "DG (Hippocampus) [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area p32 (pACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + } + }, + "_": { + "xml": { + "name": "DG (Hippocampus)", + "id": "61", + "grayvalue": "21" + }, + "dat": { + "colors": "61 0 149 8", + "names": "61 DG" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" + "_": { + "jubrain-ontology_24.json": { + "name": "DG (Hippocampus)", + "arealabel": "DG", + "status": "publicP", + "labelIndex": "61", + "doi": "https://doi.org/10.25493/M8JP-XQT", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/677c84c3-56b2-4671-bc63-15d3dda730a2" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "DG (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/0bea7e03-bfb2-4907-9d45-db9071ce627d" } - }, - "relatedAreas": [] + } }, { - "name": "Area s24 (sACC)", - "arealabel": "Area-s24", + "name": "Subiculum (Hippocampus)", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/HXWM-NRX", - "synonyms": [], - "rgb": [ - 133, - 34, - 201 - ], "children": [ { - "name": "Area s24 (sACC) - left hemisphere", + "name": "Subiculum (Hippocampus)", + "status": "left hemisphere", + "labelIndex": 83, "rgb": [ - 133, - 34, - 201 - ], - "labelIndex": 183, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -3247887, - 24596479, - -9615493 + 255, + 10, + 10 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3", + "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s24 (sACC) [v16.1, Colin 27, left hemisphere]" + "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + } + }, + "_": { + "xml": { + "name": "Subiculum (Hippocampus)", + "id": "192", + "grayvalue": "83" + }, + "dat": { + "colors": "192 255 10 10", + "names": "192 Subc" } - ] + } }, { - "name": "Area s24 (sACC) - right hemisphere", - "rgb": [ - 133, - 34, - 201 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 183, - "children": [], - "status": "publicP", - "position": [ - 3259899, - 23813535, - -9257019 + "name": "Subiculum (Hippocampus)", + "status": "right hemisphere", + "labelIndex": 84, + "rgb": [ + 255, + 10, + 10 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3", + "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Area s24 (sACC) [v16.1, Colin 27, right hemisphere]" + "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + } + }, + "_": { + "xml": { + "name": "Subiculum (Hippocampus)", + "id": "192", + "grayvalue": "84" + }, + "dat": { + "colors": "192 255 10 10", + "names": "192 Subc" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" + "_": { + "jubrain-ontology_24.json": { + "name": "Subiculum (Hippocampus)", + "arealabel": "Subiculum", + "status": "publicP", + "labelIndex": "192", + "doi": "https://doi.org/10.25493/QKJH-F45", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/1153f14e-100f-477e-bf95-89fb0af6d80b" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Subiculum (Hippocampus)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/7e2dab4c-a140-440d-a322-c1679adef2d4" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "hippocampal formation", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { - "name": "hippocampal formation", + "name": "cingulate gyrus, retrosplenial part ", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { - "name": "HATA (Hippocampus)", - "arealabel": "HATA", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/M1XP-VSQ", - "synonyms": [], - "rgb": [ - 137, - 12, - 73 - ], + "name": "Area a30 (retrosplenial)", + "status": "publicDOI", "children": [ { - "name": "HATA (Hippocampus) - left hemisphere", + "name": "Area a30 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 101, "rgb": [ - 137, - 12, - 73 - ], - "labelIndex": 68, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -13947917, - -9576389, - -18975694 + 0, + 0, + 155 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "HATA (Hippocampus) [v11.1, Colin 27, left hemisphere]" + "filename": "Area a30 (retrosplenial) [v11.0, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "810d6b90ec933e92f772c05d950407ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa84bdc8-fa61-485d-aa3a-31a9dd51f0c1" + } + }, + "_": { + "xml": { + "name": "Area a30 (retrosplenial)", + "id": "354", + "grayvalue": "101" + }, + "dat": { + "colors": "354 0 0 155", + "names": "354 t30" } - ] + } }, { - "name": "HATA (Hippocampus) - right hemisphere", + "name": "Area a30 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 101, "rgb": [ - 137, - 12, - 73 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 68, - "children": [], - "status": "publicP", - "position": [ - 15080586, - -8358974, - -17871795 + 0, + 0, + 155 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "HATA (Hippocampus) [v11.1, Colin 27, right hemisphere]" + "filename": "Area a30 (retrosplenial) [v11.0, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "810d6b90ec933e92f772c05d950407ff" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa84bdc8-fa61-485d-aa3a-31a9dd51f0c1" + } + }, + "_": { + "xml": { + "name": "Area a30 (retrosplenial)", + "id": "354", + "grayvalue": "101" + }, + "dat": { + "colors": "354 0 0 155", + "names": "354 t30" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + "_": { + "jubrain-ontology_24.json": { + "name": "Area a30 (retrosplenial)", + "arealabel": "Area-a30", + "status": "publicDOI", + "labelIndex": "354", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area a30 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/fa84bdc8-fa61-485d-aa3a-31a9dd51f0c1" } - }, - "relatedAreas": [] + } }, { - "name": "Entorhinal Cortex", - "arealabel": "Entorhinal-Cortex", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/KNXY-B1Z", - "synonyms": [], - "rgb": [ - 35, - 159, - 214 - ], + "name": "Area p30 (retrosplenial)", + "status": "publicDOI", "children": [ { - "name": "Entorhinal Cortex - left hemisphere", + "name": "Area p30 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 99, "rgb": [ - 35, - 159, - 214 - ], - "labelIndex": 60, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -20926052, - -6082765, - -33357509 + 176, + 101, + 55 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Entorhinal Cortex [v11.1, Colin 27, left hemisphere]" + "filename": "Area p30 (retrosplenial) [v11.0, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "6b5702a3fb38ad26e4484f69a6aab8e5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4b3c152d-5b24-45d2-ae62-d09dba9cc4d8" + } + }, + "_": { + "xml": { + "name": "Area p30 (retrosplenial)", + "id": "269", + "grayvalue": "99" + }, + "dat": { + "colors": "269 176 101 55", + "names": "269 p30" } - ] + } }, { - "name": "Entorhinal Cortex - right hemisphere", + "name": "Area p30 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 99, "rgb": [ - 35, - 159, - 214 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 60, - "children": [], - "status": "publicP", - "position": [ - 22877203, - -3501469, - -32577556 + 176, + 101, + 55 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Entorhinal Cortex [v11.1, Colin 27, right hemisphere]" + "filename": "Area p30 (retrosplenial) [v11.0, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "6b5702a3fb38ad26e4484f69a6aab8e5" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4b3c152d-5b24-45d2-ae62-d09dba9cc4d8" + } + }, + "_": { + "xml": { + "name": "Area p30 (retrosplenial)", + "id": "269", + "grayvalue": "99" + }, + "dat": { + "colors": "269 176 101 55", + "names": "269 p30" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" + "_": { + "jubrain-ontology_24.json": { + "name": "Area p30 (retrosplenial)", + "arealabel": "Area-p30", + "status": "publicDOI", + "labelIndex": "269", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p30 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/4b3c152d-5b24-45d2-ae62-d09dba9cc4d8" } - }, - "relatedAreas": [] + } }, { - "name": "CA (Hippocampus)", - "arealabel": "CA", - "status": "publicP", - "labelIndex": null, - "relatedAreas": [ + "name": "Area i30 (retrosplenial)", + "status": "publicDOI", + "children": [ { - "name": "CA1 (Hippocampus)", + "name": "Area i30 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 98, + "rgb": [ + 61, + 39, + 207 + ], + "ngId": "COLIN_V24_LEFT_NG", + "originDatasets": [ + { + "filename": "Area i30 (retrosplenial) [v11.0, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "5a38548adb911bb6b28d36cef8eb76ab" + } + ], "fullId": { "kg": { "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c" + "kgId": "9658a994-02c9-4f6f-af94-05c21994289e" + } + }, + "_": { + "xml": { + "name": "Area i30 (retrosplenial)", + "id": "267", + "grayvalue": "98" + }, + "dat": { + "colors": "267 61 39 207", + "names": "267 a30" + } + } + }, + { + "name": "Area i30 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 98, + "rgb": [ + 61, + 39, + 207 + ], + "ngId": "COLIN_V24_RIGHT_NG", + "originDatasets": [ + { + "filename": "Area i30 (retrosplenial) [v11.0, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "5a38548adb911bb6b28d36cef8eb76ab" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9658a994-02c9-4f6f-af94-05c21994289e" + } + }, + "_": { + "xml": { + "name": "Area i30 (retrosplenial)", + "id": "267", + "grayvalue": "98" + }, + "dat": { + "colors": "267 61 39 207", + "names": "267 a30" } } } ], - "doi": "https://doi.org/10.25493/B85T-D88", - "synonyms": [], - "rgb": [ - 250, - 191, - 217 - ], + "_": { + "jubrain-ontology_24.json": { + "name": "Area i30 (retrosplenial)", + "arealabel": "Area-i30", + "status": "publicDOI", + "labelIndex": "267", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area i30 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/9658a994-02c9-4f6f-af94-05c21994289e" + } + } + }, + { + "name": "Area a29 (retrosplenial)", + "status": "publicDOI", "children": [ { - "name": "CA (Hippocampus) - left hemisphere", + "name": "Area a29 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 67, "rgb": [ - 250, - 191, - 217 - ], - "labelIndex": 191, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -27476326, - -26068931, - -11082817 + 255, + 0, + 0 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "f02f274f-5e8f-4c0b-a4c8-eef628a8af01", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CA (Hippocampus) [v11.1, Colin 27, left hemisphere]" + "filename": "Area a29 (retrosplenial) [v11.0, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "da8e389be34bced1bc5f95757f76f4a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2f58dd0e-d54c-434b-b394-10e69fcfb062" + } + }, + "_": { + "xml": { + "name": "Area a29 (retrosplenial)", + "id": "353", + "grayvalue": "67" + }, + "dat": { + "colors": "353 255 0 0", + "names": "353 t29" } - ] + } }, { - "name": "CA (Hippocampus) - right hemisphere", + "name": "Area a29 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 67, "rgb": [ - 250, - 191, - 217 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 191, - "children": [], - "status": "publicP", - "position": [ - 29426785, - -24801145, - -11142814 + 255, + 0, + 0 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "f02f274f-5e8f-4c0b-a4c8-eef628a8af01", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "CA (Hippocampus) [v11.1, Colin 27, right hemisphere]" + "filename": "Area a29 (retrosplenial) [v11.0, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "da8e389be34bced1bc5f95757f76f4a4" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2f58dd0e-d54c-434b-b394-10e69fcfb062" + } + }, + "_": { + "xml": { + "name": "Area a29 (retrosplenial)", + "id": "353", + "grayvalue": "67" + }, + "dat": { + "colors": "353 255 0 0", + "names": "353 t29" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "a0d14d3e-bc30-41cf-8b28-540067897f80" + "_": { + "jubrain-ontology_24.json": { + "name": "Area a29 (retrosplenial)", + "arealabel": "Area-a29", + "status": "publicDOI", + "labelIndex": "353", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area a29 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/2f58dd0e-d54c-434b-b394-10e69fcfb062" } } }, { - "name": "DG (Hippocampus)", - "arealabel": "DG", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/M8JP-XQT", - "synonyms": [], - "rgb": [ - 149, - 55, - 120 - ], + "name": "Area i29 (retrosplenial)", + "status": "publicDOI", "children": [ { - "name": "DG (Hippocampus) - left hemisphere", + "name": "Area i29 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 119, "rgb": [ - 149, - 55, - 120 - ], - "labelIndex": 61, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -26946498, - -26708171, - -9589494 + 216, + 143, + 142 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "DG (Hippocampus) [v11.1, Colin 27, left hemisphere]" + "filename": "Area i29 (retrosplenial) [v11.0, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "b11285b3b220c155d20f140d6f936bd7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b0538235-eea5-4ede-87cc-8d5012df5046" + } + }, + "_": { + "xml": { + "name": "Area i29 (retrosplenial)", + "id": "265", + "grayvalue": "119" + }, + "dat": { + "colors": "265 216 143 142", + "names": "265 a29" } - ] + } }, { - "name": "DG (Hippocampus) - right hemisphere", + "name": "Area i29 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 119, "rgb": [ - 149, - 55, - 120 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 61, - "children": [], - "status": "publicP", - "position": [ - 28316456, - -24674684, - -10596203 + 216, + 143, + 142 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "DG (Hippocampus) [v11.1, Colin 27, right hemisphere]" + "filename": "Area i29 (retrosplenial) [v11.0, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "b11285b3b220c155d20f140d6f936bd7" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b0538235-eea5-4ede-87cc-8d5012df5046" + } + }, + "_": { + "xml": { + "name": "Area i29 (retrosplenial)", + "id": "265", + "grayvalue": "119" + }, + "dat": { + "colors": "265 216 143 142", + "names": "265 a29" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + "_": { + "jubrain-ontology_24.json": { + "name": "Area i29 (retrosplenial)", + "arealabel": "Area-i29", + "status": "publicDOI", + "labelIndex": "265", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area i29 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/b0538235-eea5-4ede-87cc-8d5012df5046" } - }, - "relatedAreas": [] + } }, { - "name": "Subiculum (Hippocampus)", - "arealabel": "Subiculum", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/QKJH-F45", - "synonyms": [], - "rgb": [ - 111, - 125, - 219 - ], + "name": "Area p29 (retrosplenial)", + "status": "publicDOI", "children": [ { - "name": "Subiculum (Hippocampus) - left hemisphere", + "name": "Area p29 (retrosplenial)", + "status": "left hemisphere", + "labelIndex": 85, "rgb": [ - 111, - 125, - 219 - ], - "labelIndex": 192, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -20352171, - -24057796, - -16326997 + 204, + 97, + 221 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, left hemisphere]" + "filename": "Area p29 (retrosplenial) [v11.0, Colin 27, left hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "2778c8fce65ff8f69253f0ed55122c1c" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cd3483e4-2f66-49e8-a590-1722560f285a" + } + }, + "_": { + "xml": { + "name": "Area p29 (retrosplenial)", + "id": "268", + "grayvalue": "85" + }, + "dat": { + "colors": "268 204 97 221", + "names": "268 p29" + } + } }, { - "name": "Subiculum (Hippocampus) - right hemisphere", + "name": "Area p29 (retrosplenial)", + "status": "right hemisphere", + "labelIndex": 85, "rgb": [ - 111, - 125, - 219 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 192, - "children": [], - "status": "publicP", - "position": [ - 22543982, - -23195614, - -15923499 + 204, + 97, + 221 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "1153f14e-100f-477e-bf95-89fb0af6d80b", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Subiculum (Hippocampus) [v11.1, Colin 27, right hemisphere]" + "filename": "Area p29 (retrosplenial) [v11.0, Colin 27, right hemisphere]", + "kgSchema": "julich/tmp/dataset/v1.0.0", + "kgId": "2778c8fce65ff8f69253f0ed55122c1c" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cd3483e4-2f66-49e8-a590-1722560f285a" + } + }, + "_": { + "xml": { + "name": "Area p29 (retrosplenial)", + "id": "268", + "grayvalue": "85" + }, + "dat": { + "colors": "268 204 97 221", + "names": "268 p29" } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + "_": { + "jubrain-ontology_24.json": { + "name": "Area p29 (retrosplenial)", + "arealabel": "Area-p29", + "status": "publicDOI", + "labelIndex": "268", + "doi": "", + "synonyms": [], + "rgb": null + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Area p29 (retrosplenial)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/cd3483e4-2f66-49e8-a590-1722560f285a" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cingulate gyrus, retrosplenial part ", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "limbic lobe", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebral cortex", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "telencephalon", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "metencephalon", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "cerebellum", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "cerebellar nuclei", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "globose nucleus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Interposed Nucleus (Cerebellum)", - "arealabel": "Interposed-Nucleus", - "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/8PTB-JDH", - "synonyms": [], - "rgb": [ - 170, - 29, - 10 - ], + "status": "publicP", "children": [ { - "name": "Interposed Nucleus (Cerebellum) - left hemisphere", + "name": "Interposed Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 109, "rgb": [ - 170, - 29, - 10 - ], - "labelIndex": 251, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -8457921, - -55262376, - -30235149 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", + "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]" + "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + } + }, + "_": { + "xml": { + "name": "Interposed Nucleus (Cerebellum)", + "id": "251", + "grayvalue": "109" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "Interposed Nucleus (Cerebellum) - right hemisphere", + "name": "Interposed Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 109, "rgb": [ - 170, - 29, - 10 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 251, - "children": [], - "status": "publicP", - "position": [ - 7917989, - -54201058, - -31489418 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", + "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]" + "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + } + }, + "_": { + "xml": { + "name": "Interposed Nucleus (Cerebellum)", + "id": "251", + "grayvalue": "109" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + "_": { + "jubrain-ontology_24.json": { + "name": "Interposed Nucleus (Cerebellum)", + "arealabel": "Interposed-Nucleus", + "status": "publicP", + "labelIndex": "251", + "doi": "https://doi.org/10.25493/8PTB-JDH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/658a7f71-1b94-4f4a-8f15-726043bbb52a" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Interposed Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/85e7bb13-4b73-4f6f-8222-3adb7b800788" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "globose nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "dentate nucleus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Dorsal Dentate Nucleus (Cerebellum)", - "arealabel": "Dorsal-Dentate-Nucleus", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/M5QG-SHH", - "synonyms": [], - "rgb": [ - 89, - 201, - 99 - ], "children": [ { - "name": "Dorsal Dentate Nucleus (Cerebellum) - left hemisphere", + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 16, "rgb": [ - 89, - 201, - 99 - ], - "labelIndex": 240, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -16612782, - -56036341, - -36064536 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845", + "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]" + "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "58095aef-da69-43d4-887c-009c095cecce" + } + }, + "_": { + "xml": { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "id": "240", + "grayvalue": "16" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "Dorsal Dentate Nucleus (Cerebellum) - right hemisphere", + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 15, "rgb": [ - 89, - 201, - 99 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 240, - "children": [], - "status": "publicP", - "position": [ - 15388967, - -58303395, - -36586280 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845", + "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]" + "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "58095aef-da69-43d4-887c-009c095cecce" + } + }, + "_": { + "xml": { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "id": "240", + "grayvalue": "15" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "58095aef-da69-43d4-887c-009c095cecce" + "_": { + "jubrain-ontology_24.json": { + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "arealabel": "Dorsal-Dentate-Nucleus", + "status": "publicP", + "labelIndex": "240", + "doi": "https://doi.org/10.25493/M5QG-SHH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/870cdd4a-fdb4-4d70-9c3d-d459a122c845" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Dorsal Dentate Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/58095aef-da69-43d4-887c-009c095cecce" } - }, - "relatedAreas": [] + } }, { "name": "Ventral Dentate Nucleus (Cerebellum)", - "arealabel": "Ventral-Dentate-Nucleus", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/FQE5-5QR", - "synonyms": [], - "rgb": [ - 39, - 129, - 9 - ], "children": [ { - "name": "Ventral Dentate Nucleus (Cerebellum) - left hemisphere", + "name": "Ventral Dentate Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 61, "rgb": [ - 39, - 129, - 9 - ], - "labelIndex": 241, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -13112867, - -56176072, - -29957111 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f", + "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]" + "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" + } + }, + "_": { + "xml": { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "id": "241", + "grayvalue": "61" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "Ventral Dentate Nucleus (Cerebellum) - right hemisphere", + "name": "Ventral Dentate Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 61, "rgb": [ - 39, - 129, - 9 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 241, - "children": [], - "status": "publicP", - "position": [ - 12107011, - -55974170, - -31385609 + 200, + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f", + "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]" + "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f" } - ] + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" + } + }, + "_": { + "xml": { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "id": "241", + "grayvalue": "61" + }, + "dat": { + "colors": false, + "names": false + } + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" + "_": { + "jubrain-ontology_24.json": { + "name": "Ventral Dentate Nucleus (Cerebellum)", + "arealabel": "Ventral-Dentate-Nucleus", + "status": "publicP", + "labelIndex": "241", + "doi": "https://doi.org/10.25493/FQE5-5QR", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/d3e0ae99-49f4-4bb1-a394-c9c12016ed2f" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Ventral Dentate Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/57282342-5a75-4e07-bcdc-2d368c517b71" } - }, - "relatedAreas": [] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "dentate nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } }, { "name": "fastigial nucleus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Fastigial Nucleus (Cerebellum)", - "arealabel": "Fastigial-Nucleus", "status": "publicP", - "labelIndex": null, - "doi": "https://doi.org/10.25493/3YJ9-S6G", - "synonyms": [], - "rgb": [ - 200, - 100, - 10 - ], "children": [ { - "name": "Fastigial Nucleus (Cerebellum) - left hemisphere", + "name": "Fastigial Nucleus (Cerebellum)", + "status": "left hemisphere", + "labelIndex": 103, "rgb": [ 200, - 100, - 10 - ], - "labelIndex": 219, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -3828877, - -53149733, - -29013369 + 200, + 200 ], + "ngId": "COLIN_V24_LEFT_NG", "originDatasets": [ { - "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb", + "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]" + "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" + } + }, + "_": { + "xml": { + "name": "Fastigial Nucleus (Cerebellum)", + "id": "219", + "grayvalue": "103" + }, + "dat": { + "colors": false, + "names": false } - ] + } }, { - "name": "Fastigial Nucleus (Cerebellum) - right hemisphere", + "name": "Fastigial Nucleus (Cerebellum)", + "status": "right hemisphere", + "labelIndex": 102, "rgb": [ 200, - 100, - 10 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 219, - "children": [], - "status": "publicP", - "position": [ - 3011287, - -53069977, - -29040632 + 200, + 200 ], + "ngId": "COLIN_V24_RIGHT_NG", "originDatasets": [ { - "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb", + "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]", "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]" + "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb" + } + ], + "fullId": { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" + } + }, + "_": { + "xml": { + "name": "Fastigial Nucleus (Cerebellum)", + "id": "219", + "grayvalue": "102" + }, + "dat": { + "colors": false, + "names": false } - ] + } } ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" + "_": { + "jubrain-ontology_24.json": { + "name": "Fastigial Nucleus (Cerebellum)", + "arealabel": "Fastigial-Nucleus", + "status": "publicP", + "labelIndex": "219", + "doi": "https://doi.org/10.25493/3YJ9-S6G", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/dec5c207-c0d9-4f25-a333-1db039c570cb" + }, + "kgRegion": { + "alternateOf": [], + "species": [], + "name": "Fastigial Nucleus (Cerebellum)", + "alias": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationregion/v1.0.0/e8abfe3d-8b64-45c2-8853-314d82873273" } - }, - "relatedAreas": [] + } } - ] + ], + "_": { + "jubrain-ontology_24.json": { + "name": "fastigial nucleus", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } }, { "name": "emboliform nucleus", "status": null, - "labelIndex": null, - "synonyms": [], - "rgb": null, "children": [ { "name": "Interposed Nucleus (Cerebellum)", - "arealabel": "Interposed-Nucleus", "status": "publicP", + "children": [], + "_": { + "jubrain-ontology_24.json": { + "name": "Interposed Nucleus (Cerebellum)", + "arealabel": "Interposed-Nucleus", + "status": "publicP", + "labelIndex": "251", + "doi": "https://doi.org/10.25493/8PTB-JDH", + "synonyms": [], + "rgb": null, + "kgHref": "https://kg.ebrains.eu/search/instances/Dataset/658a7f71-1b94-4f4a-8f15-726043bbb52a" + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "emboliform nucleus", + "status": null, "labelIndex": null, - "doi": "https://doi.org/10.25493/8PTB-JDH", "synonyms": [], - "rgb": [ - 170, - 29, - 10 - ], - "children": [ - { - "name": "Interposed Nucleus (Cerebellum) - left hemisphere", - "rgb": [ - 170, - 29, - 10 - ], - "labelIndex": 251, - "ngId": "jubrain colin v18 left", - "children": [], - "status": "publicP", - "position": [ - -8457921, - -55262376, - -30235149 - ], - "originDatasets": [ - { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]" - } - ] - }, - { - "name": "Interposed Nucleus (Cerebellum) - right hemisphere", - "rgb": [ - 170, - 29, - 10 - ], - "ngId": "jubrain colin v18 right", - "labelIndex": 251, - "children": [], - "status": "publicP", - "position": [ - 7917989, - -54201058, - -31489418 - ], - "originDatasets": [ - { - "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a", - "kgSchema": "minds/core/dataset/v1.0.0", - "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]" - } - ] - } - ], - "fullId": { - "kg": { - "kgSchema": "minds/core/parcellationregion/v1.0.0", - "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" - } - }, - "relatedAreas": [] + "rgb": null } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebellar nuclei", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null } - ] + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "cerebellum", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + } + ], + "_": { + "jubrain-ontology_24.json": { + "name": "metencephalon", + "status": null, + "labelIndex": null, + "synonyms": [], + "rgb": null + } + } + }, + { + "name": "_", + "children": [ + { + "name": "GapMap Frontal-I (GapMap)", + "status": "left hemisphere", + "labelIndex": 13, + "ngId": "COLIN_V24_LEFT_NG", + "rgb": [ + 186, + 255, + 25 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-I (GapMap) [v9.2, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-I (GapMap)", + "id": "500", + "grayvalue": "13" + }, + "dat": { + "colors": "500 186 255 25", + "names": "500 GapMap-Frontal-I" + } + } + }, + { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "status": "left hemisphere", + "labelIndex": 32, + "ngId": "COLIN_V24_LEFT_NG", + "rgb": [ + 104, + 161, + 93 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Occipital (GapMap) [v9.2, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f3ae17b7-f994-4161-ba60-46a971610167" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "id": "504", + "grayvalue": "32" + }, + "dat": { + "colors": "504 104 161 93", + "names": "504 GapMap-Frontal-to-Occipital" + } + } + }, + { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "status": "left hemisphere", + "labelIndex": 60, + "ngId": "COLIN_V24_LEFT_NG", + "rgb": [ + 76, + 90, + 161 + ], + "originDatasets": [ + { + "filename": "GapMap Temporal-to-Parietal (GapMap) [v9.2, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18" + } + ], + "_": { + "xml": { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "id": "503", + "grayvalue": "60" + }, + "dat": { + "colors": "503 76 90 161", + "names": "503 GapMap-Temporal-to-Parietal" + } + } + }, + { + "name": "GapMap Frontal-II (GapMap)", + "status": "left hemisphere", + "labelIndex": 90, + "ngId": "COLIN_V24_LEFT_NG", + "rgb": [ + 255, + 135, + 15 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-II (GapMap) [v9.2, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-II (GapMap)", + "id": "501", + "grayvalue": "90" + }, + "dat": { + "colors": "501 255 135 15", + "names": "501 GapMap-Frontal-II" + } + } + }, + { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "status": "left hemisphere", + "labelIndex": 97, + "ngId": "COLIN_V24_LEFT_NG", + "rgb": [ + 161, + 24, + 74 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Temporal (GapMap) [v9.2, Colin 27, left hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "id": "502", + "grayvalue": "97" + }, + "dat": { + "colors": "502 161 24 74", + "names": "502 GapMap-Frontal-to-Temporal" + } + } + }, + { + "name": "GapMap Frontal-I (GapMap)", + "status": "right hemisphere", + "labelIndex": 13, + "ngId": "COLIN_V24_RIGHT_NG", + "rgb": [ + 186, + 255, + 25 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-I (GapMap) [v9.2, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-I (GapMap)", + "id": "500", + "grayvalue": "13" + }, + "dat": { + "colors": "500 186 255 25", + "names": "500 GapMap-Frontal-I" + } + } + }, + { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "status": "right hemisphere", + "labelIndex": 32, + "ngId": "COLIN_V24_RIGHT_NG", + "rgb": [ + 104, + 161, + 93 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Occipital (GapMap) [v9.2, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "f3ae17b7-f994-4161-ba60-46a971610167" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Occipital (GapMap)", + "id": "504", + "grayvalue": "32" + }, + "dat": { + "colors": "504 104 161 93", + "names": "504 GapMap-Frontal-to-Occipital" + } + } + }, + { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "status": "right hemisphere", + "labelIndex": 60, + "ngId": "COLIN_V24_RIGHT_NG", + "rgb": [ + 76, + 90, + 161 + ], + "originDatasets": [ + { + "filename": "GapMap Temporal-to-Parietal (GapMap) [v9.2, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18" + } + ], + "_": { + "xml": { + "name": "GapMap Temporal-to-Parietal (GapMap)", + "id": "503", + "grayvalue": "60" + }, + "dat": { + "colors": "503 76 90 161", + "names": "503 GapMap-Temporal-to-Parietal" + } + } + }, + { + "name": "GapMap Frontal-II (GapMap)", + "status": "right hemisphere", + "labelIndex": 90, + "ngId": "COLIN_V24_RIGHT_NG", + "rgb": [ + 255, + 135, + 15 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-II (GapMap) [v9.2, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-II (GapMap)", + "id": "501", + "grayvalue": "90" + }, + "dat": { + "colors": "501 255 135 15", + "names": "501 GapMap-Frontal-II" + } + } + }, + { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "status": "right hemisphere", + "labelIndex": 96, + "ngId": "COLIN_V24_RIGHT_NG", + "rgb": [ + 161, + 24, + 74 + ], + "originDatasets": [ + { + "filename": "GapMap Frontal-to-Temporal (GapMap) [v9.2, Colin 27, right hemisphere]", + "kgSchema": "minds/core/dataset/v1.0.0", + "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45" + } + ], + "_": { + "xml": { + "name": "GapMap Frontal-to-Temporal (GapMap)", + "id": "502", + "grayvalue": "96" + }, + "dat": { + "colors": "502 161 24 74", + "names": "502 GapMap-Frontal-to-Temporal" } - ] + } } ] } - ] + ], + "_": { + "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20200926_JulichBrain-V2_4-Colin_ontology/raw/62115276a0287a3fea9ba5246469e40a259e26ec/output/nehuba-ui/julich-brain-v2_4-colin.json" + } } ], "properties": { "name": "MNI Colin 27", "description": "A stereotaxic average of 27 T1-weighted MRI scans of the same individual. (Holmes et al., 1998), mapped to fit the MNI305 space. Although not capturing brain variability, it is well established in neuroscience due to its high definition. HBP provides the JuBrain probabilistic cytoarchitectonic atlas (Amunts et al.) in this space." } -} \ No newline at end of file +} \ No newline at end of file diff --git a/src/res/ext/colinNehubaConfig.json b/src/res/ext/colinNehubaConfig.json index a8b1d29df406129bb0f5623ad1acb3f4324fb2de..eaccca12dbb17e43c4f2268f8acdd66a57b41c3b 100644 --- a/src/res/ext/colinNehubaConfig.json +++ b/src/res/ext/colinNehubaConfig.json @@ -23,7 +23,7 @@ "mesh": { "removeBasedOnNavigation": true, "flipRemovedOctant": true, - "surfaceParcellation": false + "surfaceParcellation": true }, "removePerspectiveSlicesBackground": { "mode": "==" @@ -87,10 +87,10 @@ ] ] }, - "jubrain colin v18 left": { + "COLIN_V24_LEFT_NG": { "type": "segmentation", "visible": true, - "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/18/colin27/left", + "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20200926_JulichBrain-V2_4-Colin_MPM_mesh/precomputed/left", "transform": [ [ 1, @@ -116,12 +116,15 @@ 0, 1 ] - ] + ], + "_": { + "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20200926_JulichBrain-V2_4-Colin_MPM_mesh/raw/745a37f64b6995a661f5a61287b4067df01687cb/output/nehuba-ui/left_config.json" + } }, - "jubrain colin v18 right": { + "COLIN_V24_RIGHT_NG": { "type": "segmentation", "visible": true, - "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/JuBrain/18/colin27/right", + "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20200926_JulichBrain-V2_4-Colin_MPM_mesh/precomputed/right", "transform": [ [ 1, @@ -147,7 +150,10 @@ 0, 1 ] - ] + ], + "_": { + "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20200926_JulichBrain-V2_4-Colin_MPM_mesh/raw/745a37f64b6995a661f5a61287b4067df01687cb/output/nehuba-ui/right_config.json" + } } }, "navigation": { diff --git a/src/services/effect/effect.spec.ts b/src/services/effect/effect.spec.ts index d62f8d8b0efb499858aa10443d92809c34b94ba1..3ca67f80459bfe76a2ffa296d3829d7d84434f91 100644 --- a/src/services/effect/effect.spec.ts +++ b/src/services/effect/effect.spec.ts @@ -10,31 +10,7 @@ import { defaultRootState } from '../stateStore.service' const colinsJson = require('!json-loader!../../res/ext/colin.json') - -const hoc1 = { - name: "Area hOc1 (V1, 17, CalcS) - left hemisphere", - rgb: [ - 190, - 132, - 147, - ], - labelIndex: 8, - ngId: "jubrain colin v18 left", - children: [], - status: "publicP", - position: [ - -8533787, - -84646549, - 1855106, - ], - originDatasets: [ - { - kgSchema: "minds/core/dataset/v1.0.0", - kgId: "5c669b77-c981-424a-858d-fe9f527dbc07", - filename: "Area hOc1 (V1, 17, CalcS) [v2.4, Colin 27, left hemisphere]" - } - ], -} +const COLIN_JULICHBRAIN_LAYER_NAME = `COLIN_V24_LEFT_NG` describe('effect.ts', () => { describe('getGetRegionFromLabelIndexId', () => { @@ -46,8 +22,10 @@ describe('effect.ts', () => { updated: true, }, }) - const fetchedRegion = getRegionFromlabelIndexId({ labelIndexId: 'jubrain colin v18 left#8' }) - expect(fetchedRegion).toEqual(hoc1) + const fetchedRegion = getRegionFromlabelIndexId({ labelIndexId: `${COLIN_JULICHBRAIN_LAYER_NAME}#116` }) + expect(fetchedRegion).toBeTruthy() + expect(fetchedRegion.fullId.kg.kgId).toEqual('b09aaa77-f41b-4008-b8b9-f984b0417cf3') + }) }) diff --git a/src/services/state/uiState.store.helper.ts b/src/services/state/uiState.store.helper.ts index 2f712457a8b99425e08c27d7ac02ded588457eee..d67ced3cd3ce1f96000cc77fbfa5ab9402fc5349 100644 --- a/src/services/state/uiState.store.helper.ts +++ b/src/services/state/uiState.store.helper.ts @@ -36,6 +36,7 @@ export interface IDatasetPreviewData{ datasetSchema?: string datasetId: string filename: string + datasetSchema?: string } export type TypeOpenedWidget = { diff --git a/src/ui/databrowserModule/preview/previewComponentWrapper/previewCW.component.ts b/src/ui/databrowserModule/preview/previewComponentWrapper/previewCW.component.ts index 379007832268c0b019bac4f35d102873df7524da..c5f8d6396c5e5fdf576f9c6f1a75b3e99bba6203 100644 --- a/src/ui/databrowserModule/preview/previewComponentWrapper/previewCW.component.ts +++ b/src/ui/databrowserModule/preview/previewComponentWrapper/previewCW.component.ts @@ -80,6 +80,8 @@ export class PreviewComponentWrapper{ this.backendUrl = backendUrl this.datasetName = datasetName } + + this.backendUrl = this.backendUrl || DS_PREVIEW_URL } public downloadHref: SafeResourceUrl diff --git a/src/ui/nehubaContainer/statusCard/statusCard.component.spec.ts b/src/ui/nehubaContainer/statusCard/statusCard.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..576ee7a25a65cae045293e94cc2991be9874f18a --- /dev/null +++ b/src/ui/nehubaContainer/statusCard/statusCard.component.spec.ts @@ -0,0 +1,110 @@ +import { async, TestBed } from "@angular/core/testing" +import { CommonModule } from "@angular/common" +import { AngularMaterialModule } from "src/ui/sharedModules/angularMaterial.module" +import { StatusCardComponent } from "./statusCard.component" +import { Directive, Component } from "@angular/core" +import { of } from "rxjs" +import { ShareModule } from "src/share" +import { StateModule } from "src/state" +import { provideMockStore } from "@ngrx/store/testing" +import { By } from "@angular/platform-browser" +import { MatSlideToggle } from "@angular/material/slide-toggle" +import { NoopAnimationsModule } from "@angular/platform-browser/animations" +import { FormsModule, ReactiveFormsModule } from "@angular/forms" + +@Directive({ + selector: '[iav-auth-authState]', + exportAs: 'iavAuthAuthState' +}) + +class MockIavAuthState{ + user$ = of(null) +} + +@Component({ + selector: 'signin-modal', + template: '', +}) + +class MockSigninModal{} + +describe('> statusCard.component.ts', () => { + describe('> StatusCardComponent', () => { + beforeEach(async(() => { + TestBed.configureTestingModule({ + imports: [ + CommonModule, + AngularMaterialModule, + ShareModule, + StateModule, + FormsModule, + ReactiveFormsModule, + NoopAnimationsModule, + ], + declarations: [ + StatusCardComponent, + MockIavAuthState, + MockSigninModal, + ], + providers: [ + provideMockStore({ + initialState: { + viewerState: { + fetchedTemplates: [] + } + } + }) + ] + }).compileComponents() + })) + it('> can be instantiated', () => { + const fixture = TestBed.createComponent(StatusCardComponent) + expect(fixture.debugElement.nativeElement).toBeTruthy() + }) + + it('> toggle can be found', () => { + + const fixture = TestBed.createComponent(StatusCardComponent) + fixture.detectChanges() + const slider = fixture.debugElement.query( By.directive(MatSlideToggle) ) + expect(slider).toBeTruthy() + }) + + it('> toggling voxel/real toggle also toggles statusPanelRealSpace flag', () => { + + const fixture = TestBed.createComponent(StatusCardComponent) + fixture.detectChanges() + const prevFlag = fixture.componentInstance.statusPanelRealSpace + const sliderEl = fixture.debugElement.query( By.directive(MatSlideToggle) ) + const slider = sliderEl.injector.get(MatSlideToggle) + slider.toggle() + fixture.detectChanges() + expect(fixture.componentInstance.statusPanelRealSpace).toEqual(!prevFlag) + }) + + describe('> textNavigationTo', () => { + it('> takes into account of statusPanelRealSpace panel', () => { + const fixture = TestBed.createComponent(StatusCardComponent) + fixture.detectChanges() + const setNavigationStateSpy = jasmine.createSpy('setNavigationState') + fixture.componentInstance.nehubaViewer = { + setNavigationState: setNavigationStateSpy + } as any + + fixture.componentInstance.statusPanelRealSpace = true + fixture.componentInstance.textNavigateTo('1, 0, 0') + expect(setNavigationStateSpy).toHaveBeenCalledWith({ + position: [1e6, 0, 0], + positionReal: true + }) + + fixture.componentInstance.statusPanelRealSpace = false + fixture.componentInstance.textNavigateTo('1, 0, 0') + expect(setNavigationStateSpy).toHaveBeenCalledWith({ + position: [1, 0, 0], + positionReal: false + }) + }) + }) + }) +}) diff --git a/src/ui/nehubaContainer/statusCard/statusCard.component.ts b/src/ui/nehubaContainer/statusCard/statusCard.component.ts index 9f2ca8ae575841758c2639b418f98575658957cc..b89bc87da5e7106d83871576be951262e9d49464 100644 --- a/src/ui/nehubaContainer/statusCard/statusCard.component.ts +++ b/src/ui/nehubaContainer/statusCard/statusCard.component.ts @@ -9,6 +9,7 @@ import { MatBottomSheet } from "@angular/material/bottom-sheet"; import { MatDialog } from "@angular/material/dialog"; import { ARIA_LABELS } from 'common/constants' import { PureContantService } from "src/util"; +import { FormControl } from "@angular/forms"; @Component({ selector : 'ui-status-card', @@ -65,6 +66,12 @@ export class StatusCardComponent implements OnInit, OnChanges{ this.selectedTemplateRoot = template.find(t => t.name === this.selectedTemplateName) }) ) + + this.subscriptions.push( + this.statusPanelFormCtrl.valueChanges.subscribe(val => { + this.statusPanelRealSpace = val + }) + ) } ngOnChanges() { @@ -104,8 +111,11 @@ export class StatusCardComponent implements OnInit, OnChanges{ ) } - public statusPanelRealSpace$ = new BehaviorSubject(true) - public statusPanelRealSpace: boolean = true + statusPanelFormCtrl = new FormControl(true, []) + public statusPanelRealSpace = true + public statusPanelRealSpace$ = this.statusPanelFormCtrl.valueChanges.pipe( + startWith(true) + ) public textNavigateTo(string: string) { if (string.split(/[\s|,]+/).length >= 3 && string.split(/[\s|,]+/).slice(0, 3).every(entry => !isNaN(Number(entry.replace(/mm/, ''))))) { diff --git a/src/ui/nehubaContainer/statusCard/statusCard.template.html b/src/ui/nehubaContainer/statusCard/statusCard.template.html index 5bcfe73e32674811245c8d4a21e8b333ac32a0c5..17d4fe7cfd9f6c5c18cedd1f3471b320934b1e62 100644 --- a/src/ui/nehubaContainer/statusCard/statusCard.template.html +++ b/src/ui/nehubaContainer/statusCard/statusCard.template.html @@ -46,8 +46,7 @@ </span> <mat-slide-toggle - [checked]="statusPanelRealSpace$ | async" - (change)="statusPanelRealSpace$.next($event.checked)" + [formControl]="statusPanelFormCtrl" class="pl-2 pr-2"> </mat-slide-toggle> diff --git a/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html index 98a2c129a419c41cfed6ae251645590656eb1858..9224c4acce80974954adb66865066faf538a70eb 100644 --- a/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html +++ b/src/ui/viewerStateController/viewerStateCMini/viewerStateMini.template.html @@ -3,7 +3,7 @@ {{ templateSelected.name }} </div> <div *ngIf="parcellationSelected$ | async as parcellationSelected"> - {{ parcellationSelected.name }} + {{ parcellationSelected.displayName || parcellationSelected.name }} </div> <!-- selected parcellation regions -->