diff --git a/common/util.js b/common/util.js index f38bc575a128262c88718cb865f1cb8302a6cb12..11515f2778d94463ae55b5f788a46116446be085 100644 --- a/common/util.js +++ b/common/util.js @@ -42,6 +42,13 @@ throw new Error(`fn failed ${retries} times. Aborting.`) } + const flattenRegions = regions => regions.concat( + ...regions.map(region => region.children && region.children instanceof Array + ? flattenRegions(region.children) + : []) + ) + + exports.flattenRegions = flattenRegions exports.getRandomHex = (digit = 1024 * 1024 * 1024 * 1024) => Math.round(Math.random() * digit).toString(16) })(typeof exports === 'undefined' ? module.exports : exports) diff --git a/deploy/api-test/datasets/mouse.2015.spec.js b/deploy/api-test/datasets/mouse.2015.e2e-spec.js similarity index 100% rename from deploy/api-test/datasets/mouse.2015.spec.js rename to deploy/api-test/datasets/mouse.2015.e2e-spec.js diff --git a/deploy/api-test/datasets/mouse.2017.spec.js b/deploy/api-test/datasets/mouse.2017.e2e-spec.js similarity index 100% rename from deploy/api-test/datasets/mouse.2017.spec.js rename to deploy/api-test/datasets/mouse.2017.e2e-spec.js diff --git a/deploy/api-test/datasets/rat.v1_01.spec.js b/deploy/api-test/datasets/rat.v1_01.e2e-spec.js similarity index 100% rename from deploy/api-test/datasets/rat.v1_01.spec.js rename to deploy/api-test/datasets/rat.v1_01.e2e-spec.js diff --git a/deploy/api-test/datasets/rat.v2.spec.js b/deploy/api-test/datasets/rat.v2.e2e-spec.js similarity index 100% rename from deploy/api-test/datasets/rat.v2.spec.js rename to deploy/api-test/datasets/rat.v2.e2e-spec.js diff --git a/deploy/api-test/datasets/rat.v3.spec.js b/deploy/api-test/datasets/rat.v3.e2e-spec.js similarity index 100% rename from deploy/api-test/datasets/rat.v3.spec.js rename to deploy/api-test/datasets/rat.v3.e2e-spec.js diff --git a/deploy/datasets/importIBS.js b/deploy/datasets/importIBS.js new file mode 100644 index 0000000000000000000000000000000000000000..c7fbab11425cd6d5ae4a44367d4f681ab55a769c --- /dev/null +++ b/deploy/datasets/importIBS.js @@ -0,0 +1,72 @@ +const fs = require('fs') +const path = require('path') +const julichBrainNameToNexusId = require('./supplements/data/julich_brain_name_to_nexusid') + + +const IBC_DATA_DIR = path.join(__dirname, './supplements/data/ibc/') +const IBC_SCHEMA = '//ibc/ibc_schema' + + +const getIBCData = () => { + const ibcData = [] + + const files = fs.readdirSync(IBC_DATA_DIR) + files.forEach((file) => { + ibcData.push(getIbcDatasetByFileName(file)) + }) + + return ibcData +} + +const getIbcDatasetByFileName = (file) => { + const str = fs.readFileSync(path.join(IBC_DATA_DIR, file), "utf8"); + + const name = str.substring(2, str.indexOf('The Individual Brain Charting dataset is')) + const kgUrl = str.substring(str.indexOf('Knowledge Graph: https://'), str.indexOf('Following are the')) + const kgReference = [kgUrl.substring(kgUrl.indexOf('https'), kgUrl.length)] + const description = str.substring(str.indexOf('The Individual Brain Charting')).replace(/:-:/g, '---') + + const region = julichBrainNameToNexusId.find(r => r[0] && name.includes(r[0])) + const regionFullId = (region && region[1] && region[1].kg) ? `https://nexus.humanbrainproject.org/v0/data/${region[1].kg.kgSchema}/${region[1].kg.kgId}` : null + + return { + name, + kgReference, + description, + methods: ['functional magnetic resonance imaging (fMRI)'], + species: ['Homo sapiens'], + fullId: `https://ibc/ibc_schema/${file}`, + kgId: file, + kgSchema: '//ibc/ibc_schema', + referenceSpaces: [ + { + "name": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/referencespace/v1.0.0/dafcffc5-4826-4bf1-8ff6-46b8a31ff8e2" + }, + { + "name": "MNI Colin 27", + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/referencespace/v1.0.0/7f39f7be-445b-47c0-9791-e971c0b6d992" + } + ], + parcellationAtlas: [ + { + name: 'Jülich Cytoarchitechtonic Brain Atlas (human)', + fullId: + 'https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579', + }], + parcellationRegion: [ + { + species: [], + name: region[0], + alias: null, + fullId: regionFullId + } + ], + } +} + +module.exports = { + getIBCData, + getIbcDatasetByFileName, + IBC_SCHEMA: IBC_SCHEMA +} diff --git a/deploy/datasets/importIBS.spec.js b/deploy/datasets/importIBS.spec.js new file mode 100644 index 0000000000000000000000000000000000000000..01fbb48d8f1847252252a69194c6231f7fbeb4fd --- /dev/null +++ b/deploy/datasets/importIBS.spec.js @@ -0,0 +1,32 @@ +const ibc = require('./importIBS') +const { expect } = require('chai') +const expectedIBCData = require('./testData/ibcDataExpected') + +describe('datasets/data/importIBC.js', () => { + describe('Get Dataset object from markdown', () => { + it('dataset name valid', () => { + const ibcData = ibc.getIbcDatasetByFileName('left_AIPS_IP1.md') + expect(expectedIBCData.name).to.be.equal(ibcData.name) + }) + it('dataset description valid', () => { + const ibcData = ibc.getIbcDatasetByFileName('left_AIPS_IP1.md') + expect(expectedIBCData.description).to.be.equal(ibcData.description) + }) + it('dataset reference valid', () => { + const ibcData = ibc.getIbcDatasetByFileName('left_AIPS_IP1.md') + expect(expectedIBCData.kgReference[0]).to.be.equal(ibcData.kgReference[0]) + }) + it('dataset fullId valid', () => { + const ibcData = ibc.getIbcDatasetByFileName('left_AIPS_IP1.md') + expect(expectedIBCData.fullId).to.be.equal(ibcData.fullId) + }) + it('dataset region valid', () => { + const ibcData = ibc.getIbcDatasetByFileName('left_AIPS_IP1.md') + expect(expectedIBCData.parcellationRegion[0]).to.be.eql(ibcData.parcellationRegion[0]) + }) + it('dataset valid', () => { + const ibcData = ibc.getIbcDatasetByFileName('left_AIPS_IP1.md') + expect(expectedIBCData).to.be.eql(ibcData) + }) + }) +}) diff --git a/deploy/datasets/index.js b/deploy/datasets/index.js index 0cd89d7ffb3331807ef362204e5b88cee33333a9..c064b0cea583dec5d2c30ba56e10f23bc67d484a 100644 --- a/deploy/datasets/index.js +++ b/deploy/datasets/index.js @@ -2,12 +2,13 @@ const express = require('express') const path = require('path') const fs = require('fs') const datasetsRouter = express.Router() -const { init, getDatasets, getPreview, getDatasetFromId, getDatasetFileAsZip, getTos, hasPreview } = require('./query') +const { init, getDatasets, getPreview, getDatasetFromId, getExternalSchemaDatasets, getDatasetFileAsZip, getTos, hasPreview } = require('./query') const { retry } = require('./util') const url = require('url') const qs = require('querystring') const archiver = require('archiver') const { getHandleErrorFn } = require('../util/streamHandleError') +const { IBC_SCHEMA } = require('./importIBS') const bodyParser = require('body-parser') @@ -56,7 +57,7 @@ datasetsRouter.use('/spatialSearch', noCacheMiddleWare, require('./spatialRouter datasetsRouter.get('/templateNameParcellationName/:templateName/:parcellationName', noCacheMiddleWare, (req, res, next) => { const { templateName, parcellationName } = req.params - + const { user } = req getDatasets({ templateName, parcellationName, user }) .then(ds => { @@ -80,13 +81,13 @@ datasetsRouter.get('/templateName/:templateName', deprecatedNotice) datasetsRouter.get('/parcellationName/:parcellationName', deprecatedNotice) /** - * It appears that query param are not + * It appears that query param are not */ datasetsRouter.get('/preview/:datasetName', getVary(['referer']), cacheMaxAge24Hr, (req, res, next) => { const { datasetName } = req.params const ref = url.parse(req.headers.referer) const { templateSelected, parcellationSelected } = qs.parse(ref.query) - + getPreview({ datasetName, templateSelected }) .then(preview => { if (preview) { @@ -139,7 +140,7 @@ datasetsRouter.get('/previewFile', cacheMaxAge24Hr, (req, res) => { // for now, just serve non encoded image res.removeHeader('Content-Encoding') - + if (filePath) { fs.createReadStream(filePath).pipe(res).on('error', getHandleErrorFn(req, res)) } else { @@ -147,9 +148,14 @@ datasetsRouter.get('/previewFile', cacheMaxAge24Hr, (req, res) => { } }) +const kgExternalDatasetSchemas = [ + IBC_SCHEMA, + // Add more here... +] + const checkKgQuery = (req, res, next) => { const { kgSchema } = req.query - if (kgSchema !== 'minds/core/dataset/v1.0.0') return res.status(400).send('Only kgSchema is required and the only accepted value is minds/core/dataset/v1.0.0') + if (kgSchema !== 'minds/core/dataset/v1.0.0' && !kgExternalDatasetSchemas.includes(kgSchema)) return res.status(400).send('Only kgSchema is required and the only accepted value is minds/core/dataset/v1.0.0') else return next() } @@ -164,10 +170,16 @@ datasetsRouter.get('/hasPreview', cacheMaxAge24Hr, async (req, res) => { datasetsRouter.get('/kgInfo', checkKgQuery, cacheMaxAge24Hr, async (req, res) => { const { kgId } = req.query + const { kgSchema } = req.query const { user } = req try{ - const stream = await getDatasetFromId({ user, kgId, returnAsStream: true }) - stream.on('error', getHandleErrorFn(req, res)).pipe(res) + if (kgSchema === 'minds/core/dataset/v1.0.0') { + const stream = await getDatasetFromId({user, kgId, returnAsStream: true}) + stream.on('error', getHandleErrorFn(req, res)).pipe(res) + } else { + const data = getExternalSchemaDatasets(kgId, kgSchema) + res.status(200).send(data) + } }catch(e){ getHandleErrorFn(req, res)(e) } @@ -217,4 +229,4 @@ datasetsRouter.post('/bulkDownloadKgFiles', bodyParser.urlencoded({ extended: fa } }) -module.exports = datasetsRouter \ No newline at end of file +module.exports = datasetsRouter diff --git a/deploy/datasets/query.js b/deploy/datasets/query.js index 8eac6c586517685fac53cda7b930371509f888b1..11c800173765ae17512a13881d0e2d6c4d1b03bf 100644 --- a/deploy/datasets/query.js +++ b/deploy/datasets/query.js @@ -5,6 +5,7 @@ const path = require('path') const archiver = require('archiver') const { getPreviewFile, hasPreview } = require('./supplements/previewFile') const { constants, init: kgQueryUtilInit, getUserKGRequestParam, filterDatasets } = require('./util') +const ibc = require('./importIBS') let cachedData = null @@ -104,13 +105,19 @@ const getPublicDs = async () => { if (cachedData) return Promise.resolve(cachedData) if (getPublicDsPr) return getPublicDsPr throw `cached Data not yet resolved, neither is get public ds defined` -} +} const getDs = ({ user }) => user ? fetchDatasetFromKg({ user }).then(({ results }) => results) : getPublicDs() +const getExternalSchemaDatasets = (kgId, kgSchema) => { + if (kgSchema === ibc.IBC_SCHEMA) { + return ibc.getIbcDatasetByFileName(kgId) + } +} + /** * on init, populate the cached data */ @@ -119,8 +126,21 @@ const init = async () => { return await getPublicDs() } -const getDatasets = ({ templateName, parcellationName, user }) => getDs({ user }) - .then(json => filterDatasets(json, { templateName, parcellationName })) +const getDatasets = ({ templateName, parcellationName, user }) => { + // Get Local datasets + const localDatasets = [ + ...ibc.getIBCData(), + // ... Add more dataset sources here + ] + + // Get all datasets and merge local ones + return getDs({ user }) + .then(json => { + // console.log(json.map(j=> j.parcellationRegion)) + json = [...json, ...localDatasets] + return filterDatasets(json, { templateName, parcellationName }) + }) +} const getPreview = ({ datasetName, templateSelected }) => getPreviewFile({ datasetName, templateSelected }) @@ -195,7 +215,7 @@ const getDatasetFileAsZip = async ({ user, kgId } = {}) => { */ for (let file of files) { const { name, absolutePath } = file - zip.append(request(absolutePath), { + zip.append(request(absolutePath), { name: path.join(datasetName, name) }) } @@ -212,6 +232,7 @@ module.exports = { getDatasets, getPreview, hasPreview, - getTos + getTos, + getExternalSchemaDatasets } diff --git a/deploy/datasets/supplements/data/ibc/left_AIPS_IP1.md b/deploy/datasets/supplements/data/ibc/left_AIPS_IP1.md new file mode 100644 index 0000000000000000000000000000000000000000..37d1982c4e59aee58ba7ae742c953fc2a508ae3c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_AIPS_IP1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP1 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP1 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-04 | task-archi_emotional_dir-ap_face_trusty| +| sub-05 | ses-04 | dir-ap_face_trusty| +| sub-07 | ses-11 | sn_before-after_event| +| sub-07 | ses-04 | dir-ap_reading-checkerboard| +| sub-07 | ses-04 | task-archi_standard_dir-ap_reading-checkerboard| +| sub-06 | ses-01 | task-hcp_gambling_dir-ap_punishment-reward| +| sub-06 | ses-01 | dir-ap_punishment-reward| +| sub-07 | ses-12 | task-mtt_we_dir-ap_run-03_we_before-after_event| +| sub-07 | ses-12 | dir-ap_run-03_we_before-after_event| +| sub-07 | ses-12 | we_before-after_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_AIPS_IP2.md b/deploy/datasets/supplements/data/ibc/left_AIPS_IP2.md new file mode 100644 index 0000000000000000000000000000000000000000..45fe539ae866641384e7953313180124915511c3 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_AIPS_IP2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP2 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP2 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-01 | task-hcp_gambling_dir-ap_punishment-reward| +| sub-06 | ses-01 | dir-ap_punishment-reward| +| sub-07 | ses-04 | grasp-orientation| +| sub-07 | ses-04 | dir-ffx_grasp-orientation| +| sub-07 | ses-04 | task-archi_spatial_ffx_grasp-orientation| +| sub-15 | ses-01 | dir-ap_object_grasp| +| sub-15 | ses-01 | task-archi_spatial_dir-ap_object_grasp| +| sub-15 | ses-01 | task-archi_spatial_dir-ap_object_orientation| +| sub-15 | ses-01 | dir-ap_object_orientation| +| sub-13 | ses-04 | task-archi_standard_dir-pa_computation-sentences| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_AIPS_IP3.md b/deploy/datasets/supplements/data/ibc/left_AIPS_IP3.md new file mode 100644 index 0000000000000000000000000000000000000000..f1748f7f266937cd00f391115303e0e7023fd95f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_AIPS_IP3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP3 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP3 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-07 | dir-pa_rotation_hand| +| sub-01 | ses-07 | task-archi_spatial_dir-pa_rotation_hand| +| sub-01 | ses-07 | task-archi_standard_ffx_video_computation| +| sub-01 | ses-07 | dir-ffx_video_computation| +| sub-01 | ses-07 | video_computation| +| sub-12 | ses-16 | dir-ffx_painting_linear| +| sub-12 | ses-16 | task-preference_paintings_ffx_painting_linear| +| sub-12 | ses-16 | painting_linear| +| sub-01 | ses-07 | task-archi_standard_dir-ap_video_computation| +| sub-01 | ses-07 | dir-ap_video_computation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Amygdala_CM.md b/deploy/datasets/supplements/data/ibc/left_Amygdala_CM.md new file mode 100644 index 0000000000000000000000000000000000000000..27c74c13b90078b57eecd2429e706ea0d852e2a2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Amygdala_CM.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in CM (Amygdala) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in CM (Amygdala) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-04 | task-archi_social_dir-ap_triangle_mental| +| sub-05 | ses-04 | dir-ap_triangle_mental| +| sub-06 | ses-04 | task-archi_social_dir-ap_false_belief-mechanistic_video| +| sub-06 | ses-04 | dir-ap_false_belief-mechanistic_video| +| sub-15 | ses-14 | task-mtt_we_dir-pa_run-01_eastside-westside_event| +| sub-15 | ses-14 | dir-pa_run-01_eastside-westside_event| +| sub-07 | ses-03 | dir-pa_run-00_jabberwocky-pseudo| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-00_jabberwocky-pseudo| +| sub-08 | ses-04 | dir-ap_run-05_probe| +| sub-08 | ses-04 | task-rsvp_language_dir-ap_run-05_probe| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Amygdala_IF.md b/deploy/datasets/supplements/data/ibc/left_Amygdala_IF.md new file mode 100644 index 0000000000000000000000000000000000000000..250bd1c7afaef6416338b916afe4310093eff8c9 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Amygdala_IF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in IF (Amygdala) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in IF (Amygdala) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-14 | task-mtt_we_dir-pa_run-01_eastside-westside_event| +| sub-15 | ses-14 | dir-pa_run-01_eastside-westside_event| +| sub-06 | ses-11 | dir-pa_run-02_we_before-after_event| +| sub-06 | ses-11 | task-mtt_we_dir-pa_run-02_we_before-after_event| +| sub-06 | ses-04 | task-archi_standard_dir-ap_horizontal-vertical| +| sub-06 | ses-04 | dir-ap_horizontal-vertical| +| sub-07 | ses-03 | dir-pa_run-00_jabberwocky-pseudo| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-00_jabberwocky-pseudo| +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-02_we_all_time-space_cue| +| sub-08 | ses-11 | dir-pa_run-02_we_all_time-space_cue| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Amygdala_LB.md b/deploy/datasets/supplements/data/ibc/left_Amygdala_LB.md new file mode 100644 index 0000000000000000000000000000000000000000..380bca167b0fd68bfceb66d6bb9435baaef005f9 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Amygdala_LB.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in LB (Amygdala) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in LB (Amygdala) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-02_we_all_time-space_cue| +| sub-08 | ses-11 | dir-pa_run-02_we_all_time-space_cue| +| sub-06 | ses-04 | task-archi_standard_dir-ap_horizontal-vertical| +| sub-06 | ses-04 | dir-ap_horizontal-vertical| +| sub-09 | ses-05 | task-archi_standard_dir-pa_left-right_button_press| +| sub-09 | ses-05 | dir-pa_left-right_button_press| +| sub-12 | ses-16 | task-preference_paintings_dir-pa_painting_linear| +| sub-12 | ses-16 | dir-pa_painting_linear| +| sub-06 | ses-11 | dir-pa_run-02_we_before-after_event| +| sub-06 | ses-11 | task-mtt_we_dir-pa_run-02_we_before-after_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Amygdala_MF.md b/deploy/datasets/supplements/data/ibc/left_Amygdala_MF.md new file mode 100644 index 0000000000000000000000000000000000000000..0accbb06c8e5ff4e27f417861d1b9042cf103d03 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Amygdala_MF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in MF (Amygdala) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in MF (Amygdala) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-03 | dir-pa_run-00_jabberwocky-pseudo| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-00_jabberwocky-pseudo| +| sub-06 | ses-04 | task-archi_social_dir-ap_false_belief-mechanistic_video| +| sub-06 | ses-04 | dir-ap_false_belief-mechanistic_video| +| sub-05 | ses-04 | task-archi_social_dir-ap_triangle_mental| +| sub-05 | ses-04 | dir-ap_triangle_mental| +| sub-05 | ses-04 | task-archi_emotional_dir-ap_expression_intention-gender| +| sub-05 | ses-04 | dir-ap_expression_intention-gender| +| sub-05 | ses-00 | task-archi_standard_dir-pa_left-right_button_press| +| sub-05 | ses-00 | dir-pa_left-right_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Amygdala_SF.md b/deploy/datasets/supplements/data/ibc/left_Amygdala_SF.md new file mode 100644 index 0000000000000000000000000000000000000000..d2162a901aa2dbe4583091c54df0195e404397b3 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Amygdala_SF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in SF (Amygdala) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in SF (Amygdala) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-11 | dir-pa_run-01_northside-southside_event| +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_northside-southside_event| +| sub-07 | ses-11 | dir-ap_run-03_southside-northside_event| +| sub-07 | ses-11 | task-mtt_sn_dir-ap_run-03_southside-northside_event| +| sub-05 | ses-20 | task-self_dir-pa_run-01_encode_self-other| +| sub-05 | ses-20 | dir-pa_run-01_encode_self-other| +| sub-12 | ses-16 | task-preference_paintings_dir-pa_painting_linear| +| sub-12 | ses-16 | dir-pa_painting_linear| +| sub-12 | ses-03 | dir-ap_triangle_mental-random| +| sub-12 | ses-03 | task-archi_social_dir-ap_triangle_mental-random| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Amygdala_VTM.md b/deploy/datasets/supplements/data/ibc/left_Amygdala_VTM.md new file mode 100644 index 0000000000000000000000000000000000000000..36d05f9f748bbb49697d567546d7690c8e4b078e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Amygdala_VTM.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in VTM (Amygdala) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in VTM (Amygdala) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-11 | dir-pa_run-02_we_before-after_event| +| sub-06 | ses-11 | task-mtt_we_dir-pa_run-02_we_before-after_event| +| sub-08 | ses-04 | dir-ap_run-05_probe| +| sub-08 | ses-04 | task-rsvp_language_dir-ap_run-05_probe| +| sub-07 | ses-11 | task-mtt_sn_dir-ap_run-03_sn_all_space-time_cue| +| sub-07 | ses-11 | dir-ap_run-03_sn_all_space-time_cue| +| sub-05 | ses-04 | task-archi_emotional_dir-ap_expression_intention-gender| +| sub-05 | ses-04 | dir-ap_expression_intention-gender| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Auditory_Te10.md b/deploy/datasets/supplements/data/ibc/left_Auditory_Te10.md new file mode 100644 index 0000000000000000000000000000000000000000..de332fa2319f3269996b5412f8999fa5f08db206 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Auditory_Te10.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area TE 1.0 (HESCHL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area TE 1.0 (HESCHL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-01 | dir-ffx_mechanistic_audio| +| sub-02 | ses-01 | task-archi_social_ffx_mechanistic_audio| +| sub-02 | ses-01 | mechanistic_audio| +| sub-09 | ses-02 | 0back-2back| +| sub-02 | ses-01 | task-archi_social_dir-pa_mechanistic_audio| +| sub-09 | ses-02 | task-hcp_wm_ffx_0back-2back| +| sub-09 | ses-02 | dir-ffx_0back-2back| +| sub-02 | ses-01 | dir-pa_mechanistic_audio| +| sub-02 | ses-01 | dir-ap_false_belief_audio| +| sub-02 | ses-01 | task-archi_social_dir-ap_false_belief_audio| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Auditory_Te11.md b/deploy/datasets/supplements/data/ibc/left_Auditory_Te11.md new file mode 100644 index 0000000000000000000000000000000000000000..dafe09f4ebb6a4f3b491f45c748720cd3c391241 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Auditory_Te11.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area TE 1.1 (HESCHL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area TE 1.1 (HESCHL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-17 | task-pain_movie_dir-ap_movie_pain| +| sub-09 | ses-17 | dir-ap_movie_pain| +| sub-02 | ses-01 | listening-reading| +| sub-02 | ses-00 | task-archi_social_dir-ap_non_speech_sound| +| sub-02 | ses-00 | dir-ap_false_belief_audio| +| sub-02 | ses-01 | task-archi_standard_ffx_listening-reading| +| sub-02 | ses-01 | non_speech_sound| +| sub-02 | ses-01 | dir-ffx_non_speech_sound| +| sub-02 | ses-00 | dir-ap_non_speech_sound| +| sub-02 | ses-01 | task-archi_social_ffx_non_speech_sound| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Auditory_Te12.md b/deploy/datasets/supplements/data/ibc/left_Auditory_Te12.md new file mode 100644 index 0000000000000000000000000000000000000000..da96b3812855f5266a281f900ecd4a564b415474 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Auditory_Te12.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area TE 1.2 (HESCHL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area TE 1.2 (HESCHL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-00 | dir-pa_audio_right_button_press| +| sub-08 | ses-00 | task-archi_standard_dir-pa_audio_right_button_press| +| sub-02 | ses-00 | dir-pa_speech-non_speech| +| sub-02 | ses-00 | task-archi_social_dir-pa_speech-non_speech| +| sub-02 | ses-01 | speech-non_speech| +| sub-02 | ses-01 | task-archi_social_ffx_speech-non_speech| +| sub-02 | ses-01 | dir-ffx_speech-non_speech| +| sub-02 | ses-01 | dir-pa_speech-non_speech| +| sub-02 | ses-01 | task-archi_social_dir-pa_speech-non_speech| +| sub-05 | ses-00 | dir-ap_audio_left_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Bforebrain_123.md b/deploy/datasets/supplements/data/ibc/left_Bforebrain_123.md new file mode 100644 index 0000000000000000000000000000000000000000..c97af1bf9c8e315be4b507a2643325689f983851 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Bforebrain_123.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Ch 123 (Basal Forebrain) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Ch 123 (Basal Forebrain) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_time-space_event| +| sub-06 | ses-12 | dir-pa_run-01_sn_time-space_event| +| sub-09 | ses-04 | dir-pa_run-00_word-pseudo| +| sub-09 | ses-04 | task-rsvp_language_dir-pa_run-00_word-pseudo| +| sub-06 | ses-12 | dir-pa_run-02_sn_after-before_event| +| sub-06 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_after-before_event| +| sub-04 | ses-16 | task-theory_of_mind_dir-ap_belief| +| sub-04 | ses-16 | dir-ap_belief| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Bforebrain_4.md b/deploy/datasets/supplements/data/ibc/left_Bforebrain_4.md new file mode 100644 index 0000000000000000000000000000000000000000..5da1ca06692d057c753e3fc2588bf4e8dd2da5cc --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Bforebrain_4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Ch 4 (Basal Forebrain) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Ch 4 (Basal Forebrain) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-04 | task-archi_social_dir-ap_triangle_mental| +| sub-05 | ses-04 | dir-ap_triangle_mental| +| sub-06 | ses-04 | task-archi_social_dir-ap_false_belief-mechanistic_video| +| sub-06 | ses-04 | dir-ap_false_belief-mechanistic_video| +| sub-07 | ses-03 | dir-pa_run-00_jabberwocky-pseudo| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-00_jabberwocky-pseudo| +| sub-15 | ses-14 | task-mtt_we_dir-pa_run-01_eastside-westside_event| +| sub-15 | ses-14 | dir-pa_run-01_eastside-westside_event| +| sub-11 | ses-05 | task-archi_emotional_dir-ap_face_gender-control| +| sub-11 | ses-05 | dir-ap_face_gender-control| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Broca_44.md b/deploy/datasets/supplements/data/ibc/left_Broca_44.md new file mode 100644 index 0000000000000000000000000000000000000000..fa3228e5f29275a1227a50ca483a0685d5387c22 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Broca_44.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 44 (IFG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 44 (IFG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-06 | dir-pa_run-02_sentence-jabberwocky| +| sub-02 | ses-06 | task-rsvp_language_dir-pa_run-02_sentence-jabberwocky| +| sub-13 | ses-04 | dir-ffx_reading-checkerboard| +| sub-13 | ses-04 | task-archi_standard_ffx_reading-checkerboard| +| sub-13 | ses-04 | reading-checkerboard| +| sub-15 | ses-01 | task-archi_emotional_dir-pa_trusty_and_intention-gender| +| sub-15 | ses-01 | dir-pa_trusty_and_intention-gender| +| sub-13 | ses-00 | task-archi_standard_dir-pa_video_computation| +| sub-13 | ses-00 | dir-pa_video_computation| +| sub-01 | ses-07 | task-archi_emotional_dir-pa_expression_intention-gender| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Broca_45.md b/deploy/datasets/supplements/data/ibc/left_Broca_45.md new file mode 100644 index 0000000000000000000000000000000000000000..1344e47bc1cdc433dc471cc650359e1d6ad9ad34 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Broca_45.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 45 (IFG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 45 (IFG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-04 | dir-pa_run-01_complex-consonant_string| +| sub-09 | ses-04 | task-rsvp_language_dir-pa_run-01_complex-consonant_string| +| sub-11 | ses-00 | task-archi_standard_ffx_cognitive-motor| +| sub-11 | ses-00 | cognitive-motor| +| sub-11 | ses-00 | task-archi_standard_dir-pa_cognitive-motor| +| sub-11 | ses-00 | dir-pa_cognitive-motor| +| sub-11 | ses-00 | dir-ffx_cognitive-motor| +| sub-05 | ses-03 | dir-pa_run-02_word-pseudo| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-02_word-pseudo| +| sub-14 | ses-01 | dir-ap_expression_intention-gender| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ndentd.md b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ndentd.md new file mode 100644 index 0000000000000000000000000000000000000000..45e5687183509dc0e92693ba6c821f92c802563b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ndentd.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Dorsal Dentate Nucleus (Cerebellum) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Dorsal Dentate Nucleus (Cerebellum) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-15 | dir-ap_painting_quadratic| +| sub-06 | ses-15 | task-preference_paintings_dir-ap_painting_quadratic| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ndentv.md b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ndentv.md new file mode 100644 index 0000000000000000000000000000000000000000..08d652e8e303403decb45212e524b467e12e2f6d --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ndentv.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Ventral Dentate Nucleus (Cerebellum) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Ventral Dentate Nucleus (Cerebellum) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_word_list| +| sub-06 | ses-00 | task-archi_standard_dir-ap_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cerebellum_Nfast.md b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Nfast.md new file mode 100644 index 0000000000000000000000000000000000000000..10f8a840d5c67facb343060ecfcf26ab22cd80be --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Nfast.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Fastigial Nucleus (Cerebellum) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Fastigial Nucleus (Cerebellum) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_word_list| +| sub-06 | ses-00 | task-archi_standard_dir-ap_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ninterp.md b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ninterp.md new file mode 100644 index 0000000000000000000000000000000000000000..9017572fb4bdbd50792ef27ee68d95579e31e55a --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cerebellum_Ninterp.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Interposed Nucleus (Cerebellum) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Interposed Nucleus (Cerebellum) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-15 | dir-ap_painting_quadratic| +| sub-06 | ses-15 | task-preference_paintings_dir-ap_painting_quadratic| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_25.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_25.md new file mode 100644 index 0000000000000000000000000000000000000000..a93578fe25e4cd25c806ff33f8c149386084f646 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_25.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 25 (sACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 25 (sACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-21 | task-self_dir-pa_run-01_recognition_self-other| +| sub-13 | ses-21 | dir-pa_run-01_recognition_self-other| +| sub-14 | ses-03 | 2back-0back| +| sub-14 | ses-03 | dir-ffx_2back-0back| +| sub-14 | ses-03 | task-hcp_wm_ffx_2back-0back| +| sub-07 | ses-11 | dir-pa_run-01_sn_all_space-time_cue| +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_all_space-time_cue| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-00_complex| +| sub-05 | ses-03 | dir-pa_run-00_complex| +| sub-01 | ses-20 | dir-pa_run-02_vstm_quadratic| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_33.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_33.md new file mode 100644 index 0000000000000000000000000000000000000000..31987dab8c65297b69e8817e2e6073d1be2e99b6 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_33.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 33 (ACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 33 (ACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-16 | dir-pa_movie_pain| +| sub-07 | ses-16 | task-pain_movie_dir-pa_movie_pain| +| sub-05 | ses-11 | dir-ap_run-03_we_after-before_event| +| sub-05 | ses-11 | task-mtt_we_dir-ap_run-03_we_after-before_event| +| sub-07 | ses-03 | dir-pa_run-00_pseudo-consonant_string| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-00_pseudo-consonant_string| +| sub-09 | ses-05 | dir-ap_triangle_mental| +| sub-09 | ses-05 | task-archi_social_dir-ap_triangle_mental| +| sub-12 | ses-03 | dir-ap_face_gender-control| +| sub-12 | ses-03 | task-archi_emotional_dir-ap_face_gender-control| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_p24ab.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_p24ab.md new file mode 100644 index 0000000000000000000000000000000000000000..e1b2affb5822c6073cd7b87a3eeac3eb1798175a --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_p24ab.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area p24ab (pACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area p24ab (pACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-05 | dir-ap_triangle_mental| +| sub-09 | ses-05 | task-archi_social_dir-ap_triangle_mental| +| sub-06 | ses-21 | task-self_dir-ap_run-04_encode_self-other| +| sub-06 | ses-21 | dir-ap_run-04_encode_self-other| +| sub-07 | ses-03 | dir-pa_run-00_pseudo-consonant_string| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-00_pseudo-consonant_string| +| sub-07 | ses-16 | dir-pa_movie_pain| +| sub-07 | ses-16 | task-pain_movie_dir-pa_movie_pain| +| sub-15 | ses-02 | punishment-reward| +| sub-15 | ses-02 | task-hcp_gambling_ffx_punishment-reward| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_p24c.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_p24c.md new file mode 100644 index 0000000000000000000000000000000000000000..95407300a6d4237727fdf883b2f1083e42d7e374 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_p24c.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area p24c (pACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area p24c (pACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-02_we_time-space_event| +| sub-08 | ses-11 | dir-pa_run-02_we_time-space_event| +| sub-02 | ses-00 | task-archi_social_ffx_false_belief-mechanistic_video| +| sub-02 | ses-00 | false_belief-mechanistic_video| +| sub-02 | ses-00 | dir-ffx_false_belief-mechanistic_video| +| sub-06 | ses-21 | task-self_dir-ap_run-04_encode_self-other| +| sub-06 | ses-21 | dir-ap_run-04_encode_self-other| +| sub-06 | ses-16 | dir-pa_movie_mental| +| sub-06 | ses-16 | task-pain_movie_dir-pa_movie_mental| +| sub-07 | ses-03 | dir-pa_run-00_pseudo-consonant_string| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_p32.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_p32.md new file mode 100644 index 0000000000000000000000000000000000000000..499e3acacce680854aa86e2a20b47533a89efc57 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_p32.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area p32 (pACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area p32 (pACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-21 | dir-pa_run-02_encode_self-other| +| sub-13 | ses-21 | task-self_dir-pa_run-02_encode_self-other| +| sub-11 | ses-12 | dir-ap_run-03_sn_all_space-time_cue| +| sub-11 | ses-12 | task-mtt_sn_dir-ap_run-03_sn_all_space-time_cue| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-01_pseudo-consonant_string| +| sub-07 | ses-03 | dir-pa_run-01_pseudo-consonant_string| +| sub-05 | ses-20 | encode_self-other| +| sub-07 | ses-02 | dir-ap_0back-2back| +| sub-07 | ses-02 | task-hcp_wm_dir-ap_0back-2back| +| sub-09 | ses-22 | task-self_dir-pa_run-02_recognition_self-other| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_s24.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_s24.md new file mode 100644 index 0000000000000000000000000000000000000000..db647528c2028dfc098d7dd529a5673d2a273fa4 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_s24.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area s24 (sACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area s24 (sACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-00_complex| +| sub-05 | ses-03 | dir-pa_run-00_complex| +| sub-12 | ses-01 | dir-ap_math-story| +| sub-12 | ses-01 | task-hcp_language_dir-ap_math-story| +| sub-01 | ses-20 | dir-ap_enumeration_quadratic| +| sub-01 | ses-20 | task-enumeration_dir-ap_enumeration_quadratic| +| sub-07 | ses-11 | dir-pa_run-01_sn_all_space-time_cue| +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_all_space-time_cue| +| sub-01 | ses-20 | dir-pa_run-02_vstm_quadratic| +| sub-01 | ses-20 | task-vstm_dir-pa_run-02_vstm_quadratic| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Cingulum_s32.md b/deploy/datasets/supplements/data/ibc/left_Cingulum_s32.md new file mode 100644 index 0000000000000000000000000000000000000000..ed6a37ab2c35924bcc481c5214e5dd722adfbf23 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Cingulum_s32.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area s32 (sACC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area s32 (sACC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-04 | task-archi_emotional_dir-ap_face_trusty-control| +| sub-07 | ses-04 | dir-ap_face_trusty-control| +| sub-09 | ses-05 | dir-ap_face_trusty-gender| +| sub-09 | ses-05 | task-archi_emotional_dir-ap_face_trusty-gender| +| sub-12 | ses-00 | task-archi_standard_dir-ap_left-right_button_press| +| sub-12 | ses-00 | dir-ap_left-right_button_press| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-02_jabberwocky-pseudo| +| sub-07 | ses-03 | dir-pa_run-02_jabberwocky-pseudo| +| sub-04 | ses-21 | task-self_dir-pa_run-01_recognition_self-other| +| sub-04 | ses-21 | dir-pa_run-01_recognition_self-other| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_FrontalPole_Fp1.md b/deploy/datasets/supplements/data/ibc/left_FrontalPole_Fp1.md new file mode 100644 index 0000000000000000000000000000000000000000..073e0739bec6a6fc6b1d01871a2adffd21edf9d1 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_FrontalPole_Fp1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fp1 (FPole) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fp1 (FPole) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-03 | task-hcp_relational_dir-pa_relational-match| +| sub-14 | ses-03 | dir-pa_relational-match| +| sub-05 | ses-01 | dir-ap_story| +| sub-05 | ses-01 | task-hcp_language_dir-ap_story| +| sub-12 | ses-11 | task-mtt_we_dir-pa_run-01_we_time-space_event| +| sub-12 | ses-11 | dir-pa_run-01_we_time-space_event| +| sub-15 | ses-04 | dir-ap_run-05_sentence-word| +| sub-15 | ses-04 | task-rsvp_language_dir-ap_run-05_sentence-word| +| sub-13 | ses-11 | task-mtt_we_dir-pa_run-02_westside-eastside_event| +| sub-13 | ses-11 | dir-pa_run-02_westside-eastside_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_FrontalPole_Fp2.md b/deploy/datasets/supplements/data/ibc/left_FrontalPole_Fp2.md new file mode 100644 index 0000000000000000000000000000000000000000..7ffb4dfee33535f218b4db2628cd0f816022dd3b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_FrontalPole_Fp2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fp2 (FPole) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fp2 (FPole) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-03 | task-archi_emotional_dir-pa_face_trusty-gender| +| sub-12 | ses-03 | dir-pa_face_trusty-gender| +| sub-06 | ses-03 | dir-pa_run-01_complex| +| sub-06 | ses-03 | task-rsvp_language_dir-pa_run-01_complex| +| sub-06 | ses-03 | task-rsvp_language_dir-pa_run-01_probe| +| sub-06 | ses-03 | dir-pa_run-01_probe| +| sub-07 | ses-03 | dir-pa_run-01_complex| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-01_complex| +| sub-05 | ses-03 | dir-pa_run-01_sentence-word| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-01_sentence-word| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Hippocampus_DG.md b/deploy/datasets/supplements/data/ibc/left_Hippocampus_DG.md new file mode 100644 index 0000000000000000000000000000000000000000..6270c9d996537e79f672fc05a1cdb523697285db --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Hippocampus_DG.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in DG (Hippocampus) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in DG (Hippocampus) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-00 | task-archi_spatial_dir-pa_hand-side| +| sub-05 | ses-00 | dir-pa_hand-side| +| sub-07 | ses-23 | dir-pa_run-02_encode_self-other| +| sub-07 | ses-23 | task-self_dir-pa_run-02_encode_self-other| +| sub-07 | ses-12 | dir-pa_run-02_we_space-time_event| +| sub-07 | ses-12 | task-mtt_we_dir-pa_run-02_we_space-time_event| +| sub-15 | ses-20 | task-self_dir-pa_run-01_recognition_self-other| +| sub-15 | ses-20 | dir-pa_run-01_recognition_self-other| +| sub-11 | ses-11 | dir-ap_run-03_we_eastside_event| +| sub-11 | ses-11 | task-mtt_we_dir-ap_run-03_we_eastside_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Hippocampus_HATA.md b/deploy/datasets/supplements/data/ibc/left_Hippocampus_HATA.md new file mode 100644 index 0000000000000000000000000000000000000000..e1735bb7e412969ecce9ec11c44c34f7a7557214 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Hippocampus_HATA.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in HATA (Hippocampus) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in HATA (Hippocampus) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-20 | task-self_dir-pa_run-01_encode_self-other| +| sub-05 | ses-20 | dir-pa_run-01_encode_self-other| +| sub-05 | ses-03 | task-rsvp_language_dir-ap_run-05_jabberwocky-pseudo| +| sub-05 | ses-03 | dir-ap_run-05_jabberwocky-pseudo| +| sub-07 | ses-11 | dir-ap_run-03_southside-northside_event| +| sub-07 | ses-11 | task-mtt_sn_dir-ap_run-03_southside-northside_event| +| sub-05 | ses-00 | task-archi_standard_dir-pa_left-right_button_press| +| sub-05 | ses-00 | dir-pa_left-right_button_press| +| sub-06 | ses-12 | dir-ap_run-03_northside-southside_event| +| sub-06 | ses-12 | task-mtt_sn_dir-ap_run-03_northside-southside_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Hippocampus_Subc.md b/deploy/datasets/supplements/data/ibc/left_Hippocampus_Subc.md new file mode 100644 index 0000000000000000000000000000000000000000..507443a12add523487d020e1fe511b3b62f96b4e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Hippocampus_Subc.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Subiculum (Hippocampus) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Subiculum (Hippocampus) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_time-space_event| +| sub-13 | ses-12 | dir-pa_run-02_sn_time-space_event| +| sub-15 | ses-15 | sn_all_time-space_cue| +| sub-13 | ses-17 | task-enumeration_dir-ap_enumeration_quadratic| +| sub-13 | ses-17 | dir-ap_enumeration_quadratic| +| sub-04 | ses-03 | task-rsvp_language_dir-pa_run-02_jabberwocky-pseudo| +| sub-04 | ses-03 | dir-pa_run-02_jabberwocky-pseudo| +| sub-09 | ses-16 | dir-pa_face_linear| +| sub-09 | ses-16 | task-preference_faces_dir-pa_face_linear| +| sub-06 | ses-12 | dir-ap_run-03_northside-southside_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PF.md b/deploy/datasets/supplements/data/ibc/left_IPL_PF.md new file mode 100644 index 0000000000000000000000000000000000000000..ede3391788cec63a83ab3218c3021f8590991a0e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PF (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PF (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-07 | task-archi_social_ffx_mechanistic_audio| +| sub-01 | ses-07 | dir-ffx_mechanistic_audio| +| sub-01 | ses-07 | mechanistic_audio| +| sub-01 | ses-07 | dir-pa_false_belief_audio| +| sub-01 | ses-07 | task-archi_social_dir-pa_false_belief_audio| +| sub-01 | ses-07 | false_belief_audio| +| sub-01 | ses-07 | dir-ffx_false_belief_audio| +| sub-01 | ses-07 | task-archi_social_dir-ap_false_belief_audio| +| sub-01 | ses-07 | dir-ap_false_belief_audio| +| sub-01 | ses-07 | task-archi_social_ffx_false_belief_audio| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PFcm.md b/deploy/datasets/supplements/data/ibc/left_IPL_PFcm.md new file mode 100644 index 0000000000000000000000000000000000000000..fc5515abfe1d3f29df92147045d3a7c305201165 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PFcm.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFcm (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFcm (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-03 | task-rsvp_language_dir-pa_run-01_complex| +| sub-13 | ses-03 | dir-pa_run-01_complex| +| sub-05 | ses-20 | recognition_self_hit| +| sub-05 | ses-04 | dir-ffx_computation| +| sub-05 | ses-04 | computation| +| sub-05 | ses-04 | task-archi_standard_ffx_computation| +| sub-14 | ses-02 | task-hcp_motor_dir-ap_left_hand| +| sub-14 | ses-02 | dir-ap_left_hand| +| sub-14 | ses-02 | dir-ap_cue| +| sub-14 | ses-02 | task-hcp_motor_dir-ap_cue| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PFm.md b/deploy/datasets/supplements/data/ibc/left_IPL_PFm.md new file mode 100644 index 0000000000000000000000000000000000000000..8b74ded8ecb071d7a8d817cfd504ce508ef2928a --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PFm.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFm (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFm (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-03 | dir-pa_run-00_sentence-pseudo| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-00_sentence-pseudo| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_all_event_response| +| sub-11 | ses-12 | dir-pa_run-01_sn_all_event_response| +| sub-12 | ses-11 | dir-pa_run-02_westside-eastside_event| +| sub-12 | ses-11 | task-mtt_we_dir-pa_run-02_westside-eastside_event| +| sub-04 | ses-03 | dir-ap_run-03_complex-simple| +| sub-04 | ses-03 | task-rsvp_language_dir-ap_run-03_complex-simple| +| sub-01 | ses-18 | dir-ffx_movie_mental-pain| +| sub-01 | ses-18 | movie_mental-pain| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PFop.md b/deploy/datasets/supplements/data/ibc/left_IPL_PFop.md new file mode 100644 index 0000000000000000000000000000000000000000..95f9a9ae0b940f982afa20a5c052a0fe84e6d21d --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PFop.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFop (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFop (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-01 | dir-pa_motor-cognitive| +| sub-15 | ses-01 | task-archi_standard_dir-pa_motor-cognitive| +| sub-14 | ses-17 | dir-pa_run-02_vstm_constant| +| sub-14 | ses-17 | task-vstm_dir-pa_run-02_vstm_constant| +| sub-13 | ses-03 | dir-ap_run-05_jabberwocky-consonant_string| +| sub-13 | ses-03 | task-rsvp_language_dir-ap_run-05_jabberwocky-consonant_string| +| sub-14 | ses-01 | task-archi_standard_dir-pa_motor-cognitive| +| sub-14 | ses-01 | dir-pa_motor-cognitive| +| sub-05 | ses-04 | dir-ffx_motor-cognitive| +| sub-05 | ses-04 | motor-cognitive| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PFt.md b/deploy/datasets/supplements/data/ibc/left_IPL_PFt.md new file mode 100644 index 0000000000000000000000000000000000000000..eb3040dd56935ab27c00ee0c85712694da2debc9 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PFt.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFt (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFt (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-01 | dir-ffx_motor-cognitive| +| sub-15 | ses-01 | task-archi_standard_ffx_motor-cognitive| +| sub-15 | ses-01 | motor-cognitive| +| sub-09 | ses-22 | task-self_dir-ap_run-03_recognition_hit-correct_rejection| +| sub-09 | ses-22 | dir-ap_run-03_recognition_hit-correct_rejection| +| sub-14 | ses-01 | dir-pa_expression_gender-control| +| sub-14 | ses-01 | task-archi_emotional_dir-pa_expression_gender-control| +| sub-15 | ses-10 | task-vstm_dir-ap_run-01_vstm_constant| +| sub-15 | ses-10 | dir-ap_run-01_vstm_constant| +| sub-04 | ses-04 | dir-pa_grasp-orientation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PGa.md b/deploy/datasets/supplements/data/ibc/left_IPL_PGa.md new file mode 100644 index 0000000000000000000000000000000000000000..13398a3df75cda3e6d457a35f39d98449c054b85 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PGa.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PGa (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PGa (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-00 | dir-pa_false_belief-mechanistic| +| sub-07 | ses-00 | task-archi_social_dir-pa_false_belief-mechanistic| +| sub-01 | ses-07 | task-archi_emotional_dir-pa_face_trusty-gender| +| sub-01 | ses-07 | dir-pa_face_trusty-gender| +| sub-11 | ses-11 | task-mtt_we_dir-ap_run-03_we_all_event_response| +| sub-11 | ses-11 | dir-ap_run-03_we_all_event_response| +| sub-05 | ses-16 | task-pain_movie_dir-pa_movie_mental| +| sub-05 | ses-16 | task-pain_movie_ffx_movie_mental| +| sub-05 | ses-16 | dir-pa_movie_mental| +| sub-05 | ses-16 | dir-ffx_movie_mental| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_IPL_PGp.md b/deploy/datasets/supplements/data/ibc/left_IPL_PGp.md new file mode 100644 index 0000000000000000000000000000000000000000..5119fc4d94fc6f8da69d42692c37294ffd1dc316 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_IPL_PGp.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PGp (IPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PGp (IPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-06 | dir-ap_run-03_sentence-word| +| sub-02 | ses-06 | task-rsvp_language_dir-ap_run-03_sentence-word| +| sub-14 | ses-16 | task-emotional_pain_dir-pa_emotional-physical_pain| +| sub-14 | ses-16 | dir-pa_emotional-physical_pain| +| sub-09 | ses-05 | dir-ap_reading-checkerboard| +| sub-09 | ses-05 | task-archi_standard_dir-ap_reading-checkerboard| +| sub-14 | ses-16 | emotional-physical_pain| +| sub-14 | ses-16 | task-emotional_pain_ffx_emotional-physical_pain| +| sub-14 | ses-16 | dir-ffx_emotional-physical_pain| +| sub-08 | ses-01 | task-archi_standard_dir-pa_reading-checkerboard| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Insula_Id1.md b/deploy/datasets/supplements/data/ibc/left_Insula_Id1.md new file mode 100644 index 0000000000000000000000000000000000000000..16516c0c70a588d67b64812bb820aa1025fa4163 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Insula_Id1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Id1 (Insula) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Id1 (Insula) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-07 | task-archi_social_dir-pa_speech_sound| +| sub-01 | ses-07 | dir-pa_speech_sound| +| sub-06 | ses-03 | task-rsvp_language_dir-ap_run-03_word-pseudo| +| sub-06 | ses-03 | dir-ap_run-03_word-pseudo| +| sub-09 | ses-13 | dir-ap_run-03_sn_all_time-space_cue| +| sub-09 | ses-13 | task-mtt_sn_dir-ap_run-03_sn_all_time-space_cue| +| sub-14 | ses-11 | task-mtt_we_dir-pa_run-01_we_after-before_event| +| sub-14 | ses-11 | dir-pa_run-01_we_after-before_event| +| sub-05 | ses-04 | task-archi_emotional_dir-ap_face_trusty-gender| +| sub-05 | ses-04 | dir-ap_face_trusty-gender| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Insula_Id7.md b/deploy/datasets/supplements/data/ibc/left_Insula_Id7.md new file mode 100644 index 0000000000000000000000000000000000000000..7f967dfb0c81816ba254583996dbcf4967417031 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Insula_Id7.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Id7 (Insula) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Id7 (Insula) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-13 | dir-ffx_painting_linear| +| sub-14 | ses-13 | task-preference_paintings_ffx_painting_linear| +| sub-14 | ses-13 | painting_linear| +| sub-09 | ses-18 | task-enumeration_ffx_enumeration_linear| +| sub-09 | ses-18 | enumeration_linear| +| sub-09 | ses-18 | dir-ffx_enumeration_linear| +| sub-04 | ses-03 | dir-ap_run-05_word-pseudo| +| sub-04 | ses-03 | task-rsvp_language_dir-ap_run-05_word-pseudo| +| sub-09 | ses-05 | dir-ap_mechanistic_audio| +| sub-09 | ses-05 | task-archi_social_dir-ap_mechanistic_audio| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Insula_Ig1.md b/deploy/datasets/supplements/data/ibc/left_Insula_Ig1.md new file mode 100644 index 0000000000000000000000000000000000000000..b31b7be89c645f9007165647bf82cefeac575e78 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Insula_Ig1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Ig1 (Insula) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Ig1 (Insula) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_after-before_event| +| sub-07 | ses-11 | dir-pa_run-01_sn_after-before_event| +| sub-02 | ses-04 | task-hcp_gambling_dir-ap_punishment-reward| +| sub-02 | ses-04 | dir-ap_punishment-reward| +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_all_time-space_cue| +| sub-07 | ses-11 | dir-pa_run-01_sn_all_time-space_cue| +| sub-01 | ses-07 | task-archi_social_dir-ap_triangle_random| +| sub-01 | ses-07 | dir-ap_triangle_random| +| sub-11 | ses-12 | dir-pa_run-02_sn_all_event_response| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_all_event_response| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Insula_Ig2.md b/deploy/datasets/supplements/data/ibc/left_Insula_Ig2.md new file mode 100644 index 0000000000000000000000000000000000000000..40e2e14833b77ad63173208664e2aead7a3a23c5 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Insula_Ig2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Ig2 (Insula) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Ig2 (Insula) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-04 | dir-pa_run-02_word-consonant_string| +| sub-09 | ses-04 | task-rsvp_language_dir-pa_run-02_word-consonant_string| +| sub-11 | ses-12 | dir-pa_run-02_sn_all_event_response| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_all_event_response| +| sub-15 | ses-15 | task-mtt_sn_dir-ap_run-03_sn_all_space-time_cue| +| sub-15 | ses-15 | dir-ap_run-03_sn_all_space-time_cue| +| sub-12 | ses-12 | dir-pa_run-01_southside-northside_event| +| sub-12 | ses-12 | task-mtt_sn_dir-pa_run-01_southside-northside_event| +| sub-01 | ses-05 | task-rsvp_language_dir-pa_run-01_jabberwocky-pseudo| +| sub-01 | ses-05 | dir-pa_run-01_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Motor_4a.md b/deploy/datasets/supplements/data/ibc/left_Motor_4a.md new file mode 100644 index 0000000000000000000000000000000000000000..3bd5d7b5260b0e5968cc23a756bcdee00cce30d7 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Motor_4a.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 4a (PreCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 4a (PreCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-05 | task-archi_standard_dir-pa_right-left_button_press| +| sub-09 | ses-05 | dir-pa_right-left_button_press| +| sub-09 | ses-05 | task-archi_standard_ffx_right-left_button_press| +| sub-09 | ses-05 | dir-ffx_right-left_button_press| +| sub-09 | ses-05 | right-left_button_press| +| sub-12 | ses-00 | right-left_button_press| +| sub-12 | ses-00 | task-archi_standard_ffx_right-left_button_press| +| sub-12 | ses-00 | dir-ffx_right-left_button_press| +| sub-11 | ses-00 | dir-pa_object_grasp| +| sub-11 | ses-00 | task-archi_spatial_dir-pa_object_grasp| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Motor_4p.md b/deploy/datasets/supplements/data/ibc/left_Motor_4p.md new file mode 100644 index 0000000000000000000000000000000000000000..dfaac8beb39aa9c2dc89a98cd76862c90e3f8e2d --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Motor_4p.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 4p (PreCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 4p (PreCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-00 | task-archi_standard_dir-pa_right-left_button_press| +| sub-14 | ses-00 | task-archi_standard_dir-pa_video_right_button_press| +| sub-14 | ses-00 | dir-pa_video_right_button_press| +| sub-11 | ses-05 | dir-ap_right-left_button_press| +| sub-11 | ses-05 | task-archi_standard_dir-ap_right-left_button_press| +| sub-14 | ses-02 | task-hcp_motor_dir-ap_right_hand-avg| +| sub-14 | ses-02 | dir-ap_right_hand-avg| +| sub-14 | ses-02 | dir-ffx_right_hand| +| sub-14 | ses-02 | task-hcp_motor_dir-ap_right_hand| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_OFC_Fo1.md b/deploy/datasets/supplements/data/ibc/left_OFC_Fo1.md new file mode 100644 index 0000000000000000000000000000000000000000..64a6cc2da826d8224e4e7e5ed4d9c9fa2bb4c078 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_OFC_Fo1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fo1 (OFC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fo1 (OFC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-01 | task-hcp_gambling_ffx_reward-punishment| +| sub-12 | ses-01 | reward-punishment| +| sub-12 | ses-01 | dir-ffx_reward-punishment| +| sub-12 | ses-01 | dir-ap_reward-punishment| +| sub-12 | ses-01 | task-hcp_gambling_dir-ap_reward-punishment| +| sub-07 | ses-15 | task-preference_paintings_ffx_painting_quadratic| +| sub-07 | ses-15 | dir-ffx_painting_quadratic| +| sub-07 | ses-15 | painting_quadratic| +| sub-07 | ses-12 | task-mtt_we_dir-pa_run-02_we_before-after_event| +| sub-07 | ses-12 | dir-pa_run-02_we_before-after_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_OFC_Fo2.md b/deploy/datasets/supplements/data/ibc/left_OFC_Fo2.md new file mode 100644 index 0000000000000000000000000000000000000000..fcb59227471d0abc5dba5ed4ade8859e076df845 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_OFC_Fo2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fo2 (OFC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fo2 (OFC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky-pseudo| +| sub-04 | ses-03 | dir-ap_run-04_jabberwocky-pseudo| +| sub-11 | ses-11 | task-mtt_we_dir-pa_run-01_we_before-after_event| +| sub-11 | ses-11 | dir-pa_run-01_we_before-after_event| +| sub-13 | ses-15 | dir-pa_painting_linear| +| sub-13 | ses-15 | task-preference_paintings_dir-pa_painting_linear| +| sub-15 | ses-15 | sn_all_space-time_cue| +| sub-11 | ses-12 | dir-pa_run-01_southside-northside_event| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-01_southside-northside_event| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-02_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_OFC_Fo3.md b/deploy/datasets/supplements/data/ibc/left_OFC_Fo3.md new file mode 100644 index 0000000000000000000000000000000000000000..9bb5897ee639c746408c55011f2c6de91e10b3b0 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_OFC_Fo3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fo3 (OFC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fo3 (OFC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-15 | task-preference_houses_dir-ap_house_quadratic| +| sub-04 | ses-15 | dir-ffx_house_quadratic| +| sub-04 | ses-15 | house_quadratic| +| sub-04 | ses-15 | task-preference_houses_ffx_house_quadratic| +| sub-04 | ses-15 | dir-ap_house_quadratic| +| sub-11 | ses-05 | dir-ap_face_trusty-control| +| sub-11 | ses-05 | task-archi_emotional_dir-ap_face_trusty-control| +| sub-12 | ses-00 | dir-ap_audio_left_button_press| +| sub-12 | ses-00 | task-archi_standard_dir-ap_audio_left_button_press| +| sub-07 | ses-03 | task-rsvp_language_dir-pa_run-01_sentence-jabberwocky| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Operculum_OP1.md b/deploy/datasets/supplements/data/ibc/left_Operculum_OP1.md new file mode 100644 index 0000000000000000000000000000000000000000..147f29db3ad4cd63ecdac9c5eb4cfdc4888d6b72 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Operculum_OP1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP1 (POperc) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP1 (POperc) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-04 | dir-ffx_motor-cognitive| +| sub-05 | ses-04 | motor-cognitive| +| sub-05 | ses-04 | task-archi_standard_ffx_motor-cognitive| +| sub-04 | ses-03 | dir-pa_run-00_probe| +| sub-04 | ses-03 | task-rsvp_language_dir-pa_run-00_probe| +| sub-04 | ses-11 | task-mtt_we_dir-ap_run-03_we_all_space-time_cue| +| sub-04 | ses-11 | dir-ap_run-03_we_all_space-time_cue| +| sub-05 | ses-02 | dir-pa_0back_place| +| sub-05 | ses-02 | task-hcp_wm_dir-pa_0back_place| +| sub-14 | ses-04 | task-rsvp_language_dir-pa_run-00_probe| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Operculum_OP2.md b/deploy/datasets/supplements/data/ibc/left_Operculum_OP2.md new file mode 100644 index 0000000000000000000000000000000000000000..782b4f567a601645b886124b454e79be554070a2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Operculum_OP2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP2 (POperc) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP2 (POperc) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_all_time-space_cue| +| sub-07 | ses-11 | dir-pa_run-01_sn_all_time-space_cue| +| sub-09 | ses-01 | task-hcp_gambling_dir-pa_punishment-reward| +| sub-09 | ses-01 | dir-pa_punishment-reward| +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_after-before_event| +| sub-07 | ses-11 | dir-pa_run-01_sn_after-before_event| +| sub-09 | ses-04 | dir-pa_run-02_word-consonant_string| +| sub-09 | ses-04 | task-rsvp_language_dir-pa_run-02_word-consonant_string| +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-02_we_after-before_event| +| sub-08 | ses-11 | dir-pa_run-02_we_after-before_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Operculum_OP3.md b/deploy/datasets/supplements/data/ibc/left_Operculum_OP3.md new file mode 100644 index 0000000000000000000000000000000000000000..8482bca463a3b3c6ece71fc970d230fe20f11d71 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Operculum_OP3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP3 (POperc) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP3 (POperc) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-17 | dir-pa_run-01_vstm_linear| +| sub-04 | ses-17 | task-vstm_dir-pa_run-01_vstm_linear| +| sub-07 | ses-15 | dir-ffx_face_quadratic| +| sub-07 | ses-15 | task-preference_faces_ffx_face_quadratic| +| sub-07 | ses-15 | face_quadratic| +| sub-12 | ses-00 | dir-pa_right-left_button_press| +| sub-12 | ses-00 | task-archi_standard_dir-pa_right-left_button_press| +| sub-07 | ses-23 | task-self_dir-pa_run-01_recognition_self-other| +| sub-07 | ses-23 | dir-pa_run-01_recognition_self-other| +| sub-11 | ses-18 | task-emotional_pain_dir-pa_emotional-physical_pain| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Operculum_OP4.md b/deploy/datasets/supplements/data/ibc/left_Operculum_OP4.md new file mode 100644 index 0000000000000000000000000000000000000000..d59cd3ae0ff0a291780dc919f06549e81175ca8d --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Operculum_OP4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP4 (POperc) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP4 (POperc) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-01 | dir-ap_motor-cognitive| +| sub-08 | ses-01 | task-archi_standard_dir-ap_motor-cognitive| +| sub-02 | ses-04 | dir-pa_tongue| +| sub-02 | ses-04 | task-hcp_motor_dir-pa_tongue| +| sub-04 | ses-16 | task-theory_of_mind_dir-pa_belief| +| sub-04 | ses-16 | dir-pa_belief| +| sub-06 | ses-01 | task-hcp_motor_dir-pa_tongue| +| sub-06 | ses-01 | dir-pa_tongue| +| sub-02 | ses-01 | dir-pa_listening-reading| +| sub-02 | ses-01 | task-archi_standard_dir-pa_listening-reading| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PIPS_hIP4.md b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP4.md new file mode 100644 index 0000000000000000000000000000000000000000..6fd97460be378deddd208bcdbfbee21d93b13d23 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP4 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP4 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-02 | task-hcp_wm_dir-ap_place-avg| +| sub-12 | ses-02 | dir-ap_place-avg| +| sub-12 | ses-02 | dir-ffx_place-avg| +| sub-12 | ses-02 | place-avg| +| sub-12 | ses-02 | task-hcp_wm_ffx_place-avg| +| sub-09 | ses-16 | task-preference_paintings_dir-ap_painting_constant| +| sub-09 | ses-16 | dir-ap_painting_constant| +| sub-13 | ses-03 | dir-ap_run-05_word-pseudo| +| sub-13 | ses-03 | task-rsvp_language_dir-ap_run-05_word-pseudo| +| sub-02 | ses-01 | object_orientation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PIPS_hIP5.md b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP5.md new file mode 100644 index 0000000000000000000000000000000000000000..05003636feb30d879ad5cee10f9ab5457802a726 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP5.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP5 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP5 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-00 | dir-pa_cognitive-motor| +| sub-02 | ses-00 | task-archi_standard_dir-pa_cognitive-motor| +| sub-09 | ses-05 | task-archi_emotional_dir-ap_expression_intention-gender| +| sub-09 | ses-05 | dir-ap_expression_intention-gender| +| sub-01 | ses-00 | task-archi_standard_ffx_computation-sentences| +| sub-01 | ses-00 | computation-sentences| +| sub-01 | ses-00 | dir-ffx_computation-sentences| +| sub-12 | ses-12 | dir-pa_run-01_northside-southside_event| +| sub-12 | ses-12 | task-mtt_sn_dir-pa_run-01_northside-southside_event| +| sub-09 | ses-01 | dir-pa_shape-face| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PIPS_hIP6.md b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP6.md new file mode 100644 index 0000000000000000000000000000000000000000..2d10f493b0dab0e785b6b85dd42da97b476ec18c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP6.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP6 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP6 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-01 | computation| +| sub-02 | ses-01 | task-archi_standard_ffx_computation| +| sub-02 | ses-01 | dir-ffx_computation| +| sub-08 | ses-01 | dir-ap_cognitive-motor| +| sub-08 | ses-01 | task-archi_standard_dir-ap_cognitive-motor| +| sub-09 | ses-12 | we_all_space-time_cue| +| sub-15 | ses-02 | task-hcp_language_dir-ap_math-story| +| sub-15 | ses-02 | dir-ap_math-story| +| sub-04 | ses-00 | task-archi_standard_dir-pa_computation| +| sub-04 | ses-00 | dir-pa_computation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PIPS_hIP7.md b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP7.md new file mode 100644 index 0000000000000000000000000000000000000000..ff47afbb23e6a46d9d957f30aa76649668edf9f7 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP7.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP7 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP7 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-15 | task-preference_food_ffx_food_linear| +| sub-07 | ses-15 | dir-ffx_food_linear| +| sub-07 | ses-15 | food_linear| +| sub-07 | ses-00 | task-archi_social_dir-ap_false_belief_audio| +| sub-07 | ses-00 | dir-ap_false_belief_audio| +| sub-14 | ses-16 | dir-ap_emotional_pain| +| sub-14 | ses-16 | task-emotional_pain_dir-ap_emotional_pain| +| sub-14 | ses-16 | task-emotional_pain_ffx_emotional_pain| +| sub-14 | ses-16 | dir-ffx_emotional_pain| +| sub-14 | ses-16 | emotional_pain| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PIPS_hIP8.md b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP8.md new file mode 100644 index 0000000000000000000000000000000000000000..9f532743df439bbba7f595a0c88e8b2b28881357 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PIPS_hIP8.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP8 (IPS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP8 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-04 | consonant_string| +| sub-06 | ses-00 | dir-pa_grasp-orientation| +| sub-06 | ses-00 | task-archi_spatial_dir-pa_grasp-orientation| +| sub-06 | ses-00 | task-archi_spatial_ffx_grasp-orientation| +| sub-06 | ses-00 | dir-ffx_grasp-orientation| +| sub-06 | ses-00 | grasp-orientation| +| sub-01 | ses-07 | task-archi_spatial_dir-ap_hand-side| +| sub-01 | ses-07 | dir-ap_hand-side| +| sub-04 | ses-15 | task-preference_houses_ffx_house_linear| +| sub-04 | ses-15 | dir-ffx_house_linear| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PIPS_hPO1.md b/deploy/datasets/supplements/data/ibc/left_PIPS_hPO1.md new file mode 100644 index 0000000000000000000000000000000000000000..800034d62671414bb8138df90ca983fa4b6f8691 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PIPS_hPO1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hPO1 (POS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hPO1 (POS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-17 | task-vstm_dir-pa_run-02_vstm_linear| +| sub-04 | ses-17 | dir-pa_run-02_vstm_linear| +| sub-07 | ses-00 | dir-pa_cognitive-motor| +| sub-07 | ses-00 | task-archi_standard_dir-pa_cognitive-motor| +| sub-12 | ses-16 | task-preference_food_dir-ap_food_constant| +| sub-12 | ses-16 | dir-ap_food_constant| +| sub-12 | ses-16 | dir-ap_house_constant| +| sub-12 | ses-16 | task-preference_houses_dir-ap_house_constant| +| sub-15 | ses-03 | dir-ap_0back-2back| +| sub-15 | ses-03 | task-hcp_wm_dir-ap_0back-2back| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PSC_1.md b/deploy/datasets/supplements/data/ibc/left_PSC_1.md new file mode 100644 index 0000000000000000000000000000000000000000..4f8f2e4cccc6c6f9761d1ac3ed795b00552eedc6 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PSC_1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 1 (PostCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 1 (PostCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-00 | dir-ffx_right-left_button_press| +| sub-01 | ses-00 | dir-ap_right-left_button_press| +| sub-01 | ses-00 | task-archi_standard_dir-ap_right-left_button_press| +| sub-01 | ses-00 | right-left_button_press| +| sub-01 | ses-00 | task-archi_standard_ffx_right-left_button_press| +| sub-05 | ses-11 | task-mtt_we_dir-ap_run-03_eastside-westside_event| +| sub-02 | ses-00 | dir-ap_right-left_button_press| +| sub-02 | ses-00 | task-archi_standard_ffx_right-left_button_press| +| sub-15 | ses-14 | we_after-before_event| +| sub-15 | ses-14 | task-mtt_we_dir-pa_run-02_we_after-before_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PSC_2.md b/deploy/datasets/supplements/data/ibc/left_PSC_2.md new file mode 100644 index 0000000000000000000000000000000000000000..417ee14f2f79215acaf579d990eda28daaf06116 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PSC_2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 2 (PostCS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 2 (PostCS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-16 | task-preference_food_dir-ap_food_linear| +| sub-12 | ses-16 | dir-ap_food_linear| +| sub-09 | ses-13 | sn_all_time-space_cue| +| sub-05 | ses-02 | 2back-0back| +| sub-05 | ses-02 | dir-ffx_2back-0back| +| sub-05 | ses-02 | task-hcp_wm_ffx_2back-0back| +| sub-09 | ses-05 | dir-pa_grasp-orientation| +| sub-09 | ses-05 | task-archi_spatial_dir-pa_grasp-orientation| +| sub-07 | ses-00 | dir-ffx_motor-cognitive| +| sub-07 | ses-00 | motor-cognitive| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PSC_3a.md b/deploy/datasets/supplements/data/ibc/left_PSC_3a.md new file mode 100644 index 0000000000000000000000000000000000000000..63fa432d846f461a534bc923a06acfaf396512e4 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PSC_3a.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 3a (PostCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 3a (PostCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-12 | task-mtt_we_dir-pa_run-02_we_after-before_event| +| sub-09 | ses-12 | dir-pa_run-02_we_after-before_event| +| sub-14 | ses-00 | dir-ap_grasp-orientation| +| sub-14 | ses-00 | task-archi_spatial_dir-ap_grasp-orientation| +| sub-11 | ses-22 | dir-ap_run-04_correct_rejection| +| sub-11 | ses-22 | task-self_dir-ap_run-04_correct_rejection| +| sub-14 | ses-02 | dir-pa_right_foot-avg| +| sub-14 | ses-02 | task-hcp_motor_dir-pa_right_foot-avg| +| sub-05 | ses-20 | task-self_dir-ap_run-03_instructions| +| sub-05 | ses-20 | dir-ap_run-03_instructions| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_PSC_3b.md b/deploy/datasets/supplements/data/ibc/left_PSC_3b.md new file mode 100644 index 0000000000000000000000000000000000000000..1f12367055cad9e5e8c737c928b7c8e659095662 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_PSC_3b.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 3b (PostCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 3b (PostCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-01 | dir-ap_tongue| +| sub-13 | ses-01 | task-hcp_motor_dir-ap_tongue| +| sub-09 | ses-01 | task-hcp_emotion_dir-pa_shape| +| sub-09 | ses-01 | dir-pa_shape| +| sub-06 | ses-00 | task-archi_standard_dir-ap_video_left_button_press| +| sub-06 | ses-00 | dir-ap_video_left_button_press| +| sub-02 | ses-01 | dir-ffx_motor-cognitive| +| sub-02 | ses-01 | task-archi_standard_ffx_motor-cognitive| +| sub-02 | ses-01 | motor-cognitive| +| sub-13 | ses-12 | sn_space-time_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Premotor_6d1.md b/deploy/datasets/supplements/data/ibc/left_Premotor_6d1.md new file mode 100644 index 0000000000000000000000000000000000000000..ae0f157a6ad8cda594a2a00db2de287baa863110 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Premotor_6d1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6d1 (PreCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6d1 (PreCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-00 | dir-ap_object_grasp| +| sub-12 | ses-00 | task-archi_spatial_dir-ap_object_orientation| +| sub-12 | ses-00 | task-archi_spatial_dir-ap_object_grasp| +| sub-12 | ses-00 | dir-ap_object_orientation| +| sub-06 | ses-01 | task-hcp_motor_ffx_right_foot| +| sub-06 | ses-01 | dir-ffx_right_foot| +| sub-06 | ses-01 | right_foot| +| sub-15 | ses-00 | dir-pa_object_orientation| +| sub-15 | ses-00 | task-archi_spatial_dir-pa_object_orientation| +| sub-12 | ses-12 | dir-pa_run-02_sn_after-before_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Premotor_6d2.md b/deploy/datasets/supplements/data/ibc/left_Premotor_6d2.md new file mode 100644 index 0000000000000000000000000000000000000000..9b758368dd19831cf3ae92f3564df22031ee4e11 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Premotor_6d2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6d2 (PreCG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6d2 (PreCG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-04 | task-rsvp_language_dir-pa_run-00_probe| +| sub-12 | ses-04 | dir-pa_run-00_probe| +| sub-12 | ses-04 | task-rsvp_language_dir-ap_run-05_probe| +| sub-12 | ses-04 | dir-ap_run-05_probe| +| sub-12 | ses-04 | dir-pa_run-02_probe| +| sub-12 | ses-04 | task-rsvp_language_dir-pa_run-02_probe| +| sub-08 | ses-00 | dir-pa_hand-side| +| sub-08 | ses-00 | task-archi_spatial_dir-pa_hand-side| +| sub-12 | ses-00 | task-archi_spatial_ffx_object_orientation| +| sub-12 | ses-00 | object_orientation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Premotor_6d3.md b/deploy/datasets/supplements/data/ibc/left_Premotor_6d3.md new file mode 100644 index 0000000000000000000000000000000000000000..ae629ea599f1064df3986439798c84aa03bb0a4e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Premotor_6d3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6d3 (SFS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6d3 (SFS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-00 | task-archi_spatial_dir-pa_hand-side| +| sub-15 | ses-00 | dir-pa_hand-side| +| sub-05 | ses-04 | task-archi_spatial_dir-ap_hand-side| +| sub-05 | ses-04 | dir-ap_hand-side| +| sub-05 | ses-20 | task-self_dir-ap_run-04_encode_self-other| +| sub-05 | ses-20 | dir-ap_run-04_encode_self-other| +| sub-05 | ses-04 | computation-sentences| +| sub-05 | ses-04 | dir-ffx_computation-sentences| +| sub-05 | ses-04 | task-archi_standard_ffx_computation-sentences| +| sub-05 | ses-04 | task-archi_standard_dir-ap_computation-sentences| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_5Ci.md b/deploy/datasets/supplements/data/ibc/left_SPL_5Ci.md new file mode 100644 index 0000000000000000000000000000000000000000..12c1dc2fd3c6ecac7cb81b8b9f6dd789a26fce18 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_5Ci.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 5Ci (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 5Ci (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-11 | task-mtt_we_dir-pa_run-02_westside-eastside_event| +| sub-11 | ses-11 | dir-pa_run-02_westside-eastside_event| +| sub-14 | ses-04 | dir-pa_run-02_complex-simple| +| sub-14 | ses-04 | task-rsvp_language_dir-pa_run-02_complex-simple| +| sub-01 | ses-15 | dir-pa_run-01_sn_all_time-space_cue| +| sub-01 | ses-15 | task-mtt_sn_dir-pa_run-01_sn_all_time-space_cue| +| sub-12 | ses-03 | task-archi_emotional_dir-ap_expression_gender-control| +| sub-12 | ses-03 | dir-ap_expression_gender-control| +| sub-08 | ses-02 | dir-pa_punishment-reward| +| sub-08 | ses-02 | task-hcp_gambling_dir-pa_punishment-reward| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_5L.md b/deploy/datasets/supplements/data/ibc/left_SPL_5L.md new file mode 100644 index 0000000000000000000000000000000000000000..a99abcbc86b3a2976f0f13caf7c22e3972abc71b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_5L.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 5L (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 5L (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-00 | task-archi_standard_ffx_motor-cognitive| +| sub-05 | ses-00 | task-archi_standard_dir-pa_motor-cognitive| +| sub-05 | ses-00 | motor-cognitive| +| sub-05 | ses-00 | dir-ffx_motor-cognitive| +| sub-05 | ses-00 | dir-pa_motor-cognitive| +| sub-12 | ses-11 | we_space-time_event| +| sub-06 | ses-17 | task-vstm_dir-pa_run-02_vstm_linear| +| sub-06 | ses-17 | dir-pa_run-02_vstm_linear| +| sub-02 | ses-06 | dir-ap_run-05_probe| +| sub-02 | ses-06 | task-rsvp_language_dir-ap_run-05_probe| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_5M.md b/deploy/datasets/supplements/data/ibc/left_SPL_5M.md new file mode 100644 index 0000000000000000000000000000000000000000..0407df916abade80b85aeb154cb7c518ecc59395 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_5M.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 5M (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 5M (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-11 | dir-ap_run-03_we_all_space_cue| +| sub-14 | ses-11 | task-mtt_we_dir-ap_run-03_we_all_space_cue| +| sub-05 | ses-20 | task-self_dir-pa_run-02_recognition_other_hit| +| sub-05 | ses-20 | dir-pa_run-02_recognition_other_hit| +| sub-07 | ses-23 | dir-ap_run-03_encode_self-other| +| sub-07 | ses-23 | task-self_dir-ap_run-03_encode_self-other| +| sub-04 | ses-01 | dir-pa_right_foot-avg| +| sub-04 | ses-01 | task-hcp_motor_dir-pa_right_foot-avg| +| sub-08 | ses-02 | dir-pa_punishment-reward| +| sub-08 | ses-02 | task-hcp_gambling_dir-pa_punishment-reward| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_7A.md b/deploy/datasets/supplements/data/ibc/left_SPL_7A.md new file mode 100644 index 0000000000000000000000000000000000000000..2477b6490da9b45d47083cf3db0a0973b707a94a --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_7A.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7A (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7A (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-06 | task-preference_faces_dir-ap_face_linear| +| sub-15 | ses-06 | dir-ap_face_linear| +| sub-06 | ses-17 | task-vstm_dir-ap_run-01_vstm_constant| +| sub-06 | ses-17 | dir-ap_run-02_vstm_constant| +| sub-06 | ses-17 | vstm_constant| +| sub-06 | ses-17 | dir-ap_run-01_vstm_constant| +| sub-06 | ses-17 | task-vstm_dir-ap_run-02_vstm_constant| +| sub-11 | ses-12 | sn_space-time_event| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_space-time_event| +| sub-11 | ses-12 | dir-pa_run-02_sn_space-time_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_7M.md b/deploy/datasets/supplements/data/ibc/left_SPL_7M.md new file mode 100644 index 0000000000000000000000000000000000000000..a83a2ff29e9c472640efbb548834002673bd434f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_7M.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7M (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7M (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-16 | task-emotional_pain_dir-ap_emotional-physical_pain| +| sub-04 | ses-16 | dir-ap_emotional-physical_pain| +| sub-12 | ses-16 | task-preference_faces_dir-ap_face_linear| +| sub-12 | ses-16 | dir-ap_face_linear| +| sub-04 | ses-15 | task-preference_food_ffx_food_quadratic| +| sub-04 | ses-15 | food_quadratic| +| sub-04 | ses-15 | dir-ffx_food_quadratic| +| sub-04 | ses-15 | task-preference_faces_dir-pa_face_quadratic| +| sub-04 | ses-15 | dir-pa_face_quadratic| +| sub-06 | ses-01 | punishment-reward| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_7P.md b/deploy/datasets/supplements/data/ibc/left_SPL_7P.md new file mode 100644 index 0000000000000000000000000000000000000000..634eb9c46deef1523cbb292ead77dee75bf236c2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_7P.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7P (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7P (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-16 | task-preference_faces_dir-pa_face_linear| +| sub-12 | ses-16 | dir-pa_face_linear| +| sub-06 | ses-00 | task-archi_standard_dir-pa_computation-sentences| +| sub-06 | ses-00 | dir-ffx_computation-sentences| +| sub-06 | ses-00 | task-archi_standard_ffx_computation-sentences| +| sub-06 | ses-00 | computation-sentences| +| sub-06 | ses-00 | dir-pa_computation-sentences| +| sub-12 | ses-16 | face_linear| +| sub-12 | ses-16 | dir-ffx_face_linear| +| sub-12 | ses-16 | task-preference_faces_ffx_face_linear| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_SPL_7PC.md b/deploy/datasets/supplements/data/ibc/left_SPL_7PC.md new file mode 100644 index 0000000000000000000000000000000000000000..57a068e88f2ce94a0795edc596415857f1043c00 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_SPL_7PC.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7PC (SPL) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7PC (SPL) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-17 | task-vstm_dir-pa_run-01_vstm_constant| +| sub-04 | ses-17 | dir-pa_run-01_vstm_constant| +| sub-04 | ses-15 | dir-pa_face_constant| +| sub-04 | ses-15 | task-preference_faces_dir-pa_face_constant| +| sub-04 | ses-17 | task-vstm_dir-ap_run-01_vstm_constant| +| sub-04 | ses-17 | dir-ap_run-01_vstm_constant| +| sub-14 | ses-12 | sn_space-time_event| +| sub-07 | ses-11 | dir-pa_run-01_sn_all_event_response| +| sub-07 | ses-11 | task-mtt_sn_dir-pa_run-01_sn_all_event_response| +| sub-07 | ses-11 | sn_all_event_response| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Supplementarymotor_presma.md b/deploy/datasets/supplements/data/ibc/left_Supplementarymotor_presma.md new file mode 100644 index 0000000000000000000000000000000000000000..9b450e4f4e2e21e2cae19018876ed85210a16668 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Supplementarymotor_presma.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6ma (preSMA, mesial SFG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6ma (preSMA, mesial SFG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-23 | dir-pa_run-01_correct_rejection| +| sub-07 | ses-23 | task-self_dir-pa_run-01_correct_rejection| +| sub-04 | ses-15 | dir-ap_painting_quadratic| +| sub-04 | ses-15 | task-preference_paintings_dir-ap_painting_quadratic| +| sub-15 | ses-00 | dir-pa_computation| +| sub-15 | ses-00 | task-archi_standard_dir-pa_computation| +| sub-11 | ses-18 | dir-ap_emotional-physical_pain| +| sub-11 | ses-18 | task-emotional_pain_dir-ap_emotional-physical_pain| +| sub-15 | ses-10 | dir-ap_enumeration_linear| +| sub-15 | ses-10 | task-enumeration_dir-ap_enumeration_linear| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Supplementarymotor_sma.md b/deploy/datasets/supplements/data/ibc/left_Supplementarymotor_sma.md new file mode 100644 index 0000000000000000000000000000000000000000..8d6a080200b3eae2efb4d4f81e6db901d0b1960c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Supplementarymotor_sma.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6mp (SMA, mesial SFG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6mp (SMA, mesial SFG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-12 | task-mtt_we_dir-ap_run-03_eastside-westside_event| +| sub-09 | ses-12 | dir-ap_run-03_eastside-westside_event| +| sub-15 | ses-06 | painting_linear| +| sub-15 | ses-06 | task-preference_paintings_ffx_painting_linear| +| sub-15 | ses-06 | dir-ffx_painting_linear| +| sub-06 | ses-16 | task-emotional_pain_dir-pa_emotional-physical_pain| +| sub-06 | ses-16 | dir-pa_emotional-physical_pain| +| sub-11 | ses-19 | enumeration_constant| +| sub-11 | ses-19 | task-enumeration_ffx_enumeration_constant| +| sub-11 | ses-19 | dir-pa_enumeration_constant| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_FG1.md b/deploy/datasets/supplements/data/ibc/left_Visual_FG1.md new file mode 100644 index 0000000000000000000000000000000000000000..e2b028be6718e428927876ef4fe76856e511843c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_FG1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG1 (FusG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG1 (FusG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-04 | expression_intention| +| sub-06 | ses-04 | dir-ap_face_trusty| +| sub-06 | ses-04 | face_gender| +| sub-06 | ses-04 | dir-ffx_face_gender| +| sub-06 | ses-04 | task-archi_emotional_ffx_face_gender| +| sub-06 | ses-04 | task-archi_emotional_dir-ap_face_trusty| +| sub-06 | ses-04 | dir-ffx_expression_intention| +| sub-06 | ses-04 | task-archi_emotional_ffx_expression_intention| +| sub-02 | ses-00 | dir-pa_object_grasp| +| sub-11 | ses-01 | dir-pa_cue| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_FG2.md b/deploy/datasets/supplements/data/ibc/left_Visual_FG2.md new file mode 100644 index 0000000000000000000000000000000000000000..b721d4b9f98b674b28299949e9c1be64ac4e001f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_FG2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG2 (FusG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG2 (FusG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-00 | task-archi_spatial_dir-ap_rotation_side| +| sub-06 | ses-00 | dir-ap_rotation_side| +| sub-06 | ses-00 | dir-ffx_video_sentence| +| sub-06 | ses-00 | video_sentence| +| sub-06 | ses-00 | task-archi_standard_ffx_video_sentence| +| sub-06 | ses-00 | dir-pa_video_sentence| +| sub-06 | ses-00 | task-archi_standard_dir-pa_video_sentence| +| sub-14 | ses-01 | task-archi_emotional_ffx_expression_intention-control| +| sub-14 | ses-01 | task-archi_emotional_ffx_trusty_and_intention-control| +| sub-14 | ses-01 | trusty_and_intention-control| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_FG3.md b/deploy/datasets/supplements/data/ibc/left_Visual_FG3.md new file mode 100644 index 0000000000000000000000000000000000000000..c8f35469606dd12c5b7b08ac868d33521b90a3eb --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_FG3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG3 (FusG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG3 (FusG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-11 | task-mtt_we_dir-pa_run-02_we_space-time_event| +| sub-14 | ses-11 | dir-pa_run-02_we_space-time_event| +| sub-11 | ses-01 | dir-pa_face-shape| +| sub-11 | ses-01 | task-hcp_emotion_dir-pa_face-shape| +| sub-11 | ses-01 | dir-ffx_face-shape| +| sub-11 | ses-01 | task-hcp_emotion_ffx_face-shape| +| sub-11 | ses-01 | face-shape| +| sub-12 | ses-02 | task-hcp_wm_dir-ap_tools-avg| +| sub-12 | ses-02 | dir-ap_tools-avg| +| sub-14 | ses-01 | task-archi_emotional_dir-pa_trusty_and_intention-control| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_FG4.md b/deploy/datasets/supplements/data/ibc/left_Visual_FG4.md new file mode 100644 index 0000000000000000000000000000000000000000..c6bb5e819befa5fcfe8c452f7d2d6ba1551a889f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_FG4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG4 (FusG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG4 (FusG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-05 | dir-ap_expression_intention-control| +| sub-09 | ses-05 | task-archi_emotional_dir-ap_expression_intention-control| +| sub-11 | ses-05 | task-archi_emotional_ffx_expression_intention-control| +| sub-11 | ses-05 | dir-ffx_expression_intention-control| +| sub-11 | ses-05 | expression_intention-control| +| sub-06 | ses-00 | task-archi_standard_dir-ap_reading-checkerboard| +| sub-06 | ses-00 | dir-ap_reading-checkerboard| +| sub-09 | ses-01 | dir-ffx_face| +| sub-09 | ses-01 | task-hcp_emotion_ffx_face| +| sub-09 | ses-01 | face| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc1.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc1.md new file mode 100644 index 0000000000000000000000000000000000000000..b8816a61f8e023782b73aa6b8bf3e8954c5c81fd --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc1 (V1, 17, CalcS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc1 (V1, 17, CalcS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-04 | task-rsvp_language_dir-pa_run-00_simple| +| sub-09 | ses-04 | dir-pa_run-00_simple| +| sub-07 | ses-04 | face_gender-control| +| sub-02 | ses-01 | dir-ap_horizontal_checkerboard| +| sub-07 | ses-04 | dir-ffx_face_gender-control| +| sub-07 | ses-04 | task-archi_emotional_ffx_face_gender-control| +| sub-02 | ses-01 | task-archi_standard_dir-ap_horizontal_checkerboard| +| sub-07 | ses-04 | dir-pa_horizontal_checkerboard| +| sub-07 | ses-04 | task-archi_standard_dir-pa_horizontal_checkerboard| +| sub-13 | ses-21 | dir-pa_run-01_recognition_hit-correct_rejection| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc2.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc2.md new file mode 100644 index 0000000000000000000000000000000000000000..98039e2f79ac6fd077a04c2f0dbf73b9d8269e6b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc2 (V2, 18) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc2 (V2, 18) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-22 | dir-pa_run-01_recognition_self_hit| +| sub-11 | ses-22 | task-self_dir-pa_run-01_recognition_self_hit| +| sub-05 | ses-15 | food_quadratic| +| sub-05 | ses-15 | task-preference_food_ffx_food_quadratic| +| sub-05 | ses-15 | dir-ffx_food_quadratic| +| sub-11 | ses-22 | encode_other| +| sub-11 | ses-22 | recognition_hit| +| sub-11 | ses-22 | dir-ap_run-03_encode_other| +| sub-11 | ses-22 | recognition_other_hit| +| sub-11 | ses-22 | false_alarm| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc3d.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc3d.md new file mode 100644 index 0000000000000000000000000000000000000000..1e2ce09e50ded299f794c93f49e6b76511c31fc5 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc3d.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc3d (Cuneus) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc3d (Cuneus) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-12 | sn_all_event_response| +| sub-05 | ses-03 | task-rsvp_language_dir-ap_run-05_sentence-jabberwocky| +| sub-05 | ses-03 | dir-ap_run-05_sentence-jabberwocky| +| sub-09 | ses-05 | task-archi_spatial_dir-ap_object_orientation| +| sub-09 | ses-05 | dir-ap_object_orientation| +| sub-05 | ses-02 | task-hcp_wm_dir-ap_0back_tools| +| sub-05 | ses-02 | dir-ap_0back_tools| +| sub-12 | ses-03 | dir-pa_vertical-horizontal| +| sub-12 | ses-03 | task-archi_standard_dir-pa_vertical-horizontal| +| sub-12 | ses-03 | task-archi_standard_dir-pa_vertical_checkerboard| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc3v.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc3v.md new file mode 100644 index 0000000000000000000000000000000000000000..d9c7449b1d51d6a775c18b9bd97cc2c69400b509 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc3v.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc3v (LingG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc3v (LingG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-04 | dir-pa_video_left_button_press| +| sub-13 | ses-04 | task-archi_standard_dir-pa_video_left_button_press| +| sub-14 | ses-21 | task-self_dir-ap_run-03_recognition_other_hit| +| sub-14 | ses-21 | dir-ap_run-03_recognition_other_hit| +| sub-14 | ses-01 | task-archi_social_dir-pa_false_belief_video| +| sub-14 | ses-01 | dir-pa_false_belief_video| +| sub-09 | ses-05 | task-archi_emotional_ffx_expression_control| +| sub-09 | ses-05 | expression_control| +| sub-09 | ses-05 | dir-ffx_expression_control| +| sub-11 | ses-05 | dir-pa_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc4d.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4d.md new file mode 100644 index 0000000000000000000000000000000000000000..2c004fe12718c7cfa39683344a1d0852d5ab5db2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4d.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4d (Cuneus) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4d (Cuneus) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-01 | task-hcp_emotion_dir-pa_shape-face| +| sub-04 | ses-01 | dir-pa_shape-face| +| sub-01 | ses-20 | vstm_quadratic| +| sub-02 | ses-06 | dir-ap_run-03_complex| +| sub-02 | ses-06 | task-rsvp_language_dir-ap_run-03_complex| +| sub-12 | ses-11 | dir-ap_run-03_we_space-time_event| +| sub-12 | ses-11 | task-mtt_we_dir-ap_run-03_we_space-time_event| +| sub-15 | ses-03 | 0back-2back| +| sub-15 | ses-03 | task-hcp_wm_ffx_0back-2back| +| sub-15 | ses-03 | dir-ffx_0back-2back| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc4la.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4la.md new file mode 100644 index 0000000000000000000000000000000000000000..124b323137828ba8952ef7680c65696847ee76a7 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4la.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4la (LOC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4la (LOC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-02 | dir-ap_random| +| sub-07 | ses-02 | task-hcp_social_dir-ap_mental| +| sub-07 | ses-02 | task-hcp_social_dir-ap_random| +| sub-07 | ses-02 | dir-ap_mental| +| sub-13 | ses-02 | dir-pa_body-avg| +| sub-13 | ses-02 | task-hcp_wm_dir-pa_body-avg| +| sub-09 | ses-02 | random| +| sub-09 | ses-02 | dir-ffx_random| +| sub-09 | ses-02 | task-hcp_social_ffx_random| +| sub-14 | ses-03 | task-hcp_wm_ffx_body-avg| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc4lp.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4lp.md new file mode 100644 index 0000000000000000000000000000000000000000..267fc223df94e54e08acadf1dc3e843ca71ac877 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4lp.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4lp (LOC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4lp (LOC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-15 | dir-ffx_painting_linear| +| sub-13 | ses-15 | painting_linear| +| sub-13 | ses-15 | task-preference_paintings_ffx_painting_linear| +| sub-12 | ses-01 | dir-ffx_face| +| sub-12 | ses-01 | task-hcp_emotion_ffx_face| +| sub-12 | ses-01 | face| +| sub-07 | ses-02 | dir-ffx_tools-avg| +| sub-07 | ses-02 | task-hcp_wm_dir-pa_tools-avg| +| sub-07 | ses-02 | tools-avg| +| sub-07 | ses-02 | task-hcp_wm_ffx_tools-avg| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc4v.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4v.md new file mode 100644 index 0000000000000000000000000000000000000000..cafdfc49668414692e3e0fba0da46fe405d3410e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc4v.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4v (LingG) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4v (LingG) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-04 | task-archi_emotional_dir-ap_expression_gender| +| sub-04 | ses-04 | dir-ap_expression_gender| +| sub-07 | ses-00 | task-archi_social_dir-ap_triangle_random| +| sub-07 | ses-00 | dir-ap_triangle_random| +| sub-14 | ses-04 | task-rsvp_language_dir-pa_run-00_complex-simple| +| sub-14 | ses-04 | dir-pa_run-00_complex-simple| +| sub-05 | ses-15 | dir-pa_face_constant| +| sub-05 | ses-15 | task-preference_faces_ffx_face_constant| +| sub-05 | ses-15 | dir-ffx_face_constant| +| sub-05 | ses-15 | task-preference_faces_dir-pa_face_constant| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc5.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc5.md new file mode 100644 index 0000000000000000000000000000000000000000..65554538dddcf6b6649c9f3967c619b381a11cdf --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc5.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc5 (LOC) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc5 (LOC) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-01 | task-archi_social_dir-pa_triangle_random| +| sub-08 | ses-01 | dir-pa_triangle_random| +| sub-14 | ses-00 | task-archi_spatial_ffx_grasp-orientation| +| sub-14 | ses-00 | grasp-orientation| +| sub-14 | ses-00 | dir-ffx_grasp-orientation| +| sub-08 | ses-01 | task-archi_social_dir-ap_triangle_mental| +| sub-08 | ses-01 | dir-ap_triangle_mental| +| sub-08 | ses-01 | triangle_random| +| sub-08 | ses-01 | dir-ffx_triangle_random| +| sub-08 | ses-01 | task-archi_social_ffx_triangle_random| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/left_Visual_hOc6.md b/deploy/datasets/supplements/data/ibc/left_Visual_hOc6.md new file mode 100644 index 0000000000000000000000000000000000000000..7def02d282eaeb82d59b5160375048b1264562bc --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/left_Visual_hOc6.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc6 (POS) of the left hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc6 (POS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-00 | dir-pa_false_belief_video| +| sub-07 | ses-00 | task-archi_social_dir-pa_false_belief_video| +| sub-06 | ses-21 | dir-pa_talk| +| sub-06 | ses-21 | task-bang_ffx_talk| +| sub-06 | ses-21 | task-bang_dir-pa_talk| +| sub-06 | ses-21 | talk| +| sub-06 | ses-21 | dir-ffx_talk| +| sub-06 | ses-11 | task-mtt_we_dir-ap_run-03_we_all_time-space_cue| +| sub-06 | ses-11 | dir-ap_run-03_we_all_time-space_cue| +| sub-15 | ses-06 | task-preference_food_dir-ap_food_linear| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_AIPS_IP1.md b/deploy/datasets/supplements/data/ibc/right_AIPS_IP1.md new file mode 100644 index 0000000000000000000000000000000000000000..20a155b00192407f816c7ce707ee3ea842f96347 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_AIPS_IP1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP1 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP1 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-17 | vstm_quadratic| +| sub-01 | ses-19 | task-preference_faces_dir-pa_face_linear| +| sub-01 | ses-19 | dir-pa_face_linear| +| sub-07 | ses-00 | false_belief_video| +| sub-07 | ses-00 | dir-ffx_false_belief_video| +| sub-07 | ses-00 | task-archi_social_ffx_false_belief_video| +| sub-12 | ses-11 | task-mtt_we_dir-pa_run-02_we_all_time-space_cue| +| sub-12 | ses-11 | dir-pa_run-02_we_all_time-space_cue| +| sub-08 | ses-03 | dir-ap_2back-0back| +| sub-08 | ses-03 | task-hcp_wm_dir-ap_2back-0back| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_AIPS_IP2.md b/deploy/datasets/supplements/data/ibc/right_AIPS_IP2.md new file mode 100644 index 0000000000000000000000000000000000000000..d13332a90ece21c186abe6eaf743a2b53867b947 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_AIPS_IP2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP2 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP2 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-02 | dir-pa_math-story| +| sub-08 | ses-02 | task-hcp_language_dir-pa_math-story| +| sub-01 | ses-03 | dir-pa_math-story| +| sub-01 | ses-03 | math-story| +| sub-01 | ses-03 | task-hcp_language_ffx_math-story| +| sub-01 | ses-03 | task-hcp_language_dir-pa_math-story| +| sub-01 | ses-03 | dir-ffx_math-story| +| sub-04 | ses-01 | task-hcp_language_dir-ap_math-story| +| sub-04 | ses-01 | dir-ap_math-story| +| sub-08 | ses-03 | dir-ap_2back-0back| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_AIPS_IP3.md b/deploy/datasets/supplements/data/ibc/right_AIPS_IP3.md new file mode 100644 index 0000000000000000000000000000000000000000..259fe770036c026e293c7f6f32dbb08f9d60a892 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_AIPS_IP3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP3 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP3 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-00 | task-archi_spatial_dir-ap_saccades| +| sub-04 | ses-00 | dir-ap_saccades| +| sub-04 | ses-00 | dir-pa_saccades| +| sub-04 | ses-00 | task-archi_spatial_ffx_saccades| +| sub-04 | ses-00 | dir-ffx_saccades| +| sub-04 | ses-00 | saccades| +| sub-04 | ses-00 | task-archi_spatial_dir-pa_saccades| +| sub-01 | ses-07 | task-archi_standard_dir-pa_video_computation| +| sub-01 | ses-07 | dir-pa_video_computation| +| sub-15 | ses-03 | task-hcp_wm_dir-pa_2back-0back| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Amygdala_CM.md b/deploy/datasets/supplements/data/ibc/right_Amygdala_CM.md new file mode 100644 index 0000000000000000000000000000000000000000..6fc83722564845585eb3336e447613ef3280b4b8 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Amygdala_CM.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in CM (Amygdala) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in CM (Amygdala) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-17 | dir-ap_run-01_vstm_quadratic| +| sub-05 | ses-17 | task-vstm_dir-ap_run-01_vstm_quadratic| +| sub-14 | ses-11 | task-mtt_we_dir-pa_run-02_eastside-westside_event| +| sub-14 | ses-11 | dir-pa_run-02_eastside-westside_event| +| sub-11 | ses-03 | complex-simple| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Amygdala_IF.md b/deploy/datasets/supplements/data/ibc/right_Amygdala_IF.md new file mode 100644 index 0000000000000000000000000000000000000000..27a8d0854c0c22f35ea066120f286d74b7f0db8c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Amygdala_IF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in IF (Amygdala) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in IF (Amygdala) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-17 | dir-ap_run-01_vstm_quadratic| +| sub-05 | ses-17 | task-vstm_dir-ap_run-01_vstm_quadratic| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Amygdala_LB.md b/deploy/datasets/supplements/data/ibc/right_Amygdala_LB.md new file mode 100644 index 0000000000000000000000000000000000000000..3c93de71c0ad287509e39c2f0045e257803520ec --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Amygdala_LB.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in LB (Amygdala) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in LB (Amygdala) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-00 | dir-ap_non_speech_sound| +| sub-07 | ses-00 | task-archi_social_dir-ap_non_speech_sound| +| sub-11 | ses-11 | dir-pa_run-01_we_time-space_event| +| sub-11 | ses-11 | task-mtt_we_dir-pa_run-01_we_time-space_event| +| sub-05 | ses-17 | dir-ap_run-01_vstm_quadratic| +| sub-05 | ses-17 | task-vstm_dir-ap_run-01_vstm_quadratic| +| sub-07 | ses-12 | task-mtt_we_dir-ap_run-03_we_all_time-space_cue| +| sub-07 | ses-12 | dir-ap_run-03_we_all_time-space_cue| +| sub-07 | ses-01 | dir-pa_reward-punishment| +| sub-07 | ses-01 | task-hcp_gambling_dir-pa_reward-punishment| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Amygdala_MF.md b/deploy/datasets/supplements/data/ibc/right_Amygdala_MF.md new file mode 100644 index 0000000000000000000000000000000000000000..80ef9480804ff805332ac8207b6956a7e10d4787 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Amygdala_MF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in MF (Amygdala) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in MF (Amygdala) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-01 | dir-pa_reward-punishment| +| sub-07 | ses-01 | task-hcp_gambling_dir-pa_reward-punishment| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Amygdala_SF.md b/deploy/datasets/supplements/data/ibc/right_Amygdala_SF.md new file mode 100644 index 0000000000000000000000000000000000000000..3ddf8f7c7b375c3724e75e06be8ca2e8997e6047 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Amygdala_SF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in SF (Amygdala) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in SF (Amygdala) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-01 | dir-pa_reward-punishment| +| sub-07 | ses-01 | task-hcp_gambling_dir-pa_reward-punishment| +| sub-05 | ses-11 | task-mtt_we_dir-pa_run-01_we_before-after_event| +| sub-05 | ses-11 | dir-pa_run-01_we_before-after_event| +| sub-11 | ses-03 | complex-simple| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Amygdala_VTM.md b/deploy/datasets/supplements/data/ibc/right_Amygdala_VTM.md new file mode 100644 index 0000000000000000000000000000000000000000..b75f0832ef330c5e903131b5ab4efd64b3849828 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Amygdala_VTM.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in VTM (Amygdala) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in VTM (Amygdala) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-01 | dir-pa_reward-punishment| +| sub-07 | ses-01 | task-hcp_gambling_dir-pa_reward-punishment| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Auditory_Te10.md b/deploy/datasets/supplements/data/ibc/right_Auditory_Te10.md new file mode 100644 index 0000000000000000000000000000000000000000..b2a2de7c5a2a3342c864da6b267e5ad1f257e6b1 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Auditory_Te10.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area TE 1.0 (HESCHL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area TE 1.0 (HESCHL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-03 | task-archi_social_dir-ap_non_speech_sound| +| sub-12 | ses-03 | dir-ap_non_speech_sound| +| sub-02 | ses-00 | task-archi_social_dir-pa_false_belief-mechanistic_video| +| sub-02 | ses-00 | dir-pa_false_belief-mechanistic_video| +| sub-02 | ses-00 | task-archi_social_dir-ap_mechanistic_audio| +| sub-02 | ses-00 | dir-ap_mechanistic_audio| +| sub-14 | ses-00 | dir-pa_audio_left_button_press| +| sub-14 | ses-00 | task-archi_standard_dir-pa_audio_left_button_press| +| sub-02 | ses-00 | dir-ap_speech_sound| +| sub-02 | ses-00 | task-archi_social_dir-ap_speech_sound| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Auditory_Te11.md b/deploy/datasets/supplements/data/ibc/right_Auditory_Te11.md new file mode 100644 index 0000000000000000000000000000000000000000..c7837bfe64bee83d61de6da5d92378aabcc9e3bd --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Auditory_Te11.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area TE 1.1 (HESCHL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area TE 1.1 (HESCHL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-00 | task-archi_social_dir-pa_false_belief-mechanistic_video| +| sub-02 | ses-00 | dir-pa_false_belief-mechanistic_video| +| sub-02 | ses-00 | dir-pa_listening-reading| +| sub-02 | ses-00 | task-archi_standard_dir-pa_listening-reading| +| sub-09 | ses-04 | dir-ap_run-04_jabberwocky-pseudo| +| sub-09 | ses-04 | task-rsvp_language_dir-ap_run-04_jabberwocky-pseudo| +| sub-02 | ses-00 | task-archi_social_dir-ap_mechanistic_audio| +| sub-02 | ses-00 | dir-ap_mechanistic_audio| +| sub-02 | ses-00 | dir-ap_speech_sound| +| sub-02 | ses-00 | task-archi_social_dir-ap_speech_sound| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Auditory_Te12.md b/deploy/datasets/supplements/data/ibc/right_Auditory_Te12.md new file mode 100644 index 0000000000000000000000000000000000000000..eee47113483a160837c9c442a399822589ccd083 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Auditory_Te12.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area TE 1.2 (HESCHL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area TE 1.2 (HESCHL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-14 | dir-ap_run-03_we_all_space-time_cue| +| sub-01 | ses-14 | task-mtt_we_dir-ap_run-03_we_all_space-time_cue| +| sub-02 | ses-05 | task-hcp_wm_ffx_0back-2back| +| sub-02 | ses-05 | dir-ffx_0back-2back| +| sub-02 | ses-05 | 0back-2back| +| sub-02 | ses-06 | dir-ap_run-04_sentence-word| +| sub-02 | ses-06 | task-rsvp_language_dir-ap_run-04_sentence-word| +| sub-07 | ses-12 | task-mtt_we_dir-ap_run-03_we_eastside_event| +| sub-07 | ses-12 | dir-ap_run-03_we_eastside_event| +| sub-07 | ses-04 | task-archi_standard_dir-ap_sentences| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Bforebrain_123.md b/deploy/datasets/supplements/data/ibc/right_Bforebrain_123.md new file mode 100644 index 0000000000000000000000000000000000000000..7187e4f6e05d2e6e5d1cdf38f7577765d188223b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Bforebrain_123.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Ch 123 (Basal Forebrain) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Ch 123 (Basal Forebrain) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_complex-simple| +| sub-08 | ses-04 | dir-pa_run-02_complex-simple| +| sub-08 | ses-04 | complex-simple| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Bforebrain_4.md b/deploy/datasets/supplements/data/ibc/right_Bforebrain_4.md new file mode 100644 index 0000000000000000000000000000000000000000..5701225287097196ec463db7b697438aca40f979 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Bforebrain_4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Ch 4 (Basal Forebrain) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Ch 4 (Basal Forebrain) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_word_list| +| sub-06 | ses-00 | task-archi_standard_dir-ap_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Broca_44.md b/deploy/datasets/supplements/data/ibc/right_Broca_44.md new file mode 100644 index 0000000000000000000000000000000000000000..ebc550f315da194ea16c709cc536e99d30bc7c7f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Broca_44.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 44 (IFG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 44 (IFG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-12 | dir-pa_run-01_we_before-after_event| +| sub-07 | ses-12 | task-mtt_we_dir-pa_run-01_we_before-after_event| +| sub-08 | ses-00 | dir-ap_motor-cognitive| +| sub-08 | ses-00 | task-archi_standard_dir-ap_motor-cognitive| +| sub-11 | ses-12 | sn_after-before_event| +| sub-08 | ses-00 | dir-ffx_motor-cognitive| +| sub-08 | ses-00 | task-archi_standard_ffx_motor-cognitive| +| sub-08 | ses-00 | motor-cognitive| +| sub-06 | ses-17 | task-vstm_dir-ap_run-02_vstm_quadratic| +| sub-06 | ses-17 | dir-ap_run-02_vstm_quadratic| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Broca_45.md b/deploy/datasets/supplements/data/ibc/right_Broca_45.md new file mode 100644 index 0000000000000000000000000000000000000000..9fecd04cc64d43ef76f8837ebf4cb4ed2be4fa79 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Broca_45.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 45 (IFG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 45 (IFG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-12 | task-mtt_sn_dir-ap_run-03_sn_all_time-space_cue| +| sub-14 | ses-12 | dir-ap_run-03_sn_all_time-space_cue| +| sub-08 | ses-04 | dir-ap_run-05_complex-simple| +| sub-08 | ses-04 | task-rsvp_language_dir-ap_run-05_complex-simple| +| sub-11 | ses-03 | dir-ap_run-05_word-pseudo| +| sub-11 | ses-03 | task-rsvp_language_dir-ap_run-05_word-pseudo| +| sub-14 | ses-02 | task-hcp_motor_dir-pa_right_hand| +| sub-14 | ses-02 | dir-pa_right_hand| +| sub-02 | ses-01 | task-archi_emotional_dir-pa_trusty_and_intention-gender| +| sub-02 | ses-01 | dir-pa_trusty_and_intention-gender| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ndentd.md b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ndentd.md new file mode 100644 index 0000000000000000000000000000000000000000..66022b875b958f8269bd6df495a9f7b065ddf4aa --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ndentd.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Dorsal Dentate Nucleus (Cerebellum) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Dorsal Dentate Nucleus (Cerebellum) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-13 | ses-16 | task-pain_movie_dir-pa_movie_mental-pain| +| sub-13 | ses-16 | dir-pa_movie_mental-pain| +| sub-12 | ses-19 | vstm_quadratic| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ndentv.md b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ndentv.md new file mode 100644 index 0000000000000000000000000000000000000000..e95174e4e233dbd445f8f75247fc8d93e01509f1 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ndentv.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Ventral Dentate Nucleus (Cerebellum) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Ventral Dentate Nucleus (Cerebellum) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_word_list| +| sub-06 | ses-00 | task-archi_standard_dir-ap_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cerebellum_Nfast.md b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Nfast.md new file mode 100644 index 0000000000000000000000000000000000000000..12276e11d027ac7042f2c3c3d115a5040cf297f3 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Nfast.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Fastigial Nucleus (Cerebellum) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Fastigial Nucleus (Cerebellum) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-11 | we_after-before_event| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_word_list| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ninterp.md b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ninterp.md new file mode 100644 index 0000000000000000000000000000000000000000..2fb3b5fd90c7d1db89d77d14ab2d9a1c2608538a --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cerebellum_Ninterp.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Interposed Nucleus (Cerebellum) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Interposed Nucleus (Cerebellum) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| +| sub-13 | ses-00 | dir-pa_right-left_button_press| +| sub-14 | ses-04 | dir-ap_run-05_word_list| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_word_list| +| sub-06 | ses-00 | task-archi_standard_dir-ap_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_25.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_25.md new file mode 100644 index 0000000000000000000000000000000000000000..6e818ba9821f34ee63aee086b312f6044a0e1934 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_25.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 25 (sACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 25 (sACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-00 | dir-pa_triangle_mental-random| +| sub-06 | ses-00 | task-archi_social_dir-pa_triangle_mental-random| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_complex-simple| +| sub-08 | ses-04 | dir-pa_run-02_complex-simple| +| sub-05 | ses-15 | dir-pa_house_quadratic| +| sub-05 | ses-15 | task-preference_houses_dir-pa_house_quadratic| +| sub-01 | ses-07 | dir-ap_face_trusty-control| +| sub-01 | ses-07 | task-archi_emotional_dir-ap_face_trusty-control| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_33.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_33.md new file mode 100644 index 0000000000000000000000000000000000000000..b39a2e4f99d3c0e8c68cf39b6312de231cdc64c9 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_33.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 33 (ACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 33 (ACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-14 | task-mtt_we_dir-ap_run-03_we_all_time-space_cue| +| sub-01 | ses-14 | dir-ap_run-03_we_all_time-space_cue| +| sub-08 | ses-04 | task-rsvp_language_dir-pa_run-02_complex-simple| +| sub-08 | ses-04 | dir-pa_run-02_complex-simple| +| sub-15 | ses-15 | sn_space-time_event| +| sub-11 | ses-12 | dir-pa_run-01_sn_space-time_event| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_space-time_event| +| sub-06 | ses-04 | dir-pa_face_gender-control| +| sub-06 | ses-04 | task-archi_emotional_dir-pa_face_gender-control| +| sub-13 | ses-16 | dir-pa_movie_pain| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_p24ab.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_p24ab.md new file mode 100644 index 0000000000000000000000000000000000000000..3e72a34dbb4a6df33c3d53420c164eed4c9dcb53 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_p24ab.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area p24ab (pACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area p24ab (pACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-12 | dir-pa_run-01_sn_space-time_event| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_space-time_event| +| sub-06 | ses-11 | task-mtt_we_dir-pa_run-01_we_space-time_event| +| sub-06 | ses-11 | dir-pa_run-01_we_space-time_event| +| sub-06 | ses-04 | dir-pa_face_gender-control| +| sub-06 | ses-04 | task-archi_emotional_dir-pa_face_gender-control| +| sub-07 | ses-17 | task-enumeration_ffx_enumeration_quadratic| +| sub-07 | ses-17 | task-enumeration_dir-pa_enumeration_quadratic| +| sub-07 | ses-17 | dir-pa_enumeration_quadratic| +| sub-07 | ses-17 | dir-ffx_enumeration_quadratic| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_p24c.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_p24c.md new file mode 100644 index 0000000000000000000000000000000000000000..45dcdf9188a42049cb3a2958b6ea8b1a1ead87b4 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_p24c.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area p24c (pACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area p24c (pACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-16 | dir-ap_movie_mental-pain| +| sub-05 | ses-16 | task-pain_movie_dir-ap_movie_mental-pain| +| sub-07 | ses-17 | task-enumeration_ffx_enumeration_quadratic| +| sub-07 | ses-17 | task-enumeration_dir-pa_enumeration_quadratic| +| sub-07 | ses-17 | dir-pa_enumeration_quadratic| +| sub-07 | ses-17 | dir-ffx_enumeration_quadratic| +| sub-07 | ses-17 | enumeration_quadratic| +| sub-09 | ses-13 | dir-pa_run-01_sn_space-time_event| +| sub-09 | ses-13 | task-mtt_sn_dir-pa_run-01_sn_space-time_event| +| sub-06 | ses-11 | task-mtt_we_dir-pa_run-01_we_space-time_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_p32.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_p32.md new file mode 100644 index 0000000000000000000000000000000000000000..18835444258b4ba4ceee6f749eb4cf80724c8a7f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_p32.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area p32 (pACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area p32 (pACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-19 | task-preference_faces_dir-pa_face_quadratic| +| sub-01 | ses-19 | dir-pa_face_quadratic| +| sub-06 | ses-16 | dir-ffx_movie_mental-pain| +| sub-06 | ses-16 | task-pain_movie_ffx_movie_mental-pain| +| sub-06 | ses-16 | task-pain_movie_dir-pa_movie_mental-pain| +| sub-06 | ses-16 | movie_mental-pain| +| sub-06 | ses-16 | dir-pa_movie_mental-pain| +| sub-05 | ses-11 | task-mtt_we_dir-ap_run-03_we_all_time-space_cue| +| sub-05 | ses-11 | dir-ap_run-03_we_all_time-space_cue| +| sub-13 | ses-16 | dir-ap_movie_mental-pain| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_s24.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_s24.md new file mode 100644 index 0000000000000000000000000000000000000000..f86e95b3170cdc6c82ca3fc01b16eaeeaeb9bbde --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_s24.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area s24 (sACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area s24 (sACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-07 | dir-ap_face_trusty-control| +| sub-01 | ses-07 | task-archi_emotional_dir-ap_face_trusty-control| +| sub-15 | ses-02 | dir-pa_punishment-reward| +| sub-15 | ses-02 | task-hcp_gambling_dir-pa_punishment-reward| +| sub-09 | ses-02 | task-hcp_wm_dir-pa_0back-2back| +| sub-09 | ses-02 | dir-pa_0back-2back| +| sub-14 | ses-01 | task-archi_social_dir-ap_triangle_mental-random| +| sub-14 | ses-01 | dir-ap_triangle_mental-random| +| sub-11 | ses-12 | dir-pa_run-01_sn_space-time_event| +| sub-11 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_space-time_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Cingulum_s32.md b/deploy/datasets/supplements/data/ibc/right_Cingulum_s32.md new file mode 100644 index 0000000000000000000000000000000000000000..d334aeec0a9726c7dfbac2201574520e4060ee65 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Cingulum_s32.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area s32 (sACC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area s32 (sACC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-05 | task-archi_standard_dir-pa_cognitive-motor| +| sub-11 | ses-05 | dir-pa_cognitive-motor| +| sub-07 | ses-15 | task-preference_houses_dir-ap_house_linear| +| sub-07 | ses-15 | dir-ap_house_linear| +| sub-14 | ses-01 | task-archi_social_dir-ap_triangle_mental-random| +| sub-14 | ses-01 | dir-ap_triangle_mental-random| +| sub-07 | ses-12 | task-mtt_we_dir-pa_run-02_we_after-before_event| +| sub-07 | ses-12 | dir-pa_run-02_we_after-before_event| +| sub-13 | ses-03 | dir-ap_run-03_complex-simple| +| sub-13 | ses-03 | task-rsvp_language_dir-ap_run-03_complex-simple| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_FrontalPole_Fp1.md b/deploy/datasets/supplements/data/ibc/right_FrontalPole_Fp1.md new file mode 100644 index 0000000000000000000000000000000000000000..38b7da57b25955cf544a0bc694f2ee270b15b13f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_FrontalPole_Fp1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fp1 (FPole) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fp1 (FPole) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-12 | dir-pa_run-02_sn_space-time_event| +| sub-12 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_space-time_event| +| sub-14 | ses-21 | dir-pa_run-01_recognition_self-other| +| sub-14 | ses-21 | task-self_dir-pa_run-01_recognition_self-other| +| sub-14 | ses-21 | recognition_self-other| +| sub-11 | ses-03 | task-rsvp_language_dir-pa_run-01_word-pseudo| +| sub-11 | ses-03 | dir-pa_run-01_word-pseudo| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-02_complex| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-02_word_list| +| sub-05 | ses-03 | task-rsvp_language_dir-pa_run-02_simple| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_FrontalPole_Fp2.md b/deploy/datasets/supplements/data/ibc/right_FrontalPole_Fp2.md new file mode 100644 index 0000000000000000000000000000000000000000..022f579dfd39262615dc83b86436c0e589051167 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_FrontalPole_Fp2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fp2 (FPole) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fp2 (FPole) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-03 | dir-pa_face_trusty-control| +| sub-12 | ses-03 | task-archi_emotional_dir-pa_face_trusty-control| +| sub-14 | ses-16 | dir-ap_movie_mental-pain| +| sub-14 | ses-16 | task-pain_movie_dir-ap_movie_mental-pain| +| sub-13 | ses-11 | dir-pa_run-02_we_before-after_event| +| sub-13 | ses-11 | task-mtt_we_dir-pa_run-02_we_before-after_event| +| sub-02 | ses-04 | dir-ap_tongue| +| sub-02 | ses-04 | task-hcp_motor_dir-ap_tongue| +| sub-05 | ses-12 | dir-pa_run-02_sn_all_time_cue| +| sub-05 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_all_time_cue| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Hippocampus_DG.md b/deploy/datasets/supplements/data/ibc/right_Hippocampus_DG.md new file mode 100644 index 0000000000000000000000000000000000000000..e17ccbfcc93454c2152a3944d203394ae3ea9f99 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Hippocampus_DG.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in DG (Hippocampus) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in DG (Hippocampus) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-04 | dir-ap_run-03_jabberwocky-pseudo| +| sub-12 | ses-04 | task-rsvp_language_dir-ap_run-03_jabberwocky-pseudo| +| sub-12 | ses-00 | task-archi_standard_ffx_computation-sentences| +| sub-12 | ses-00 | dir-ffx_computation-sentences| +| sub-12 | ses-00 | computation-sentences| +| sub-13 | ses-11 | dir-ap_run-03_we_all_time-space_cue| +| sub-13 | ses-11 | task-mtt_we_dir-ap_run-03_we_all_time-space_cue| +| sub-15 | ses-06 | dir-ffx_food_quadratic| +| sub-15 | ses-06 | food_quadratic| +| sub-15 | ses-06 | task-preference_food_ffx_food_quadratic| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Hippocampus_HATA.md b/deploy/datasets/supplements/data/ibc/right_Hippocampus_HATA.md new file mode 100644 index 0000000000000000000000000000000000000000..f0a9ce6931a87b3dc02c03bac1903af19e93b172 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Hippocampus_HATA.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in HATA (Hippocampus) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in HATA (Hippocampus) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-01 | dir-pa_reward-punishment| +| sub-07 | ses-01 | task-hcp_gambling_dir-pa_reward-punishment| +| sub-05 | ses-11 | task-mtt_we_dir-pa_run-01_we_before-after_event| +| sub-05 | ses-11 | dir-pa_run-01_we_before-after_event| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| +| sub-07 | ses-03 | task-rsvp_language_dir-ap_run-04_jabberwocky| +| sub-13 | ses-04 | task-archi_standard_ffx_sentences| +| sub-14 | ses-01 | dir-pa_non_speech_sound| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Hippocampus_Subc.md b/deploy/datasets/supplements/data/ibc/right_Hippocampus_Subc.md new file mode 100644 index 0000000000000000000000000000000000000000..ecc4f1f45f2aaa323bbdfbbfdb299d017d48804c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Hippocampus_Subc.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Subiculum (Hippocampus) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Subiculum (Hippocampus) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-12 | task-mtt_we_dir-ap_run-03_we_all_time-space_cue| +| sub-07 | ses-12 | dir-ap_run-03_we_all_time-space_cue| +| sub-05 | ses-11 | task-mtt_we_dir-pa_run-01_we_before-after_event| +| sub-05 | ses-11 | dir-pa_run-01_we_before-after_event| +| sub-15 | ses-04 | task-rsvp_language_dir-pa_run-01_sentence-word| +| sub-15 | ses-04 | dir-pa_run-01_sentence-word| +| sub-12 | ses-00 | task-archi_standard_ffx_computation-sentences| +| sub-12 | ses-00 | dir-ffx_computation-sentences| +| sub-12 | ses-00 | computation-sentences| +| sub-11 | ses-11 | dir-pa_run-02_eastside-westside_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PF.md b/deploy/datasets/supplements/data/ibc/right_IPL_PF.md new file mode 100644 index 0000000000000000000000000000000000000000..bffaa29aa333ada992e62c66a18ad5ffee3cbd5d --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PF.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PF (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PF (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_all_event_response| +| sub-04 | ses-12 | dir-pa_run-01_sn_all_event_response| +| sub-12 | ses-00 | dir-pa_sentences-computation| +| sub-12 | ses-00 | task-archi_standard_dir-pa_sentences-computation| +| sub-15 | ses-01 | task-archi_social_dir-pa_speech-non_speech| +| sub-15 | ses-01 | dir-pa_speech-non_speech| +| sub-04 | ses-11 | we_all_event_response| +| sub-04 | ses-01 | task-hcp_language_ffx_math-story| +| sub-04 | ses-01 | math-story| +| sub-04 | ses-01 | dir-ffx_math-story| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PFcm.md b/deploy/datasets/supplements/data/ibc/right_IPL_PFcm.md new file mode 100644 index 0000000000000000000000000000000000000000..fce15cfba95c3f62412cdd5dbfde46c640e34ef0 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PFcm.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFcm (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFcm (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-01 | dir-ap_reward-punishment| +| sub-06 | ses-01 | task-hcp_gambling_dir-ap_reward-punishment| +| sub-09 | ses-04 | dir-ap_run-05_probe| +| sub-09 | ses-04 | task-rsvp_language_dir-ap_run-05_probe| +| sub-08 | ses-11 | dir-pa_run-01_we_after-before_event| +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-01_we_after-before_event| +| sub-15 | ses-06 | task-preference_food_dir-pa_food_linear| +| sub-15 | ses-06 | dir-pa_food_linear| +| sub-13 | ses-03 | dir-ap_run-05_jabberwocky-pseudo| +| sub-13 | ses-03 | task-rsvp_language_dir-ap_run-05_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PFm.md b/deploy/datasets/supplements/data/ibc/right_IPL_PFm.md new file mode 100644 index 0000000000000000000000000000000000000000..3a5181ede9d541bd432cdc1bb0d4a0c5229b8b9e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PFm.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFm (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFm (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-00 | dir-ffx_false_belief-mechanistic| +| sub-07 | ses-00 | false_belief-mechanistic| +| sub-07 | ses-00 | task-archi_social_ffx_false_belief-mechanistic| +| sub-07 | ses-00 | task-archi_social_dir-ap_false_belief-mechanistic| +| sub-07 | ses-00 | dir-ap_false_belief-mechanistic| +| sub-13 | ses-16 | task-emotional_pain_dir-pa_emotional-physical_pain| +| sub-13 | ses-16 | dir-pa_emotional-physical_pain| +| sub-12 | ses-11 | dir-pa_run-02_we_time-space_event| +| sub-12 | ses-11 | task-mtt_we_dir-pa_run-02_we_time-space_event| +| sub-08 | ses-01 | task-archi_spatial_dir-pa_hand-side| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PFop.md b/deploy/datasets/supplements/data/ibc/right_IPL_PFop.md new file mode 100644 index 0000000000000000000000000000000000000000..8129284f3c20658768b095604f62b8cd6d26b960 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PFop.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFop (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFop (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-11 | we_all_time-space_cue| +| sub-02 | ses-06 | dir-ap_run-04_jabberwocky-pseudo| +| sub-02 | ses-06 | task-rsvp_language_dir-ap_run-04_jabberwocky-pseudo| +| sub-02 | ses-01 | task-archi_standard_dir-pa_motor-cognitive| +| sub-02 | ses-01 | dir-pa_motor-cognitive| +| sub-11 | ses-11 | task-mtt_we_dir-pa_run-01_westside-eastside_event| +| sub-11 | ses-11 | dir-pa_run-01_westside-eastside_event| +| sub-13 | ses-01 | dir-pa_tongue| +| sub-13 | ses-01 | task-hcp_motor_dir-pa_tongue| +| sub-13 | ses-01 | dir-ffx_tongue| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PFt.md b/deploy/datasets/supplements/data/ibc/right_IPL_PFt.md new file mode 100644 index 0000000000000000000000000000000000000000..d6824ec79321741fe7d1a6266101613b89980ae1 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PFt.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PFt (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PFt (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-04 | task-archi_spatial_dir-pa_hand-side| +| sub-07 | ses-04 | dir-pa_hand-side| +| sub-11 | ses-11 | task-mtt_we_dir-pa_run-01_westside-eastside_event| +| sub-11 | ses-11 | dir-pa_run-01_westside-eastside_event| +| sub-02 | ses-04 | dir-pa_math-story| +| sub-02 | ses-04 | task-hcp_language_dir-pa_math-story| +| sub-04 | ses-01 | task-hcp_language_ffx_math-story| +| sub-04 | ses-01 | math-story| +| sub-04 | ses-01 | dir-ffx_math-story| +| sub-02 | ses-00 | dir-pa_motor-cognitive| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PGa.md b/deploy/datasets/supplements/data/ibc/right_IPL_PGa.md new file mode 100644 index 0000000000000000000000000000000000000000..6b8d576e663945c9c306da91abdbf238e0a9ce84 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PGa.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PGa (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PGa (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-17 | task-theory_of_mind_ffx_belief-photo| +| sub-09 | ses-17 | belief-photo| +| sub-09 | ses-17 | dir-ffx_belief-photo| +| sub-01 | ses-24 | recognition_self-other| +| sub-09 | ses-17 | dir-ap_belief-photo| +| sub-09 | ses-17 | task-theory_of_mind_dir-ap_belief-photo| +| sub-05 | ses-16 | task-theory_of_mind_dir-ap_belief-photo| +| sub-05 | ses-16 | dir-ap_belief-photo| +| sub-08 | ses-01 | task-archi_social_dir-pa_speech-non_speech| +| sub-08 | ses-01 | dir-pa_speech-non_speech| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_IPL_PGp.md b/deploy/datasets/supplements/data/ibc/right_IPL_PGp.md new file mode 100644 index 0000000000000000000000000000000000000000..1209c28c6b34470acc9fe99db96882ce2d7ceeaa --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_IPL_PGp.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area PGp (IPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area PGp (IPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-17 | dir-ffx_movie_mental-pain| +| sub-09 | ses-17 | movie_mental-pain| +| sub-09 | ses-17 | task-pain_movie_ffx_movie_mental-pain| +| sub-09 | ses-17 | task-pain_movie_dir-ap_movie_mental-pain| +| sub-09 | ses-17 | dir-ap_movie_mental-pain| +| sub-02 | ses-01 | task-archi_emotional_dir-pa_face_trusty-control| +| sub-02 | ses-01 | dir-pa_face_trusty-control| +| sub-09 | ses-00 | task-archi_standard_ffx_cognitive-motor| +| sub-09 | ses-00 | dir-pa_cognitive-motor| +| sub-09 | ses-00 | cognitive-motor| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Insula_Id1.md b/deploy/datasets/supplements/data/ibc/right_Insula_Id1.md new file mode 100644 index 0000000000000000000000000000000000000000..f47fe07682449e7750f8472dfb7a08c2d7361426 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Insula_Id1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Id1 (Insula) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Id1 (Insula) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-00 | task-archi_standard_dir-pa_sentences-computation| +| sub-05 | ses-00 | dir-pa_sentences-computation| +| sub-15 | ses-06 | task-preference_houses_ffx_house_quadratic| +| sub-15 | ses-06 | house_quadratic| +| sub-15 | ses-06 | dir-ffx_house_quadratic| +| sub-15 | ses-06 | task-preference_houses_dir-pa_house_quadratic| +| sub-15 | ses-06 | dir-pa_house_quadratic| +| sub-08 | ses-04 | task-rsvp_language_dir-ap_run-04_sentence-jabberwocky| +| sub-08 | ses-04 | dir-ap_run-04_sentence-jabberwocky| +| sub-02 | ses-06 | task-rsvp_language_dir-ap_run-03_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Insula_Id7.md b/deploy/datasets/supplements/data/ibc/right_Insula_Id7.md new file mode 100644 index 0000000000000000000000000000000000000000..a5977e2af9d6fcb968baff85bb70048eb5cd874f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Insula_Id7.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Id7 (Insula) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Id7 (Insula) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-01 | task-archi_social_dir-ap_triangle_mental-random| +| sub-02 | ses-01 | dir-ap_triangle_mental-random| +| sub-09 | ses-13 | dir-pa_run-02_sn_all_time-space_cue| +| sub-09 | ses-13 | task-mtt_sn_dir-pa_run-02_sn_all_time-space_cue| +| sub-02 | ses-00 | false_belief-mechanistic| +| sub-02 | ses-00 | task-archi_social_ffx_false_belief-mechanistic| +| sub-02 | ses-00 | dir-ffx_false_belief-mechanistic| +| sub-15 | ses-01 | task-archi_emotional_dir-ap_face_trusty-gender| +| sub-15 | ses-01 | dir-ap_face_trusty-gender| +| sub-07 | ses-17 | task-vstm_dir-ap_run-02_vstm_quadratic| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Insula_Ig1.md b/deploy/datasets/supplements/data/ibc/right_Insula_Ig1.md new file mode 100644 index 0000000000000000000000000000000000000000..f49f7ffd5ff34660f4c8f577dfe7d4799a53e1e7 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Insula_Ig1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Ig1 (Insula) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Ig1 (Insula) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-05 | speech-non_speech| +| sub-09 | ses-05 | task-archi_social_ffx_speech-non_speech| +| sub-09 | ses-05 | dir-ffx_speech-non_speech| +| sub-09 | ses-05 | dir-pa_speech-non_speech| +| sub-09 | ses-05 | task-archi_social_dir-pa_speech-non_speech| +| sub-02 | ses-00 | task-archi_social_dir-pa_false_belief-mechanistic_video| +| sub-02 | ses-00 | dir-pa_false_belief-mechanistic_video| +| sub-07 | ses-00 | dir-pa_triangle_mental-random| +| sub-07 | ses-00 | task-archi_social_dir-pa_triangle_mental-random| +| sub-01 | ses-04 | 2back_body| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Insula_Ig2.md b/deploy/datasets/supplements/data/ibc/right_Insula_Ig2.md new file mode 100644 index 0000000000000000000000000000000000000000..1aae26e69e8512bdf2f3f02bf371bd15e7c696c0 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Insula_Ig2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Ig2 (Insula) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Ig2 (Insula) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-00 | task-archi_social_dir-pa_false_belief-mechanistic_video| +| sub-02 | ses-00 | dir-pa_false_belief-mechanistic_video| +| sub-09 | ses-05 | speech-non_speech| +| sub-09 | ses-05 | task-archi_social_ffx_speech-non_speech| +| sub-09 | ses-05 | dir-ffx_speech-non_speech| +| sub-09 | ses-05 | dir-pa_speech-non_speech| +| sub-09 | ses-05 | task-archi_social_dir-pa_speech-non_speech| +| sub-01 | ses-04 | 2back_body| +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-13 | ses-17 | dir-pa_enumeration_linear| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Motor_4a.md b/deploy/datasets/supplements/data/ibc/right_Motor_4a.md new file mode 100644 index 0000000000000000000000000000000000000000..83b350de12d7e504a0e75a07a648a50766ce4344 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Motor_4a.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 4a (PreCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 4a (PreCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-04 | task-rsvp_language_dir-ap_run-03_jabberwocky-consonant_string| +| sub-14 | ses-04 | dir-ap_run-03_jabberwocky-consonant_string| +| sub-13 | ses-01 | task-hcp_motor_dir-pa_left_foot-avg| +| sub-13 | ses-01 | dir-pa_left_foot-avg| +| sub-13 | ses-01 | task-hcp_motor_ffx_left_foot-avg| +| sub-13 | ses-01 | left_foot-avg| +| sub-13 | ses-01 | dir-ffx_left_foot-avg| +| sub-08 | ses-02 | dir-ap_left_foot| +| sub-08 | ses-02 | task-hcp_motor_dir-ap_left_foot| +| sub-04 | ses-01 | dir-ap_left_foot-avg| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Motor_4p.md b/deploy/datasets/supplements/data/ibc/right_Motor_4p.md new file mode 100644 index 0000000000000000000000000000000000000000..26d26b1f07f01705bc784a81eb7abcb43c75b611 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Motor_4p.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 4p (PreCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 4p (PreCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-01 | task-archi_standard_dir-ap_left-right_button_press| +| sub-02 | ses-01 | dir-ap_left-right_button_press| +| sub-02 | ses-01 | task-archi_standard_ffx_video_left_button_press| +| sub-02 | ses-01 | video_left_button_press| +| sub-02 | ses-01 | dir-ffx_video_left_button_press| +| sub-14 | ses-02 | task-hcp_motor_dir-ap_left_hand-avg| +| sub-14 | ses-02 | dir-ap_left_hand-avg| +| sub-13 | ses-03 | dir-ap_run-04_sentence-word| +| sub-13 | ses-03 | task-rsvp_language_dir-ap_run-04_sentence-word| +| sub-13 | ses-00 | dir-pa_left-right_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_OFC_Fo1.md b/deploy/datasets/supplements/data/ibc/right_OFC_Fo1.md new file mode 100644 index 0000000000000000000000000000000000000000..212904f618d37880f4205b0f38a43b249802be08 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_OFC_Fo1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fo1 (OFC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fo1 (OFC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-03 | task-rsvp_language_dir-pa_run-01_complex-simple| +| sub-04 | ses-03 | dir-pa_run-01_complex-simple| +| sub-08 | ses-00 | task-archi_social_ffx_false_belief-mechanistic_audio| +| sub-08 | ses-00 | false_belief-mechanistic_audio| +| sub-08 | ses-00 | dir-ffx_false_belief-mechanistic_audio| +| sub-12 | ses-02 | dir-ap_match| +| sub-12 | ses-02 | task-hcp_relational_dir-ap_match| +| sub-12 | ses-03 | dir-ffx_false_belief-mechanistic_video| +| sub-12 | ses-03 | task-archi_social_ffx_false_belief-mechanistic_video| +| sub-12 | ses-03 | false_belief-mechanistic_video| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_OFC_Fo2.md b/deploy/datasets/supplements/data/ibc/right_OFC_Fo2.md new file mode 100644 index 0000000000000000000000000000000000000000..8880c99f4afa3da144239166919852df81a07c1f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_OFC_Fo2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fo2 (OFC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fo2 (OFC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-09 | ses-18 | enumeration_quadratic| +| sub-09 | ses-18 | task-enumeration_dir-ap_enumeration_quadratic| +| sub-09 | ses-18 | dir-ffx_enumeration_quadratic| +| sub-09 | ses-18 | dir-ap_enumeration_quadratic| +| sub-09 | ses-18 | task-enumeration_ffx_enumeration_quadratic| +| sub-07 | ses-11 | task-mtt_sn_dir-ap_run-03_sn_all_event_response| +| sub-07 | ses-11 | dir-ap_run-03_sn_all_event_response| +| sub-01 | ses-05 | task-rsvp_language_dir-pa_run-02_complex-simple| +| sub-01 | ses-05 | dir-pa_run-02_complex-simple| +| sub-06 | ses-00 | dir-pa_triangle_mental-random| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_OFC_Fo3.md b/deploy/datasets/supplements/data/ibc/right_OFC_Fo3.md new file mode 100644 index 0000000000000000000000000000000000000000..60df7403183eaff41d69c1d8ee4ea3a2983573b9 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_OFC_Fo3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area Fo3 (OFC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area Fo3 (OFC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-02 | dir-ap_shape-face| +| sub-14 | ses-02 | task-hcp_emotion_dir-ap_shape-face| +| sub-06 | ses-04 | dir-ap_computation-sentences| +| sub-06 | ses-04 | task-archi_standard_dir-ap_computation-sentences| +| sub-06 | ses-02 | task-hcp_wm_dir-pa_2back_tools| +| sub-06 | ses-02 | dir-pa_2back_tools| +| sub-07 | ses-11 | dir-ap_run-03_sn_all_time-space_cue| +| sub-07 | ses-11 | task-mtt_sn_dir-ap_run-03_sn_all_time-space_cue| +| sub-04 | ses-12 | dir-pa_run-01_sn_time-space_event| +| sub-04 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_time-space_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Operculum_OP1.md b/deploy/datasets/supplements/data/ibc/right_Operculum_OP1.md new file mode 100644 index 0000000000000000000000000000000000000000..228472401647b8653b0172a66a1fa080fb089575 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Operculum_OP1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP1 (POperc) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP1 (POperc) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-04 | dir-ap_horizontal_checkerboard| +| sub-06 | ses-04 | task-archi_standard_dir-ap_horizontal_checkerboard| +| sub-01 | ses-15 | task-mtt_sn_dir-pa_run-01_southside-northside_event| +| sub-01 | ses-15 | dir-pa_run-01_southside-northside_event| +| sub-14 | ses-03 | dir-ap_mental-random| +| sub-14 | ses-03 | task-hcp_social_dir-ap_mental-random| +| sub-14 | ses-04 | dir-pa_run-02_probe| +| sub-14 | ses-04 | task-rsvp_language_dir-pa_run-02_probe| +| sub-01 | ses-07 | task-archi_standard_dir-pa_audio_left_button_press| +| sub-01 | ses-07 | dir-ffx_audio_left_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Operculum_OP2.md b/deploy/datasets/supplements/data/ibc/right_Operculum_OP2.md new file mode 100644 index 0000000000000000000000000000000000000000..c13bc2c226a859f69157700d18c609c33922e698 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Operculum_OP2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP2 (POperc) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP2 (POperc) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-00 | dir-pa_triangle_mental-random| +| sub-07 | ses-00 | task-archi_social_dir-pa_triangle_mental-random| +| sub-09 | ses-05 | speech-non_speech| +| sub-09 | ses-05 | task-archi_social_ffx_speech-non_speech| +| sub-09 | ses-05 | dir-ffx_speech-non_speech| +| sub-09 | ses-05 | dir-pa_speech-non_speech| +| sub-09 | ses-05 | task-archi_social_dir-pa_speech-non_speech| +| sub-11 | ses-16 | dir-ap_face_linear| +| sub-11 | ses-16 | task-preference_faces_dir-ap_face_linear| +| sub-01 | ses-05 | task-rsvp_language_dir-ap_run-04_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Operculum_OP3.md b/deploy/datasets/supplements/data/ibc/right_Operculum_OP3.md new file mode 100644 index 0000000000000000000000000000000000000000..cd0facda70571ee87cc6a9243ba837bc0d5aee19 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Operculum_OP3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP3 (POperc) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP3 (POperc) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-05 | task-rsvp_language_dir-ap_run-04_jabberwocky-pseudo| +| sub-01 | ses-05 | dir-ap_run-04_jabberwocky-pseudo| +| sub-11 | ses-16 | dir-ap_face_linear| +| sub-11 | ses-16 | task-preference_faces_dir-ap_face_linear| +| sub-06 | ses-00 | dir-ap_speech-non_speech| +| sub-06 | ses-00 | task-archi_social_dir-ap_speech-non_speech| +| sub-09 | ses-13 | dir-pa_run-02_sn_before-after_event| +| sub-09 | ses-13 | task-mtt_sn_dir-pa_run-02_sn_before-after_event| +| sub-06 | ses-11 | task-mtt_we_dir-ap_run-03_westside-eastside_event| +| sub-06 | ses-11 | dir-ap_run-03_westside-eastside_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Operculum_OP4.md b/deploy/datasets/supplements/data/ibc/right_Operculum_OP4.md new file mode 100644 index 0000000000000000000000000000000000000000..982242396eeb67dabe6886cd5099cf5787a726c1 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Operculum_OP4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area OP4 (POperc) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area OP4 (POperc) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-11 | task-mtt_we_dir-ap_run-03_we_space_event| +| sub-11 | ses-11 | dir-ap_run-03_we_space_event| +| sub-06 | ses-00 | dir-pa_false_belief-mechanistic_audio| +| sub-11 | ses-11 | dir-pa_run-02_we_average_reference| +| sub-06 | ses-00 | task-archi_social_dir-pa_false_belief-mechanistic_audio| +| sub-11 | ses-11 | task-mtt_we_dir-pa_run-02_we_average_reference| +| sub-11 | ses-05 | task-archi_social_dir-ap_false_belief_audio| +| sub-11 | ses-05 | dir-ap_false_belief_audio| +| sub-06 | ses-02 | dir-pa_0back_place| +| sub-06 | ses-02 | task-hcp_wm_dir-pa_0back_place| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PIPS_hIP4.md b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP4.md new file mode 100644 index 0000000000000000000000000000000000000000..9e547f62c5ec48a117243794a4f5b4d6612d7dea --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP4 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP4 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-03 | task-hcp_wm_ffx_place-avg| +| sub-08 | ses-03 | place-avg| +| sub-08 | ses-03 | task-hcp_wm_dir-ap_place-avg| +| sub-08 | ses-03 | dir-ffx_place-avg| +| sub-08 | ses-03 | dir-ap_place-avg| +| sub-05 | ses-02 | task-hcp_wm_dir-ap_0back-2back| +| sub-05 | ses-02 | dir-ap_0back-2back| +| sub-06 | ses-04 | task-archi_social_dir-ap_triangle_mental| +| sub-06 | ses-04 | dir-ap_triangle_mental| +| sub-12 | ses-02 | dir-pa_place-avg| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PIPS_hIP5.md b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP5.md new file mode 100644 index 0000000000000000000000000000000000000000..3f2564f615724ae3831587a248857ca031f2a3d2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP5.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP5 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP5 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_time-space_event| +| sub-05 | ses-12 | dir-pa_run-02_sn_time-space_event| +| sub-09 | ses-05 | task-archi_standard_ffx_video_computation| +| sub-09 | ses-05 | dir-ffx_video_computation| +| sub-09 | ses-05 | video_computation| +| sub-14 | ses-12 | dir-pa_run-01_sn_after-before_event| +| sub-14 | ses-12 | task-mtt_sn_dir-pa_run-01_sn_after-before_event| +| sub-05 | ses-12 | sn_time-space_event| +| sub-09 | ses-05 | task-archi_standard_dir-ap_video_computation| +| sub-09 | ses-05 | dir-ap_video_computation| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PIPS_hIP6.md b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP6.md new file mode 100644 index 0000000000000000000000000000000000000000..b2242cabc3dfff9e98f982e2e037feb0631ce044 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP6.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP6 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP6 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-00 | task-archi_social_ffx_false_belief-mechanistic_video| +| sub-01 | ses-00 | dir-ffx_false_belief-mechanistic_video| +| sub-01 | ses-00 | false_belief-mechanistic_video| +| sub-09 | ses-01 | math-story| +| sub-09 | ses-01 | task-hcp_language_ffx_math-story| +| sub-09 | ses-01 | dir-ffx_math-story| +| sub-08 | ses-00 | task-archi_standard_dir-ap_computation| +| sub-08 | ses-00 | dir-ap_computation| +| sub-08 | ses-11 | dir-pa_run-02_we_all_event_response| +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-02_we_all_event_response| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PIPS_hIP7.md b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP7.md new file mode 100644 index 0000000000000000000000000000000000000000..3f4d37aa4a22886e40c2bf7754ec81a6c17ad4d9 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP7.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP7 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP7 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-02 | ses-01 | dir-pa_triangle_random| +| sub-02 | ses-01 | task-archi_social_dir-pa_triangle_random| +| sub-02 | ses-01 | dir-ap_hand-side| +| sub-02 | ses-01 | task-archi_spatial_dir-ap_hand-side| +| sub-01 | ses-07 | dir-pa_cognitive-motor| +| sub-01 | ses-07 | task-archi_standard_dir-pa_cognitive-motor| +| sub-01 | ses-07 | dir-ffx_cognitive-motor| +| sub-01 | ses-07 | task-archi_standard_ffx_cognitive-motor| +| sub-01 | ses-07 | cognitive-motor| +| sub-12 | ses-16 | dir-ap_house_linear| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PIPS_hIP8.md b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP8.md new file mode 100644 index 0000000000000000000000000000000000000000..5bd0d8ae6d198ee135fa1f2d8fdf258863b7a83f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PIPS_hIP8.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP8 (IPS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hIP8 (IPS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-04 | task-rsvp_language_dir-ap_run-03_consonant_string| +| sub-08 | ses-04 | dir-ap_run-03_consonant_string| +| sub-06 | ses-04 | task-archi_standard_dir-pa_video_computation| +| sub-06 | ses-04 | video_computation| +| sub-06 | ses-04 | dir-pa_video_computation| +| sub-06 | ses-04 | task-archi_standard_ffx_video_computation| +| sub-06 | ses-04 | dir-ffx_video_computation| +| sub-04 | ses-04 | task-archi_standard_ffx_cognitive-motor| +| sub-04 | ses-04 | cognitive-motor| +| sub-04 | ses-04 | dir-ffx_cognitive-motor| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PIPS_hPO1.md b/deploy/datasets/supplements/data/ibc/right_PIPS_hPO1.md new file mode 100644 index 0000000000000000000000000000000000000000..bc15fdb3fd61c090068325fc4e5b386e1b887a70 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PIPS_hPO1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hPO1 (POS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hPO1 (POS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-04 | task-archi_social_dir-ap_triangle_random| +| sub-04 | ses-04 | dir-ap_triangle_random| +| sub-05 | ses-02 | task-hcp_wm_ffx_0back-2back| +| sub-05 | ses-02 | dir-ffx_0back-2back| +| sub-05 | ses-02 | 0back-2back| +| sub-04 | ses-02 | random| +| sub-04 | ses-02 | dir-ffx_random| +| sub-04 | ses-02 | task-hcp_social_ffx_random| +| sub-09 | ses-01 | task-hcp_emotion_dir-ap_shape| +| sub-09 | ses-01 | dir-ap_shape| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PSC_1.md b/deploy/datasets/supplements/data/ibc/right_PSC_1.md new file mode 100644 index 0000000000000000000000000000000000000000..697ec7fcc80f67f0ff36df618771cbe68a7cb5fb --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PSC_1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 1 (PostCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 1 (PostCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-00 | dir-pa_video_left_button_press| +| sub-12 | ses-00 | task-archi_standard_dir-pa_video_left_button_press| +| sub-12 | ses-00 | task-archi_standard_dir-pa_left-right_button_press| +| sub-12 | ses-00 | dir-pa_left-right_button_press| +| sub-12 | ses-00 | dir-ffx_left-right_button_press| +| sub-12 | ses-00 | task-archi_standard_ffx_left-right_button_press| +| sub-12 | ses-00 | left-right_button_press| +| sub-14 | ses-12 | task-mtt_sn_dir-ap_run-03_sn_all_time_cue| +| sub-14 | ses-12 | dir-ap_run-03_sn_all_time_cue| +| sub-04 | ses-04 | dir-ffx_left-right_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PSC_2.md b/deploy/datasets/supplements/data/ibc/right_PSC_2.md new file mode 100644 index 0000000000000000000000000000000000000000..df45d82c440635d6331116b6084fc9b4b62a6f05 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PSC_2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 2 (PostCS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 2 (PostCS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-00 | task-archi_spatial_dir-pa_hand-side| +| sub-12 | ses-00 | dir-pa_hand-side| +| sub-09 | ses-05 | dir-ap_video_left_button_press| +| sub-09 | ses-05 | task-archi_standard_dir-ap_video_left_button_press| +| sub-14 | ses-11 | dir-ap_run-03_westside-eastside_event| +| sub-14 | ses-11 | task-mtt_we_dir-ap_run-03_westside-eastside_event| +| sub-02 | ses-01 | dir-ap_motor-cognitive| +| sub-02 | ses-01 | task-archi_standard_dir-ap_motor-cognitive| +| sub-12 | ses-03 | task-archi_standard_ffx_computation-sentences| +| sub-12 | ses-03 | dir-pa_computation-sentences| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PSC_3a.md b/deploy/datasets/supplements/data/ibc/right_PSC_3a.md new file mode 100644 index 0000000000000000000000000000000000000000..a8e3ffe7b6b6604e3b9f41248561745bcd85d9dd --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PSC_3a.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 3a (PostCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 3a (PostCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-02 | task-hcp_motor_dir-ap_tongue-avg| +| sub-08 | ses-02 | task-hcp_motor_dir-ap_tongue| +| sub-08 | ses-02 | dir-ap_tongue| +| sub-08 | ses-02 | dir-ap_tongue-avg| +| sub-01 | ses-00 | task-archi_standard_dir-ap_left-right_button_press| +| sub-01 | ses-00 | dir-ap_left-right_button_press| +| sub-07 | ses-12 | we_time-space_event| +| sub-08 | ses-02 | tongue| +| sub-08 | ses-02 | dir-ffx_tongue| +| sub-08 | ses-02 | dir-ffx_tongue-avg| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_PSC_3b.md b/deploy/datasets/supplements/data/ibc/right_PSC_3b.md new file mode 100644 index 0000000000000000000000000000000000000000..347c29dea169ee7614c15a88f488bf45f7be7f56 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_PSC_3b.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 3b (PostCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 3b (PostCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-08 | ses-11 | dir-pa_run-01_westside-eastside_event| +| sub-08 | ses-11 | task-mtt_we_dir-pa_run-01_westside-eastside_event| +| sub-01 | ses-15 | task-mtt_sn_dir-ap_run-03_sn_before-after_event| +| sub-01 | ses-15 | dir-ap_run-03_sn_before-after_event| +| sub-11 | ses-03 | task-rsvp_language_dir-pa_run-02_jabberwocky-pseudo| +| sub-11 | ses-03 | dir-pa_run-02_jabberwocky-pseudo| +| sub-04 | ses-04 | dir-pa_left-right_button_press| +| sub-04 | ses-04 | task-archi_standard_dir-pa_left-right_button_press| +| sub-01 | ses-24 | dir-pa_run-01_recognition_self-other| +| sub-01 | ses-24 | task-self_dir-pa_run-01_recognition_self-other| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Premotor_6d1.md b/deploy/datasets/supplements/data/ibc/right_Premotor_6d1.md new file mode 100644 index 0000000000000000000000000000000000000000..cc9f9654af80780095e674160ef22b29a04b72c1 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Premotor_6d1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6d1 (PreCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6d1 (PreCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-15 | dir-pa_face_quadratic| +| sub-05 | ses-15 | task-preference_faces_dir-pa_face_quadratic| +| sub-04 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_all_space-time_cue| +| sub-04 | ses-12 | dir-pa_run-02_sn_all_space-time_cue| +| sub-15 | ses-14 | dir-pa_run-02_westside-eastside_event| +| sub-15 | ses-14 | task-mtt_we_dir-pa_run-02_westside-eastside_event| +| sub-11 | ses-05 | task-archi_standard_dir-pa_left-right_button_press| +| sub-11 | ses-05 | dir-pa_video_left_button_press| +| sub-11 | ses-05 | dir-pa_left-right_button_press| +| sub-11 | ses-05 | task-archi_standard_dir-pa_video_left_button_press| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Premotor_6d2.md b/deploy/datasets/supplements/data/ibc/right_Premotor_6d2.md new file mode 100644 index 0000000000000000000000000000000000000000..804e5a8b22f2fd06e9fefd7e253154313c712ec5 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Premotor_6d2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6d2 (PreCG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6d2 (PreCG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-04 | task-hcp_relational_ffx_relational-match| +| sub-01 | ses-04 | dir-ffx_relational-match| +| sub-01 | ses-04 | relational-match| +| sub-15 | ses-05 | task-pain_movie_dir-ap_movie_pain| +| sub-15 | ses-05 | dir-ap_movie_pain| +| sub-04 | ses-01 | task-hcp_motor_ffx_right_foot| +| sub-04 | ses-01 | right_foot| +| sub-04 | ses-01 | dir-ffx_right_foot| +| sub-04 | ses-01 | task-hcp_motor_dir-pa_right_foot| +| sub-04 | ses-01 | dir-pa_right_foot| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Premotor_6d3.md b/deploy/datasets/supplements/data/ibc/right_Premotor_6d3.md new file mode 100644 index 0000000000000000000000000000000000000000..7ab993e9da9f9d2d70d1e344a30f5bced4b6075b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Premotor_6d3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6d3 (SFS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6d3 (SFS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-14 | ses-11 | we_before-after_event| +| sub-11 | ses-03 | dir-ap_run-04_complex-simple| +| sub-11 | ses-03 | task-rsvp_language_dir-ap_run-04_complex-simple| +| sub-07 | ses-02 | task-hcp_wm_dir-pa_2back-0back| +| sub-07 | ses-02 | dir-pa_2back-0back| +| sub-13 | ses-04 | dir-pa_hand-side| +| sub-13 | ses-04 | task-archi_spatial_dir-pa_hand-side| +| sub-13 | ses-00 | dir-pa_reading-listening| +| sub-13 | ses-00 | task-archi_standard_dir-pa_reading-listening| +| sub-07 | ses-03 | dir-ap_run-05_word-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_5Ci.md b/deploy/datasets/supplements/data/ibc/right_SPL_5Ci.md new file mode 100644 index 0000000000000000000000000000000000000000..923a954521e30dee161cd038567ebaa131a8f62f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_5Ci.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 5Ci (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 5Ci (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-00 | task-archi_standard_dir-ap_computation-sentences| +| sub-12 | ses-00 | dir-ap_computation-sentences| +| sub-05 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_before-after_event| +| sub-05 | ses-12 | dir-pa_run-02_sn_before-after_event| +| sub-11 | ses-05 | task-archi_emotional_dir-ap_face_trusty-gender| +| sub-11 | ses-05 | dir-ap_face_trusty-gender| +| sub-13 | ses-12 | dir-pa_run-01_southside-northside_event| +| sub-13 | ses-12 | task-mtt_sn_dir-pa_run-01_southside-northside_event| +| sub-14 | ses-21 | dir-pa_run-02_recognition_self-other| +| sub-14 | ses-21 | task-self_dir-pa_run-02_recognition_self-other| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_5L.md b/deploy/datasets/supplements/data/ibc/right_SPL_5L.md new file mode 100644 index 0000000000000000000000000000000000000000..2cd6310db7d35fd0201765251388ce64146f0439 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_5L.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 5L (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 5L (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-01 | task-hcp_motor_ffx_left_foot-avg| +| sub-11 | ses-01 | task-hcp_motor_dir-ap_left_foot-avg| +| sub-11 | ses-01 | dir-ffx_left_foot-avg| +| sub-11 | ses-01 | left_foot-avg| +| sub-11 | ses-01 | dir-ap_left_foot-avg| +| sub-11 | ses-01 | dir-pa_left_foot-avg| +| sub-11 | ses-01 | task-hcp_motor_dir-pa_left_foot-avg| +| sub-11 | ses-01 | dir-ffx_left_foot| +| sub-11 | ses-01 | dir-pa_left_foot| +| sub-11 | ses-01 | task-hcp_motor_ffx_left_foot| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_5M.md b/deploy/datasets/supplements/data/ibc/right_SPL_5M.md new file mode 100644 index 0000000000000000000000000000000000000000..55889cdb51a9248d4c0781f229fc16314d20a622 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_5M.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 5M (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 5M (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-12 | we_time-space_event| +| sub-09 | ses-12 | task-mtt_we_dir-pa_run-01_eastside-westside_event| +| sub-09 | ses-12 | dir-pa_run-01_eastside-westside_event| +| sub-12 | ses-12 | dir-ap_run-03_sn_time-space_event| +| sub-12 | ses-12 | task-mtt_sn_dir-ap_run-03_sn_time-space_event| +| sub-02 | ses-04 | dir-ap_left_foot-avg| +| sub-02 | ses-04 | task-hcp_motor_dir-ap_left_foot-avg| +| sub-05 | ses-12 | task-mtt_sn_dir-pa_run-02_sn_before-after_event| +| sub-05 | ses-12 | dir-pa_run-02_sn_before-after_event| +| sub-15 | ses-02 | task-hcp_motor_dir-ap_left_foot-avg| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_7A.md b/deploy/datasets/supplements/data/ibc/right_SPL_7A.md new file mode 100644 index 0000000000000000000000000000000000000000..66c7dfebe0686d27ab27891096750631f86a84bd --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_7A.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7A (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7A (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-04 | dir-ap_triangle_random| +| sub-12 | ses-04 | dir-ap_run-05_complex-simple| +| sub-12 | ses-04 | task-rsvp_language_dir-ap_run-05_complex-simple| +| sub-06 | ses-04 | task-archi_social_dir-ap_triangle_random| +| sub-13 | ses-04 | task-archi_social_dir-pa_false_belief-mechanistic| +| sub-13 | ses-04 | dir-pa_false_belief-mechanistic| +| sub-01 | ses-07 | dir-pa_hand-side| +| sub-01 | ses-07 | task-archi_spatial_dir-pa_hand-side| +| sub-07 | ses-00 | task-archi_spatial_dir-ap_saccades| +| sub-07 | ses-00 | dir-ap_saccades| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_7M.md b/deploy/datasets/supplements/data/ibc/right_SPL_7M.md new file mode 100644 index 0000000000000000000000000000000000000000..d31282a572d1caaa560c45025562ce4fbb78163d --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_7M.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7M (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7M (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-03 | dir-ap_run-04_probe| +| sub-05 | ses-03 | task-rsvp_language_dir-ap_run-04_probe| +| sub-13 | ses-17 | enumeration_quadratic| +| sub-13 | ses-17 | task-enumeration_ffx_enumeration_quadratic| +| sub-13 | ses-17 | dir-ffx_enumeration_quadratic| +| sub-05 | ses-02 | task-hcp_wm_ffx_2back_face| +| sub-05 | ses-02 | 2back_face| +| sub-05 | ses-02 | dir-ffx_2back_face| +| sub-05 | ses-02 | dir-ap_2back_face| +| sub-05 | ses-02 | task-hcp_wm_dir-ap_2back_face| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_7P.md b/deploy/datasets/supplements/data/ibc/right_SPL_7P.md new file mode 100644 index 0000000000000000000000000000000000000000..2f359a45328c9c2cc901e518c6090cba1cf5efb2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_7P.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7P (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7P (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-10 | dir-pa_run-02_vstm_linear| +| sub-15 | ses-10 | task-vstm_dir-pa_run-02_vstm_linear| +| sub-15 | ses-20 | dir-ap_run-04_recognition_self-other| +| sub-15 | ses-20 | task-self_dir-ap_run-04_recognition_self-other| +| sub-09 | ses-17 | dir-pa_movie_mental-pain| +| sub-09 | ses-17 | task-pain_movie_dir-pa_movie_mental-pain| +| sub-05 | ses-00 | task-archi_spatial_ffx_hand-side| +| sub-05 | ses-00 | dir-ffx_hand-side| +| sub-05 | ses-00 | hand-side| +| sub-14 | ses-16 | task-pain_movie_ffx_movie_mental-pain| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_SPL_7PC.md b/deploy/datasets/supplements/data/ibc/right_SPL_7PC.md new file mode 100644 index 0000000000000000000000000000000000000000..4a98b491b9e07ff284e8b2cf3cb85c74bebbaa82 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_SPL_7PC.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 7PC (SPL) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 7PC (SPL) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-07 | dir-ffx_grasp-orientation| +| sub-01 | ses-07 | grasp-orientation| +| sub-01 | ses-07 | task-archi_spatial_ffx_grasp-orientation| +| sub-01 | ses-07 | task-archi_spatial_dir-ap_grasp-orientation| +| sub-01 | ses-07 | dir-ap_grasp-orientation| +| sub-07 | ses-17 | dir-ap_run-01_vstm_linear| +| sub-07 | ses-17 | task-vstm_dir-ap_run-01_vstm_linear| +| sub-09 | ses-05 | dir-pa_hand-side| +| sub-01 | ses-05 | task-rsvp_language_dir-ap_run-05_probe| +| sub-09 | ses-05 | task-archi_spatial_dir-pa_hand-side| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Supplementarymotor_presma.md b/deploy/datasets/supplements/data/ibc/right_Supplementarymotor_presma.md new file mode 100644 index 0000000000000000000000000000000000000000..e7dd2f47bb8c54ee9d9830192b374d21080bbc35 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Supplementarymotor_presma.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6ma (preSMA, mesial SFG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6ma (preSMA, mesial SFG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-03 | task-rsvp_language_dir-ap_run-04_complex-simple| +| sub-06 | ses-03 | dir-ap_run-04_complex-simple| +| sub-09 | ses-13 | task-mtt_sn_dir-pa_run-02_sn_all_space-time_cue| +| sub-09 | ses-13 | dir-pa_run-02_sn_all_space-time_cue| +| sub-12 | ses-18 | task-emotional_pain_ffx_emotional_pain| +| sub-12 | ses-18 | task-emotional_pain_dir-ap_emotional_pain| +| sub-12 | ses-18 | emotional_pain| +| sub-12 | ses-18 | dir-ffx_emotional_pain| +| sub-12 | ses-18 | dir-ap_emotional_pain| +| sub-11 | ses-12 | dir-ap_run-03_sn_before_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Supplementarymotor_sma.md b/deploy/datasets/supplements/data/ibc/right_Supplementarymotor_sma.md new file mode 100644 index 0000000000000000000000000000000000000000..193eefc1a802fa5da92c7c6735ee9ede43ed2814 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Supplementarymotor_sma.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area 6mp (SMA, mesial SFG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area 6mp (SMA, mesial SFG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-01 | task-hcp_motor_ffx_cue| +| sub-07 | ses-01 | cue| +| sub-07 | ses-01 | dir-ffx_cue| +| sub-06 | ses-11 | dir-pa_run-01_westside-eastside_event| +| sub-06 | ses-11 | task-mtt_we_dir-pa_run-01_westside-eastside_event| +| sub-05 | ses-20 | recognition_other_hit| +| sub-06 | ses-04 | task-archi_standard_dir-pa_motor-cognitive| +| sub-06 | ses-04 | dir-pa_motor-cognitive| +| sub-14 | ses-00 | dir-pa_motor-cognitive| +| sub-14 | ses-00 | task-archi_standard_dir-pa_motor-cognitive| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_FG1.md b/deploy/datasets/supplements/data/ibc/right_Visual_FG1.md new file mode 100644 index 0000000000000000000000000000000000000000..4f9a055bed60df747ee35a3721bf085089eb029f --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_FG1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG1 (FusG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG1 (FusG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-04 | task-archi_spatial_dir-ap_rotation_side| +| sub-05 | ses-04 | dir-ap_rotation_side| +| sub-05 | ses-04 | task-archi_spatial_ffx_rotation_side| +| sub-05 | ses-04 | dir-ffx_rotation_side| +| sub-05 | ses-04 | rotation_side| +| sub-05 | ses-15 | task-preference_faces_dir-ap_face_constant| +| sub-05 | ses-15 | dir-ap_face_constant| +| sub-04 | ses-03 | task-rsvp_language_dir-pa_run-01_probe| +| sub-04 | ses-03 | dir-pa_run-01_probe| +| sub-05 | ses-15 | dir-pa_painting_constant| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_FG2.md b/deploy/datasets/supplements/data/ibc/right_Visual_FG2.md new file mode 100644 index 0000000000000000000000000000000000000000..ad5a3c196dc05ae72ebdd239c800baded564c4a4 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_FG2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG2 (FusG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG2 (FusG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-02 | task-hcp_wm_dir-pa_face-avg| +| sub-05 | ses-02 | dir-pa_face-avg| +| sub-05 | ses-02 | task-hcp_wm_ffx_face-avg| +| sub-05 | ses-02 | dir-ffx_face-avg| +| sub-05 | ses-02 | face-avg| +| sub-11 | ses-19 | dir-pa_run-01_vstm_constant| +| sub-11 | ses-19 | task-vstm_dir-pa_run-01_vstm_constant| +| sub-14 | ses-01 | dir-ap_expression_gender-control| +| sub-14 | ses-01 | task-archi_emotional_dir-ap_expression_gender-control| +| sub-11 | ses-19 | vstm_constant| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_FG3.md b/deploy/datasets/supplements/data/ibc/right_Visual_FG3.md new file mode 100644 index 0000000000000000000000000000000000000000..5f2e208b6ec28633868389fcd1d15dfeaa3f5a77 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_FG3.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG3 (FusG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG3 (FusG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-16 | task-preference_food_dir-ap_food_constant| +| sub-11 | ses-16 | dir-ap_food_constant| +| sub-06 | ses-12 | task-mtt_sn_dir-ap_run-03_sn_after-before_event| +| sub-06 | ses-12 | dir-ap_run-03_sn_after-before_event| +| sub-11 | ses-16 | task-preference_food_dir-ap_food_linear| +| sub-11 | ses-16 | dir-ap_food_linear| +| sub-14 | ses-01 | task-archi_emotional_ffx_face_gender-control| +| sub-14 | ses-01 | face_gender-control| +| sub-14 | ses-01 | dir-ffx_face_gender-control| +| sub-05 | ses-01 | dir-ap_face-shape| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_FG4.md b/deploy/datasets/supplements/data/ibc/right_Visual_FG4.md new file mode 100644 index 0000000000000000000000000000000000000000..09a24221e85aca17e8c6c08ec98d6f253af34d5c --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_FG4.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area FG4 (FusG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area FG4 (FusG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-11 | ses-05 | task-archi_emotional_ffx_face_gender-control| +| sub-11 | ses-05 | face_gender-control| +| sub-11 | ses-05 | dir-ffx_face_gender-control| +| sub-11 | ses-05 | dir-ap_expression_intention-control| +| sub-11 | ses-05 | task-archi_emotional_dir-ap_expression_intention-control| +| sub-12 | ses-03 | dir-ap_expression_intention-control| +| sub-12 | ses-03 | task-archi_emotional_dir-ap_expression_intention-control| +| sub-14 | ses-02 | dir-ap_face-shape| +| sub-14 | ses-02 | face-shape| +| sub-14 | ses-02 | task-hcp_emotion_dir-ap_face-shape| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc1.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc1.md new file mode 100644 index 0000000000000000000000000000000000000000..fe4d0f283f2574f224c0854be913290aa26bd72e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc1.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc1 (V1, 17, CalcS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc1 (V1, 17, CalcS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-22 | dir-ap_run-03_encode_other| +| sub-12 | ses-22 | task-self_dir-ap_run-03_encode_other| +| sub-04 | ses-15 | dir-pa_house_constant| +| sub-04 | ses-15 | task-preference_houses_dir-pa_house_constant| +| sub-11 | ses-00 | task-archi_standard_dir-ap_horizontal-vertical| +| sub-11 | ses-00 | dir-ap_horizontal-vertical| +| sub-12 | ses-22 | dir-ap_run-03_false_alarm| +| sub-12 | ses-22 | dir-ap_run-03_recognition_hit| +| sub-12 | ses-22 | dir-ap_run-03_recognition_other_hit| +| sub-12 | ses-22 | task-self_dir-ap_run-03_recognition_other_hit| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc2.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc2.md new file mode 100644 index 0000000000000000000000000000000000000000..c710ca13a6da47ccee57aecc374b863acdcbd482 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc2.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc2 (V2, 18) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc2 (V2, 18) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-04 | dir-pa_vertical-horizontal| +| sub-06 | ses-04 | task-archi_standard_dir-pa_vertical-horizontal| +| sub-14 | ses-02 | task-hcp_emotion_dir-pa_face| +| sub-14 | ses-02 | dir-pa_face| +| sub-02 | ses-06 | task-rsvp_language_dir-pa_run-01_complex| +| sub-02 | ses-06 | dir-pa_run-01_complex| +| sub-09 | ses-01 | dir-pa_reward| +| sub-09 | ses-01 | dir-ffx_reward| +| sub-09 | ses-01 | reward| +| sub-09 | ses-01 | task-hcp_gambling_ffx_reward| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc3d.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc3d.md new file mode 100644 index 0000000000000000000000000000000000000000..95239ae1f421a69937920ccd6c2f40d8d43548d2 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc3d.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc3d (Cuneus) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc3d (Cuneus) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-04 | task-rsvp_language_dir-ap_run-03_word-pseudo| +| sub-06 | ses-02 | dir-ap_relational| +| sub-12 | ses-04 | dir-ap_run-03_word-pseudo| +| sub-06 | ses-02 | task-hcp_relational_dir-ap_relational| +| sub-09 | ses-01 | task-hcp_gambling_ffx_reward-punishment| +| sub-09 | ses-01 | reward-punishment| +| sub-09 | ses-01 | dir-ffx_reward-punishment| +| sub-09 | ses-00 | dir-pa_vertical_checkerboard| +| sub-09 | ses-00 | task-archi_standard_dir-pa_vertical_checkerboard| +| sub-06 | ses-03 | dir-pa_run-02_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc3v.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc3v.md new file mode 100644 index 0000000000000000000000000000000000000000..d386033427075db5d2b3b286a342942e030d752b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc3v.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc3v (LingG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc3v (LingG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-01 | ses-24 | recognition_hit-correct_rejection| +| sub-01 | ses-24 | dir-ap_run-03_correct_rejection| +| sub-01 | ses-24 | task-self_dir-ap_run-03_recognition_self_hit| +| sub-01 | ses-24 | task-self_dir-ap_run-03_recognition_hit-correct_rejection| +| sub-01 | ses-24 | task-self_dir-ap_run-03_instructions| +| sub-01 | ses-24 | task-self_dir-ap_run-03_recognition_hit| +| sub-01 | ses-24 | dir-ap_run-03_recognition_hit| +| sub-01 | ses-24 | task-self_dir-ap_run-03_recognition_other_hit| +| sub-01 | ses-24 | dir-ap_run-03_recognition_self_hit| +| sub-01 | ses-24 | dir-ap_run-03_recognition_hit-correct_rejection| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc4d.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4d.md new file mode 100644 index 0000000000000000000000000000000000000000..3703a38e6e65fe4e75de5db7c3ac7c33c97dc65b --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4d.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4d (Cuneus) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4d (Cuneus) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-04 | ses-01 | dir-ap_reward| +| sub-04 | ses-01 | task-hcp_gambling_dir-ap_reward| +| sub-04 | ses-01 | dir-pa_reward-punishment| +| sub-04 | ses-01 | task-hcp_gambling_dir-pa_reward-punishment| +| sub-04 | ses-01 | task-hcp_gambling_ffx_reward-punishment| +| sub-04 | ses-01 | reward-punishment| +| sub-04 | ses-01 | dir-ffx_reward-punishment| +| sub-12 | ses-02 | task-hcp_wm_dir-pa_0back_tools| +| sub-12 | ses-02 | dir-pa_0back_tools| +| sub-12 | ses-02 | dir-ffx_0back_tools| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc4la.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4la.md new file mode 100644 index 0000000000000000000000000000000000000000..83f541ec6bc66daa244e285f47d29b59b2953b2e --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4la.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4la (LOC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4la (LOC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-12 | ses-00 | dir-ffx_rotation_side| +| sub-12 | ses-00 | rotation_side| +| sub-12 | ses-00 | task-archi_spatial_ffx_rotation_side| +| sub-01 | ses-00 | task-archi_spatial_dir-pa_rotation_side| +| sub-01 | ses-00 | dir-pa_rotation_side| +| sub-02 | ses-06 | dir-pa_run-01_word_list| +| sub-02 | ses-06 | task-rsvp_language_dir-pa_run-01_word_list| +| sub-05 | ses-02 | mental| +| sub-05 | ses-02 | task-hcp_social_ffx_mental| +| sub-05 | ses-02 | dir-ffx_mental| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc4lp.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4lp.md new file mode 100644 index 0000000000000000000000000000000000000000..0a028d2fb8264a1822091cb12c70c0ad486ff6f8 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4lp.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4lp (LOC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4lp (LOC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-02 | task-hcp_wm_dir-pa_0back-2back| +| sub-06 | ses-02 | dir-pa_0back-2back| +| sub-15 | ses-10 | vstm_linear| +| sub-08 | ses-03 | task-hcp_wm_dir-pa_tools-avg| +| sub-08 | ses-03 | dir-pa_tools-avg| +| sub-15 | ses-06 | dir-pa_food_constant| +| sub-15 | ses-06 | task-preference_food_dir-pa_food_constant| +| sub-09 | ses-18 | dir-ap_run-01_vstm_linear| +| sub-09 | ses-18 | task-vstm_dir-ap_run-01_vstm_linear| +| sub-09 | ses-13 | task-mtt_sn_dir-pa_run-02_sn_all_event_response| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc4v.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4v.md new file mode 100644 index 0000000000000000000000000000000000000000..1baa47395386be928c995fbde64aeadae6fb7fc3 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc4v.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc4v (LingG) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc4v (LingG) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-15 | ses-00 | task-archi_standard_dir-pa_reading-listening| +| sub-15 | ses-00 | dir-pa_reading-listening| +| sub-13 | ses-04 | dir-pa_expression_gender-control| +| sub-15 | ses-00 | dir-pa_video_computation| +| sub-13 | ses-04 | task-archi_emotional_dir-pa_expression_gender-control| +| sub-15 | ses-00 | task-archi_standard_dir-pa_video_computation| +| sub-13 | ses-02 | task-hcp_wm_dir-pa_2back_face| +| sub-13 | ses-02 | dir-pa_2back_face| +| sub-09 | ses-00 | task-archi_standard_dir-ap_reading-listening| +| sub-09 | ses-00 | dir-ffx_reading-listening| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc5.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc5.md new file mode 100644 index 0000000000000000000000000000000000000000..af7d1f26c1b56f073d94fd22f0244c8086dd88b0 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc5.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc5 (LOC) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc5 (LOC) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-06 | ses-02 | task-hcp_social_ffx_random| +| sub-06 | ses-02 | dir-ffx_random| +| sub-06 | ses-02 | random| +| sub-05 | ses-02 | task-hcp_wm_dir-pa_0back_body| +| sub-05 | ses-02 | dir-pa_0back_body| +| sub-15 | ses-00 | dir-ap_saccades| +| sub-15 | ses-00 | task-archi_spatial_dir-ap_saccades| +| sub-01 | ses-00 | dir-ap_saccades| +| sub-01 | ses-00 | task-archi_spatial_ffx_saccades| +| sub-01 | ses-00 | task-archi_spatial_dir-ap_saccades| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/ibc/right_Visual_hOc6.md b/deploy/datasets/supplements/data/ibc/right_Visual_hOc6.md new file mode 100644 index 0000000000000000000000000000000000000000..591163a075f26723431923241d26dc97695ff892 --- /dev/null +++ b/deploy/datasets/supplements/data/ibc/right_Visual_hOc6.md @@ -0,0 +1,22 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hOc6 (POS) of the right hemisphere + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +Following are the 10 measurements with the strongest activation in Area hOc6 (POS) of the right hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-07 | ses-15 | dir-ffx_house_quadratic| +| sub-07 | ses-15 | task-preference_houses_ffx_house_quadratic| +| sub-07 | ses-15 | house_quadratic| +| sub-07 | ses-00 | dir-ap_triangle_mental| +| sub-07 | ses-00 | task-archi_social_dir-ap_triangle_mental| +| sub-05 | ses-03 | task-rsvp_language_dir-ap_run-03_jabberwocky-pseudo| +| sub-05 | ses-03 | dir-ap_run-03_jabberwocky-pseudo| +| sub-05 | ses-11 | dir-pa_run-02_we_all_time-space_cue| +| sub-05 | ses-11 | task-mtt_we_dir-pa_run-02_we_all_time-space_cue| +| sub-14 | ses-04 | task-rsvp_language_dir-ap_run-04_jabberwocky-pseudo| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. \ No newline at end of file diff --git a/deploy/datasets/supplements/data/julich_brain_name_to_nexusid.json b/deploy/datasets/supplements/data/julich_brain_name_to_nexusid.json new file mode 100644 index 0000000000000000000000000000000000000000..bf9480225bf0af91c24b64e8ce8ad01d08e043ee --- /dev/null +++ b/deploy/datasets/supplements/data/julich_brain_name_to_nexusid.json @@ -0,0 +1,1019 @@ +[ + [ + "Ch 123 (Basal Forebrain)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + } + } + ], + [ + "Ch 4 (Basal Forebrain)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc" + } + } + ], + [ + "Ch 123 (Basal Forebrain)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022" + } + } + ], + [ + "LB (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + } + } + ], + [ + "LB (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + } + } + ], + [ + "LB (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + } + } + ], + [ + "LB (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf" + } + } + ], + [ + "SF (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + } + } + ], + [ + "SF (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + } + } + ], + [ + "SF (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "48929163-bf7b-4471-9f14-991c5225eced" + } + } + ], + [ + "CM (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + } + } + ], + [ + "VTM (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2" + } + } + ], + [ + "IF (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07" + } + } + ], + [ + "MF (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca" + } + } + ], + [ + "CM (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + } + } + ], + [ + "CM (Amygdala)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed" + } + } + ], + [ + "Area 5L (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096" + } + } + ], + [ + "Area 7M (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158" + } + } + ], + [ + "Area 7PC (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1" + } + } + ], + [ + "Area 5M (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137" + } + } + ], + [ + "Area 7P (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37" + } + } + ], + [ + "Area 5Ci (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f" + } + } + ], + [ + "Area 7A (SPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda" + } + } + ], + [ + "Area OP3 (POperc)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b" + } + } + ], + [ + "Area OP4 (POperc)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16" + } + } + ], + [ + "Area OP2 (POperc)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff" + } + } + ], + [ + "Area OP1 (POperc)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "402ec28d-0809-4226-91a4-900d9303291b" + } + } + ], + [ + "Area 3b (PostCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4" + } + } + ], + [ + "Area 1 (PostCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b" + } + } + ], + [ + "Area 2 (PostCS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1" + } + } + ], + [ + "Area 3a (PostCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c" + } + } + ], + [ + "Area PF (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4" + } + } + ], + [ + "Area PFcm (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb" + } + } + ], + [ + "Area PGa (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147" + } + } + ], + [ + "Area PFt (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "847cef50-7340-470d-8580-327b4ce9db19" + } + } + ], + [ + "Area PFm (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "411edde9-685f-464b-970c-a929f9a4067c" + } + } + ], + [ + "Area PGp (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b" + } + } + ], + [ + "Area PFop (IPL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8262e56-88fe-4006-b078-def4d78416b8" + } + } + ], + [ + "Area hPO1 (POS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1" + } + } + ], + [ + "Area hIP1 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31" + } + } + ], + [ + "Area hIP7 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45" + } + } + ], + [ + "Area hIP3 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "700ac6db-870d-44f1-8786-0c01207f992b" + } + } + ], + [ + "Area hIP2 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb" + } + } + ], + [ + "Area hIP4 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54" + } + } + ], + [ + "Area hIP5 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37" + } + } + ], + [ + "Area hIP6 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0" + } + } + ], + [ + "Area hIP8 (IPS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3" + } + } + ], + [ + "Area hOc6 (POS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0" + } + } + ], + [ + "Area hOc4d (Cuneus)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8120426c-f65b-4426-8a58-3060e2334921" + } + } + ], + [ + "Area hOc3d (Cuneus)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41" + } + } + ], + [ + "Area hOc3v (LingG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30" + } + } + ], + [ + "Area hOc4v (LingG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc" + } + } + ], + [ + "Area hOc2 (V2, 18)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "04674a3c-bb3a-495e-a466-206355e630bd" + } + } + ], + [ + "Area hOc1 (V1, 17, CalcS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007" + } + } + ], + [ + "Area hOc4lp (LOC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d" + } + } + ], + [ + "Area hOc5 (LOC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a" + } + } + ], + [ + "Area hOc4la (LOC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "94365b82-6204-4937-8b86-fe0433287938" + } + } + ], + [ + "Area 44 (IFG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40" + } + } + ], + [ + "Area 45 (IFG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cb32e688-43f0-4ae3-9554-085973137663" + } + } + ], + [ + "Area 6d2 (PreCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0" + } + } + ], + [ + "Area 6d1 (PreCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c" + } + } + ], + [ + "Area 6ma (preSMA, mesial SFG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3" + } + } + ], + [ + "Area 6d3 (SFS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "266c1ada-1840-462f-8223-7ff2df457552" + } + } + ], + [ + "Area Fp1 (FPole)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6" + } + } + ], + [ + "Area Fp2 (FPole)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8" + } + } + ], + [ + "Area 4p (PreCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a" + } + } + ], + [ + "Area 4a (PreCG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd" + } + } + ], + [ + "Area 6mp (SMA, mesial SFG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010" + } + } + ], + [ + "Area Fo1 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9" + } + } + ], + [ + "Area Fo3 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e" + } + } + ], + [ + "Area Fo2 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0" + } + } + ], + [ + "Area Fo5 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a" + } + } + ], + [ + "Area Fo4 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "2cdee956-207a-4d4d-b051-bef80045210b" + } + } + ], + [ + "Area Fo6 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "330ae178-557c-4bd0-a932-f138c0a05345" + } + } + ], + [ + "Area Fo7 (OFC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e" + } + } + ], + [ + "Area Ig1 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0" + } + } + ], + [ + "Area Ig3 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb" + } + } + ], + [ + "Area Ig2 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a" + } + } + ], + [ + "Area Ia (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38" + } + } + ], + [ + "Area Id7 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a" + } + } + ], + [ + "Area Id2 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "cf9dea67-649d-4034-ae57-ec389f339277" + } + } + ], + [ + "Area Id1 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "c22055c1-514f-4096-906b-abf57286053b" + } + } + ], + [ + "Area Id3 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3" + } + } + ], + [ + "Area Id5 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641" + } + } + ], + [ + "Area Id6 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107" + } + } + ], + [ + "Area Id4 (Insula)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee" + } + } + ], + [ + "Area STS2 (STS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "278fc30f-2e24-4046-856b-95dfaf561635" + } + } + ], + [ + "Area STS1 (STS)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907" + } + } + ], + [ + "Area TE 3 (STG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f" + } + } + ], + [ + "Area TE 1.2 (HESCHL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f" + } + } + ], + [ + "Area TE 1.1 (HESCHL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e2969911-77eb-4b21-af70-216cab5285b1" + } + } + ], + [ + "Area TE 1.0 (HESCHL)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "13e21153-2ba8-4212-b172-8894f1012225" + } + } + ], + [ + "Area FG2 (FusG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f" + } + } + ], + [ + "Area FG3 (FusG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b" + } + } + ], + [ + "Area FG1 (FusG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459" + } + } + ], + [ + "Area FG4 (FusG)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5" + } + } + ], + [ + "Area p24c (pACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0" + } + } + ], + [ + "Area 25 (sACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b" + } + } + ], + [ + "Area p24ab (pACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340" + } + } + ], + [ + "Area s32 (sACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3" + } + } + ], + [ + "Area 33 (ACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d" + } + } + ], + [ + "Area p32 (pACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3" + } + } + ], + [ + "Area s24 (sACC)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648" + } + } + ], + [ + "HATA (Hippocampus)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c" + } + } + ], + [ + "Entorhinal Cortex", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca" + } + } + ], + [ + "CA (Hippocampus)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "a0d14d3e-bc30-41cf-8b28-540067897f80" + } + } + ], + [ + "DG (Hippocampus)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d" + } + } + ], + [ + "Subiculum (Hippocampus)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "7e2dab4c-a140-440d-a322-c1679adef2d4" + } + } + ], + [ + "Interposed Nucleus (Cerebellum)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + } + } + ], + [ + "Dorsal Dentate Nucleus (Cerebellum)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "58095aef-da69-43d4-887c-009c095cecce" + } + } + ], + [ + "Ventral Dentate Nucleus (Cerebellum)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71" + } + } + ], + [ + "Fastigial Nucleus (Cerebellum)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273" + } + } + ], + [ + "Interposed Nucleus (Cerebellum)", + { + "kg": { + "kgSchema": "minds/core/parcellationregion/v1.0.0", + "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788" + } + } + ] +] \ No newline at end of file diff --git a/deploy/datasets/testData/ibcData.md b/deploy/datasets/testData/ibcData.md new file mode 100644 index 0000000000000000000000000000000000000000..877fcd0a2b3fc57245e62831d5cbf6b9c3858616 --- /dev/null +++ b/deploy/datasets/testData/ibcData.md @@ -0,0 +1,24 @@ +# Individual Brain Charting fMRI datasets with strong activation in Area hIP1 (IPS) of the left hemisphere + +Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain. +Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f + +The following measurements show a particularly strong activation in Area hIP1 (IPS) of the left hemisphere: + +| Subject ID | Session ID | Task | +| :-: | :-: | :-: | +| sub-05 | ses-04 | task-archi_emotional_dir-ap_face_trusty| +| sub-05 | ses-04 | dir-ap_face_trusty| +| sub-07 | ses-11 | sn_before-after_event| +| sub-07 | ses-04 | dir-ap_reading-checkerboard| +| sub-07 | ses-04 | task-archi_standard_dir-ap_reading-checkerboard| +| sub-06 | ses-01 | task-hcp_gambling_dir-ap_punishment-reward| +| sub-06 | ses-01 | dir-ap_punishment-reward| +| sub-07 | ses-12 | task-mtt_we_dir-ap_run-03_we_before-after_event| +| sub-07 | ses-12 | dir-ap_run-03_we_before-after_event| +| sub-07 | ses-12 | we_before-after_event| + + +The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here. diff --git a/deploy/datasets/testData/ibcDataExpected.js b/deploy/datasets/testData/ibcDataExpected.js new file mode 100644 index 0000000000000000000000000000000000000000..24beaf3595fab69a5faced7778da77e46a5c2f43 --- /dev/null +++ b/deploy/datasets/testData/ibcDataExpected.js @@ -0,0 +1,56 @@ +module.exports = { + name: 'Individual Brain Charting fMRI datasets with strong activation in Area hIP1 (IPS) of the left hemisphere\n\n', + kgReference: ['https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f\n\n'], + description: 'The Individual Brain Charting dataset is a high spatial-resolution, multi-task, functional Magnetic Resonance Imaging dataset, intended to support the investigation on the functional principles governing cognition in the human brain.\n' + + 'Read more in the Knowledge Graph: https://kg.ebrains.eu/search/instances/Dataset/a1c940cc-4777-417e-9326-dd6584d6c71f\n' + + '\n' + + 'Following are the 10 measurements with the strongest activation in Area hIP1 (IPS) of the left hemisphere:\n' + + '\n' + + '| Subject ID | Session ID | Task |\n' + + '| --- | --- | --- |\n' + + '| sub-05 | ses-04 | task-archi_emotional_dir-ap_face_trusty|\n' + + '| sub-05 | ses-04 | dir-ap_face_trusty|\n' + + '| sub-07 | ses-11 | sn_before-after_event|\n' + + '| sub-07 | ses-04 | dir-ap_reading-checkerboard|\n' + + '| sub-07 | ses-04 | task-archi_standard_dir-ap_reading-checkerboard|\n' + + '| sub-06 | ses-01 | task-hcp_gambling_dir-ap_punishment-reward|\n' + + '| sub-06 | ses-01 | dir-ap_punishment-reward|\n' + + '| sub-07 | ses-12 | task-mtt_we_dir-ap_run-03_we_before-after_event|\n' + + '| sub-07 | ses-12 | dir-ap_run-03_we_before-after_event|\n' + + '| sub-07 | ses-12 | we_before-after_event|\n' + + '\n' + + '\n' + + 'The Individual Brain Charting Dataset is currently under GDPR review. Once the review is completed, we will provide direct links to these files here.', + methods: ['functional magnetic resonance imaging (fMRI)'], + species: ['Homo sapiens'], + fullId: `https://ibc/ibc_schema/left_AIPS_IP1.md`, + kgId: 'left_AIPS_IP1.md', + kgSchema: '//ibc/ibc_schema', + referenceSpaces: [ + { + "name": null, + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/referencespace/v1.0.0/dafcffc5-4826-4bf1-8ff6-46b8a31ff8e2" + }, + { + "name": "MNI Colin 27", + "fullId": "https://nexus.humanbrainproject.org/v0/data/minds/core/referencespace/v1.0.0/7f39f7be-445b-47c0-9791-e971c0b6d992" + } + ], + parcellationAtlas: [ + { + name: 'Jülich Cytoarchitechtonic Brain Atlas (human)', + fullId: + 'https://nexus.humanbrainproject.org/v0/data/minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579', + id: [Array] + }], + parcellationRegion: [ + { + 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' + } + ], +} + + diff --git a/deploy/datasets/util.js b/deploy/datasets/util.js index cdc9ca91a3905fc72d14e50222342249b38c7e13..25953080f60a025c8d321ee976dd50cf894cc4f3 100644 --- a/deploy/datasets/util.js +++ b/deploy/datasets/util.js @@ -3,7 +3,7 @@ const { getCommonSenseDsFilter } = require('./supplements/commonSense') const { hasPreview } = require('./supplements/previewFile') const path = require('path') const fs = require('fs') -const { getIdFromFullId, retry } = require('../../common/util') +const { getIdFromFullId, retry, flattenRegions } = require('../../common/util') let getPublicAccessToken @@ -34,14 +34,6 @@ const getUserKGRequestParam = async ({ user }) => { * Needed by filter by parcellation */ -const flattenArray = (array) => { - return array.concat( - ...array.map(item => item.children && item.children instanceof Array - ? flattenArray(item.children) - : []) - ) -} - const readConfigFile = (filename) => new Promise((resolve, reject) => { let filepath if (process.env.NODE_ENV === 'production') { @@ -93,7 +85,7 @@ initPrArray.push( readConfigFile('bigbrain.json') .then(data => JSON.parse(data)) .then(json => { - const bigbrainCyto = flattenArray(json.parcellations.find(({ name }) => name === 'Cytoarchitectonic Maps').regions) + const bigbrainCyto = flattenRegions(json.parcellations.find(({ name }) => name === 'Cytoarchitectonic Maps').regions) bigbrainCytoSet = populateSet(bigbrainCyto) }) .catch(console.error) @@ -103,9 +95,9 @@ initPrArray.push( readConfigFile('MNI152.json') .then(data => JSON.parse(data)) .then(json => { - const longBundle = flattenArray(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Long Bundle').regions) - const shortBundle = flattenArray(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Short Bundle').regions) - const jubrain = flattenArray(json.parcellations.find(({ name }) => 'JuBrain Cytoarchitectonic Atlas' === name).regions) + const longBundle = flattenRegions(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Long Bundle').regions) + const shortBundle = flattenRegions(json.parcellations.find(({ name }) => name === 'Fibre Bundle Atlas - Short Bundle').regions) + const jubrain = flattenRegions(json.parcellations.find(({ name }) => 'JuBrain Cytoarchitectonic Atlas' === name).regions) longBundleSet = populateSet(longBundle) shortBundleSet = populateSet(shortBundle) juBrainSet = populateSet(jubrain) @@ -117,9 +109,9 @@ initPrArray.push( readConfigFile('waxholmRatV2_0.json') .then(data => JSON.parse(data)) .then(json => { - const waxholm3 = flattenArray(json.parcellations[0].regions) - const waxholm2 = flattenArray(json.parcellations[1].regions) - const waxholm1 = flattenArray(json.parcellations[2].regions) + const waxholm3 = flattenRegions(json.parcellations[0].regions) + const waxholm2 = flattenRegions(json.parcellations[1].regions) + const waxholm1 = flattenRegions(json.parcellations[2].regions) waxholm1Set = populateSet(waxholm1) waxholm2Set = populateSet(waxholm2) @@ -132,10 +124,10 @@ initPrArray.push( readConfigFile('allenMouse.json') .then(data => JSON.parse(data)) .then(json => { - const flattenedAllen2017 = flattenArray(json.parcellations[0].regions) + const flattenedAllen2017 = flattenRegions(json.parcellations[0].regions) allen2017Set = populateSet(flattenedAllen2017) - const flattenedAllen2015 = flattenArray(json.parcellations[1].regions) + const flattenedAllen2015 = flattenRegions(json.parcellations[1].regions) allen2015Set = populateSet(flattenedAllen2015) }) .catch(console.error) diff --git a/deploy/package.json b/deploy/package.json index 87307b5943c9c15b55431d850de58fbe8721bba9..70050ceae9bbb9bf2829bacfc8f615ef92140f66 100644 --- a/deploy/package.json +++ b/deploy/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "start": "node server.js", - "test": "DISABLE_LIMITER=1 node -r dotenv/config ./node_modules/.bin/mocha ./**/*.spec.js --timeout 60000", + "test": "DISABLE_LIMITER=1 node -r dotenv/config ./node_modules/.bin/mocha './**/*.spec.js' --exclude 'node_modules/*' --timeout 60000", "mocha": "mocha" }, "keywords": [], diff --git a/deploy/saneUrl/index.js b/deploy/saneUrl/index.js index 2bd62b67fefc3e72518515ef344e55b350a26d7f..72edac32de4170c3e352cb83041e6653c59e0046 100644 --- a/deploy/saneUrl/index.js +++ b/deploy/saneUrl/index.js @@ -28,9 +28,13 @@ const redisProto = REDIS_PROTO || REDIS_RATE_LIMITING_DB_EPHEMERAL_PORT_6379_TCP const redisAddr = REDIS_ADDR || REDIS_RATE_LIMITING_DB_EPHEMERAL_PORT_6379_TCP_ADDR || null const redisPort = REDIS_PORT || REDIS_RATE_LIMITING_DB_EPHEMERAL_PORT_6379_TCP_PORT || 6379 -const userPass = `${REDIS_USERNAME || ''}${( REDIS_PASSWORD && (':' + REDIS_PASSWORD)) || ''}${ (REDIS_USERNAME || REDIS_PASSWORD) && '@'}` +/** + * nb this way to set username and pswd can be risky, but given that site adnimistrator sets the username and pswd via env var + * it should not be a security concern + */ +const userPass = (REDIS_USERNAME || REDIS_PASSWORD) && `${REDIS_USERNAME || ''}:${REDIS_PASSWORD || ''}@` -const redisURL = redisAddr && `${redisProto}://${userPass}${redisAddr}:${redisPort}` +const redisURL = redisAddr && `${redisProto}://${userPass || ''}${redisAddr}:${redisPort}` const limiter = new RateLimit({ windowMs: 1e3 * 5, diff --git a/docs/releases/v2.2.3.md b/docs/releases/v2.2.3.md new file mode 100644 index 0000000000000000000000000000000000000000..33e98df6948b046f323d1f2819691fea09805676 --- /dev/null +++ b/docs/releases/v2.2.3.md @@ -0,0 +1,18 @@ +# v2.2.3 + +9 June 2020 + +## New features + +- Import "Individual Brain Charting (IBC)" data to explorable datasets + +## Bugfixes + +- Fixed `undefined` showing for hemisphere metadata (#537) +- Fixed non atlas image e2e test URL +- Fixed backend test specs +- Fixed redi deploy configuration + +## Under the hood stuff + +- renamed css class for consistency diff --git a/e2e/src/advanced/nonAtlasImages.prod.e2e-spec.js b/e2e/src/advanced/nonAtlasImages.prod.e2e-spec.js index c8cd197adabbe037d22a2ec514c778d2c98568be..26bdfb011a5487aa092500d1e65cd1f75fcb1da5 100644 --- a/e2e/src/advanced/nonAtlasImages.prod.e2e-spec.js +++ b/e2e/src/advanced/nonAtlasImages.prod.e2e-spec.js @@ -113,6 +113,40 @@ describe('> non-atlas images', () => { } ) ) + + const arrPli = [ + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-FOM-HSV_R", + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-FOM-HSV_G", + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-FOM-HSV_B", + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI", + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-TIM", + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-MRI", + "https://neuroglancer.humanbrainproject.eu/precomputed/PLI_FOM/BI-MRS", + ] + + expect( + interceptedCalls + ).toContain( + jasmine.objectContaining( + { + method: 'GET', + url: 'https://neuroglancer.humanbrainproject.org/precomputed/BigBrainRelease.2015/8bit/info' + } + ) + ) + + for (const url of arrPli) { + expect( + interceptedCalls + ).toContain( + jasmine.objectContaining( + { + method: 'GET', + url: `${url}/info` + } + ) + ) + } }) it('> if ref tmpl is not right, only tmpl is loaded', async () => { diff --git a/e2e/src/navigating/navigateFromRegion.prod.e2e-spec.js b/e2e/src/navigating/navigateFromRegion.prod.e2e-spec.js index 480296e6e91c7aa143ffeac170f5f42776eaa700..3c90b7ceb5e394c5074a10b63947ac871f66e99b 100644 --- a/e2e/src/navigating/navigateFromRegion.prod.e2e-spec.js +++ b/e2e/src/navigating/navigateFromRegion.prod.e2e-spec.js @@ -31,22 +31,22 @@ const TEST_DATA = [ expectedTemplateLabels: [ { name: 'MNI Colin 27', - hemisphere: 'Left', + hemisphere: 'left hemisphere', expectedPosition: [-54514755, -16753913, -5260713] }, { name: 'MNI Colin 27', - hemisphere: 'Right', + hemisphere: 'right hemisphere', expectedPosition: [54536567, -17992636, -5712544] }, { name: 'MNI 152 ICBM 2009c Nonlinear Asymmetric', - hemisphere: 'Left', + hemisphere: 'left hemisphere', expectedPosition: [-55442669, -18314601, -6381831] }, { name: 'MNI 152 ICBM 2009c Nonlinear Asymmetric', - hemisphere: 'Right', + hemisphere: 'right hemisphere', expectedPosition: [52602966, -18339402, -5666868] }, ], @@ -106,11 +106,13 @@ describe('> explore same region in different templates', () => { describe(`> moving to ${name}`, () => { it('> works as expected', async () => { - const otherTemplates = await iavPage.getText(`[aria-label="${SHOW_IN_OTHER_REF_SPACE}: ${name}${hemisphere ? (' - ' + hemisphere) : ''}"]`) + const otherTemplate = await iavPage.getText(`[aria-label="${SHOW_IN_OTHER_REF_SPACE}: ${name}${hemisphere ? (' - ' + hemisphere) : ''}"]`) + const trimmedTemplate = otherTemplate.replace(/^\s+/, '').replace(/\s+$/, '').replace(/\s+/g, ' ') if (hemisphere) { - expect(otherTemplates.indexOf(hemisphere)).toBeGreaterThanOrEqual(0) + expect(trimmedTemplate).toEqual(`${name} (${hemisphere})`) + } else { + expect(trimmedTemplate).toEqual(name) } - expect(otherTemplates.indexOf(name)).toBeGreaterThanOrEqual(0) await iavPage.click(`[aria-label="${SHOW_IN_OTHER_REF_SPACE}: ${name}${hemisphere ? (' - ' + hemisphere) : ''}"]`) await iavPage.wait(500) diff --git a/mkdocs.yml b/mkdocs.yml index 351f3d9143020530c2373f88521052a98f1cf5b6..1c35290ef120aa15db485eb356448d3973077d08 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -40,6 +40,7 @@ pages: - Fetching datasets: 'advanced/datasets.md' - Display non-atlas volumes: 'advanced/otherVolumes.md' - Release notes: + - v2.2.3: 'releases/v2.2.3.md' - v2.2.2: 'releases/v2.2.2.md' - v2.2.1: 'releases/v2.2.1.md' - v2.2.0: 'releases/v2.2.0.md' diff --git a/src/atlasViewer/atlasViewer.component.ts b/src/atlasViewer/atlasViewer.component.ts index 1f3066bb2843b1853060526c7b1bc90932fd0a7a..fb5b963afd5f4e48580ea82277af4d229963b1bb 100644 --- a/src/atlasViewer/atlasViewer.component.ts +++ b/src/atlasViewer/atlasViewer.component.ts @@ -34,7 +34,7 @@ import { FixedMouseContextualContainerDirective } from "src/util/directives/Fixe import { isSame } from "src/util/fn"; import { NehubaContainer } from "../ui/nehubaContainer/nehubaContainer.component"; import { colorAnimation } from "./atlasViewer.animation" -import { MouseHoverDirective } from "src/util/directives/mouseOver.directive"; +import { MouseHoverDirective } from "src/atlasViewer/mouseOver.directive"; import {MatSnackBar, MatSnackBarRef} from "@angular/material/snack-bar"; import {MatDialog, MatDialogRef} from "@angular/material/dialog"; import { ARIA_LABELS } from 'common/constants' diff --git a/src/util/directives/mouseOver.directive.spec.ts b/src/atlasViewer/mouseOver.directive.spec.ts similarity index 100% rename from src/util/directives/mouseOver.directive.spec.ts rename to src/atlasViewer/mouseOver.directive.spec.ts diff --git a/src/util/directives/mouseOver.directive.ts b/src/atlasViewer/mouseOver.directive.ts similarity index 100% rename from src/util/directives/mouseOver.directive.ts rename to src/atlasViewer/mouseOver.directive.ts diff --git a/src/main.module.ts b/src/main.module.ts index c402df53fcadec932037d8cba0d05cfb40605bb9..46ad275e166bb931703cd72d78502fcfb056281b 100644 --- a/src/main.module.ts +++ b/src/main.module.ts @@ -37,7 +37,7 @@ import { NewViewerDisctinctViewToLayer } from "./util/pipes/newViewerDistinctVie import { UtilModule } from "./util/util.module"; import { SpotLightModule } from 'src/spotlight/spot-light.module' import { TryMeComponent } from "./ui/tryme/tryme.component"; - +import { MouseHoverDirective, MouseOverIconPipe, MouseOverTextPipe } from "./atlasViewer/mouseOver.directive"; import { UiStateUseEffect, getMouseoverSegmentsFactory, GET_MOUSEOVER_SEGMENTS_TOKEN } from "src/services/state/uiState.store"; import { AtlasViewerHistoryUseEffect } from "./atlasViewer/atlasViewer.history.service"; import { PluginServiceUseEffect } from './services/effect/pluginUseEffect'; @@ -117,12 +117,15 @@ export function debug(reducer: ActionReducer<any>): ActionReducer<any> { FloatingContainerDirective, FloatingMouseContextualContainerDirective, DragDropDirective, + MouseHoverDirective, /* pipes */ GetNamesPipe, GetNamePipe, TransformOnhoverSegmentPipe, NewViewerDisctinctViewToLayer, + MouseOverTextPipe, + MouseOverIconPipe, ], entryComponents : [ ModalUnit, diff --git a/src/res/css/extra_styles.css b/src/res/css/extra_styles.css index fe7d4d4e320b24ee0149726a15a29781d31d646b..cda477782c63ce59b76ff3fd6f8acc234cfc9583 100644 --- a/src/res/css/extra_styles.css +++ b/src/res/css/extra_styles.css @@ -455,8 +455,8 @@ markdown-dom pre code outline: none; } -.cursorPointer { - cursor: pointer; +.cursor-pointer { + cursor: pointer!important; } cdk-virtual-scroll-viewport:not(.cdk-virtual-scroll-orientation-horizontal) > .cdk-virtual-scroll-content-wrapper diff --git a/src/services/state/uiState.store.helper.ts b/src/services/state/uiState.store.helper.ts index a9e69797a5f830897418bd7ec8dbc46ec04c3b7d..8f3ead0a17d7911b8bafedec1612cfc3a2cfa451 100644 --- a/src/services/state/uiState.store.helper.ts +++ b/src/services/state/uiState.store.helper.ts @@ -30,6 +30,10 @@ export const uiActionSetPreviewingDatasetFiles = createAction( props<{previewingDatasetFiles: {datasetId: string, filename: string}[]}>() ) +export const uiActionShowSidePanelConnectivity = createAction( + `[uiState] showSidePanelConnectivity` +) + export enum EnumWidgetTypes{ DATASET_PREVIEW, } diff --git a/src/services/state/uiState.store.ts b/src/services/state/uiState.store.ts index c0753c644e9236147672c100fec5df71005687ef..a1aea6f7f7829d7ad92c1cdf9a8d9d4cdd99ae75 100644 --- a/src/services/state/uiState.store.ts +++ b/src/services/state/uiState.store.ts @@ -7,7 +7,7 @@ import { filter, map, mapTo, scan, startWith, take } from "rxjs/operators"; import { COOKIE_VERSION, KG_TOS_VERSION, LOCAL_STORAGE_CONST } from 'src/util/constants' import { IavRootStoreInterface, GENERAL_ACTION_TYPES } from '../stateStore.service' import { MatBottomSheetRef, MatBottomSheet } from '@angular/material/bottom-sheet'; -import { uiStateCloseSidePanel, uiStateOpenSidePanel, uiStateCollapseSidePanel, uiStateExpandSidePanel, uiActionSetPreviewingDatasetFiles, uiStateShowBottomSheet } from './uiState.store.helper'; +import { uiStateCloseSidePanel, uiStateOpenSidePanel, uiStateCollapseSidePanel, uiStateExpandSidePanel, uiActionSetPreviewingDatasetFiles, uiStateShowBottomSheet, uiActionShowSidePanelConnectivity } from './uiState.store.helper'; export const defaultState: StateInterface = { previewingDatasetFiles: [], @@ -108,6 +108,7 @@ export const getStateStore = ({ state = defaultState } = {}) => (prevState: Stat sidePanelCurrentViewContent: 'Dataset', } + case uiActionShowSidePanelConnectivity.type: case SHOW_SIDE_PANEL_CONNECTIVITY: return { ...prevState, diff --git a/src/services/state/viewerState.store.helper.ts b/src/services/state/viewerState.store.helper.ts index 05079abf9c286cb2e50340c4bf65c18d340dc0b3..5b4c59676b5e6150d9a16c2cdceea9d2166d6c0a 100644 --- a/src/services/state/viewerState.store.helper.ts +++ b/src/services/state/viewerState.store.helper.ts @@ -10,3 +10,18 @@ export const viewerStateSetSelectedRegions = createAction( '[viewerState] setSelectedRegions', props<{ selectRegions: IRegion[] }>() ) + +export const viewerStateSetConnectivityRegion = createAction( + `[viewerState] setConnectivityRegion`, + props<{ connectivityRegion: any }>() +) + +export const viewerStateNavigateToRegion = createAction( + `[viewerState] navigateToRegion`, + props<{ payload: { region: any } }>() +) + +export const viewerStateToggleRegionSelect = createAction( + `[viewerState] toggleRegionSelect`, + props<{ payload: { region: any } }>() +) diff --git a/src/services/state/viewerState.store.ts b/src/services/state/viewerState.store.ts index e7ec17c3ec2d176fbe83a376ebc35c7e1fe9a852..c39b1603221aabec3bf8c2cf3408cc0a58342e26 100644 --- a/src/services/state/viewerState.store.ts +++ b/src/services/state/viewerState.store.ts @@ -10,7 +10,7 @@ import { LoggingService } from 'src/logging'; import { generateLabelIndexId, IavRootStoreInterface } from '../stateStore.service'; import { GENERAL_ACTION_TYPES } from '../stateStore.service' import { MOUSEOVER_USER_LANDMARK, CLOSE_SIDE_PANEL } from './uiState.store'; -import { viewerStateSetSelectedRegions } from './viewerState.store.helper'; +import { viewerStateSetSelectedRegions, viewerStateSetConnectivityRegion } from './viewerState.store.helper'; export interface StateInterface { fetchedTemplates: any[] @@ -185,6 +185,7 @@ export const getStateStore = ({ state = defaultState } = {}) => (prevState: Part const { viewerState } = (action as any).state return viewerState } + case viewerStateSetConnectivityRegion.type: case SET_CONNECTIVITY_REGION: return { ...prevState, diff --git a/src/services/templateCoordinatesTransformation.service.ts b/src/services/templateCoordinatesTransformation.service.ts index 1329fe9422cf3d46e3fcf32d83018c9d74068701..6aaf98b99adb5fa613da758af51f37ab82ef0e54 100644 --- a/src/services/templateCoordinatesTransformation.service.ts +++ b/src/services/templateCoordinatesTransformation.service.ts @@ -16,7 +16,7 @@ export class TemplateCoordinatesTransformation { constructor(private httpClient: HttpClient) {} - public url = 'https://hbp-spatial-backend.apps-dev.hbp.eu/v1/transform-points' + public url = `${SPATIAL_TRANSFORM_BACKEND.replace(/\/$/, '')}/v1/transform-points` // jasmine marble cannot test promise properly // see https://github.com/ngrx/platform/issues/498#issuecomment-337465179 diff --git a/src/ui/connectivityBrowser/connectivityBrowser.template.html b/src/ui/connectivityBrowser/connectivityBrowser.template.html index 61ef3010b3a960b6d8677d1ffceaffa40bd85ea3..970cb6d35015c6d2570b7ec13444b7d401dea6f4 100644 --- a/src/ui/connectivityBrowser/connectivityBrowser.template.html +++ b/src/ui/connectivityBrowser/connectivityBrowser.template.html @@ -14,7 +14,7 @@ [customHeight]="componentHeight + 'px'"> <div slot="header" class="w-100 d-flex justify-content-between mt-3"> <span>Connectivity Browser</span> - <i (click)="closeConnectivityView(); setDefaultMap()" class="far fa-times-circle cursorPointer"></i> + <i (click)="closeConnectivityView(); setDefaultMap()" class="far fa-times-circle cursor-pointer"></i> </div> <div slot="dataset"> diff --git a/src/ui/databrowserModule/singleDataset/singleDataset.base.ts b/src/ui/databrowserModule/singleDataset/singleDataset.base.ts index 9b2ed686945b763819044a4bce8ca4d67fb963c7..5fdd11b073145a6f530bd1a3688b5c0ca622fe78 100644 --- a/src/ui/databrowserModule/singleDataset/singleDataset.base.ts +++ b/src/ui/databrowserModule/singleDataset/singleDataset.base.ts @@ -109,9 +109,10 @@ export class SingleDatasetBase implements OnInit, OnChanges { public async fetchDatasetDetail(){ try { const { kgId } = this + const { kgSchema } = this if (!kgId) return - const dataset = await this.singleDatasetService.getInfoFromKg({ kgId }) - + const dataset = await this.singleDatasetService.getInfoFromKg({ kgId, kgSchema }) + const { name, description, publications, fullId } = dataset this.name = name this.description = description @@ -127,18 +128,18 @@ export class SingleDatasetBase implements OnInit, OnChanges { // TODO this is not perfect logic for singledataset // singledataset.base.ts should be tidied up in general // fullId, kgId, dataset... too many different entries - + public ngOnChanges(){ if (!this.kgId) { const fullId = this.fullId || this.dataset?.fullId - + const re = getKgSchemaIdFromFullId(fullId) if (re) { this.kgSchema = re[0] this.kgId = re[1] } } - + this.fetchDatasetDetail() } diff --git a/src/ui/parcellationRegion/region.base.spec.ts b/src/ui/parcellationRegion/region.base.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..0e2153d3cf3ad0b3ddb198879728d19d7ea1e91e --- /dev/null +++ b/src/ui/parcellationRegion/region.base.spec.ts @@ -0,0 +1,249 @@ +import { regionInOtherTemplateSelector } from './region.base' + +const mr1wrong = { + labelIndex: 1, + name: 'mr1', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'fff-bbb' + } + } +} + +const mr0wrong = { + labelIndex: 1, + name: 'mr0', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'aaa-fff' + } + } +} + + +const mr1lh = { + labelIndex: 1, + name: 'mr1 - left hemisphere', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'ccc-bbb' + } + } +} + +const mr1rh = { + labelIndex: 1, + name: 'mr1 - right hemisphere', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'ccc-bbb' + } + } +} + +const mr0lh = { + labelIndex: 1, + name: 'mr0 - left hemisphere', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'aaa-bbb' + } + } +} + +const mr0rh = { + labelIndex: 1, + name: 'mr0 - right hemisphere', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'aaa-bbb' + } + } +} + +const mr1 = { + labelIndex: 1, + name: 'mr1', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'ccc-bbb' + } + } +} + +const mr0 = { + labelIndex: 1, + name: 'mr0', + fullId: { + kg: { + kgSchema: 'fzj/mock/pr', + kgId: 'aaa-bbb' + } + } +} + +// parcellations + +const mp1h = { + name: 'mp1h', + regions: [ mr1lh, mr0lh, mr0rh, mr1rh ] +} + +const mpWrong = { + name: 'mp1h', + regions: [ mr1wrong, mr0wrong ] +} + +const mp0 = { + name: 'mp0', + regions: [ mr1, mr0 ] +} + +// templates + +const mt0 = { + name: 'mt0', + fullId: 'fzj/mock/rs/v0.0.0/aaa-bbb', + parcellations: [ mp0 ] +} + +const mt1 = { + name: 'mt1', + fullId: 'fzj/mock/rs/v0.0.0/bbb-bbb', + parcellations: [ mp0 ] +} + +const mt2 = { + name: 'mt2', + fullId: 'fzj/mock/rs/v0.0.0/ccc-bbb', + parcellations: [ mp1h ] +} + +const mt3 = { + name: 'mt3', + fullId: 'fzj/mock/rs/v0.0.0/ddd-bbb', + parcellations: [ mp1h ] +} + +const mtWrong = { + name: 'mtWrong', + fullId: 'fzj/mock/rs/v0.0.0/ddd-bbb', + parcellations: [ mpWrong ] +} + +const mockFetchedTemplates = [ mt0, mt1, mt2, mt3, mtWrong ] + +describe('> region.base.ts', () => { + describe('> getRegionInOtherTemplatesSelector', () => { + describe('> no hemisphere selected, simulates big brain cyto map', () => { + + let result: any[] + beforeAll(() => { + result = regionInOtherTemplateSelector.projector({ fetchedTemplates: mockFetchedTemplates, templateSelected: mt0 }, { region: mr0 }) + }) + + it('> length checks out', () => { + expect(result.length).toEqual(5) + }) + + it('> does not contain itself', () => { + expect(result).not.toContain( + jasmine.objectContaining({ + template: mt0, + parcellation: mp0, + region: mr0 + }) + ) + }) + + it('> no hemisphere result has no hemisphere meta data', () => { + expect(result).toContain( + jasmine.objectContaining({ + template: mt1, + parcellation: mp0, + region: mr0 + }) + ) + }) + + it('> hemisphere result has hemisphere metadata # 1', () => { + expect(result).toContain( + jasmine.objectContaining({ + template: mt2, + parcellation: mp1h, + region: mr0lh, + hemisphere: 'left hemisphere' + }) + ) + }) + it('> hemisphere result has hemisphere metadata # 2', () => { + expect(result).toContain( + jasmine.objectContaining({ + template: mt3, + parcellation: mp1h, + region: mr0lh, + hemisphere: 'left hemisphere' + }) + ) + }) + it('> hemisphere result has hemisphere metadata # 3', () => { + expect(result).toContain( + jasmine.objectContaining({ + template: mt3, + parcellation: mp1h, + region: mr0rh, + hemisphere: 'right hemisphere' + }) + ) + }) + it('> hemisphere result has hemisphere metadata # 4', () => { + expect(result).toContain( + jasmine.objectContaining({ + template: mt3, + parcellation: mp1h, + region: mr0rh, + hemisphere: 'right hemisphere' + }) + ) + }) + }) + + describe('> hemisphere data selected (left hemisphere), simulates julich-brain in mni152', () => { + let result + beforeAll(() => { + result = regionInOtherTemplateSelector.projector({ fetchedTemplates: mockFetchedTemplates, templateSelected: mt2 }, { region: mr0lh }) + }) + + it('> length checks out', () => { + expect(result.length).toEqual(3) + }) + + it('> does not select wrong hemisphere (right hemisphere)', () => { + expect(result).not.toContain( + jasmine.objectContaining({ + template: mt3, + parcellation: mp1h, + region: mr0rh, + }) + ) + }) + + it('> select the corresponding hemisphere (left hemisphere), but without hemisphere metadata', () => { + expect(result).toContain( + jasmine.objectContaining({ + template: mt3, + parcellation: mp1h, + region: mr0lh + }) + ) + }) + }) + }) +}) diff --git a/src/ui/parcellationRegion/region.base.ts b/src/ui/parcellationRegion/region.base.ts index 0b12f98d2af402be9e9369f62555da8f14703286..eb514bd7dd6e4c0c1551cd9e61e23530166b7993 100644 --- a/src/ui/parcellationRegion/region.base.ts +++ b/src/ui/parcellationRegion/region.base.ts @@ -1,20 +1,28 @@ -import {EventEmitter, Input, Output} from "@angular/core"; -import {select, Store} from "@ngrx/store"; -import {NEWVIEWER, SET_CONNECTIVITY_REGION} from "src/services/state/viewerState.store"; -import { - EXPAND_SIDE_PANEL_CURRENT_VIEW, - IavRootStoreInterface, OPEN_SIDE_PANEL, - SHOW_SIDE_PANEL_CONNECTIVITY, -} from "src/services/stateStore.service"; -import { VIEWERSTATE_CONTROLLER_ACTION_TYPES } from "../viewerStateController/viewerState.base"; -import {distinctUntilChanged, shareReplay} from "rxjs/operators"; -import {Observable} from "rxjs"; +import {EventEmitter, Input, Output } from "@angular/core"; +import {select, Store, createSelector} from "@ngrx/store"; +import { uiStateOpenSidePanel, uiStateExpandSidePanel, uiActionShowSidePanelConnectivity } from 'src/services/state/uiState.store.helper' +import {distinctUntilChanged, switchMap, filter} from "rxjs/operators"; +import { Observable, BehaviorSubject } from "rxjs"; import { ARIA_LABELS } from 'common/constants' +import { flattenRegions, getIdFromFullId } from 'common/util' +import { viewerStateSetConnectivityRegion, viewerStateNavigateToRegion, viewerStateToggleRegionSelect } from "src/services/state/viewerState.store.helper"; export class RegionBase { + + private _region: any + + get region(){ + return this._region + } + @Input() - public region: any + set region(val) { + this._region = val + this.region$.next(this.region) + } + + private region$: BehaviorSubject<any> = new BehaviorSubject(null) @Input() public isSelected: boolean = false @@ -23,136 +31,140 @@ export class RegionBase { @Output() public closeRegionMenu: EventEmitter<boolean> = new EventEmitter() - public loadedTemplate$: Observable<any[]> - public templateSelected$: Observable<any[]> - public parcellationSelected$: Observable<any[]> - - protected loadedTemplates: any[] - protected selectedTemplate: any - protected selectedParcellation: any public sameRegionTemplate: any[] = [] - - private parcellationRegions: any[] = [] + public regionInOtherTemplates$: Observable<any[]> constructor( - private store$: Store<IavRootStoreInterface>, + private store$: Store<any>, ) { - const viewerState$ = this.store$.pipe( - select('viewerState'), - shareReplay(1), - ) - - this.loadedTemplate$ = viewerState$.pipe( - select('fetchedTemplates'), - distinctUntilChanged() - ) - - this.templateSelected$ = viewerState$.pipe( - select('templateSelected'), - distinctUntilChanged(), - ) - - this.parcellationSelected$ = viewerState$.pipe( - select('parcellationSelected'), + this.regionInOtherTemplates$ = this.region$.pipe( distinctUntilChanged(), + filter(v => !!v), + switchMap(region => this.store$.pipe( + select( + regionInOtherTemplateSelector, + { region } + ) + )) ) } + public navigateToRegion() { this.closeRegionMenu.emit() const { region } = this - this.store$.dispatch({ - type: VIEWERSTATE_CONTROLLER_ACTION_TYPES.NAVIGATETO_REGION, - payload: { region }, - }) + this.store$.dispatch( + viewerStateNavigateToRegion({ payload: { region } }) + ) } public toggleRegionSelected() { this.closeRegionMenu.emit() const { region } = this - this.store$.dispatch({ - type: VIEWERSTATE_CONTROLLER_ACTION_TYPES.TOGGLE_REGION_SELECT, - payload: { region }, - }) + this.store$.dispatch( + viewerStateToggleRegionSelect({ payload: { region } }) + ) } public showConnectivity(regionName) { this.closeRegionMenu.emit() // ToDo trigger side panel opening with effect - this.store$.dispatch({type: OPEN_SIDE_PANEL}) - this.store$.dispatch({type: EXPAND_SIDE_PANEL_CURRENT_VIEW}) - this.store$.dispatch({type: SHOW_SIDE_PANEL_CONNECTIVITY}) + this.store$.dispatch(uiStateOpenSidePanel()) + this.store$.dispatch(uiStateExpandSidePanel()) + this.store$.dispatch(uiActionShowSidePanelConnectivity()) - this.store$.dispatch({ - type: SET_CONNECTIVITY_REGION, - connectivityRegion: regionName, - }) - } - - - getDifferentTemplatesSameRegion() { - this.sameRegionTemplate = [] - this.loadedTemplates.forEach(template => { - if (this.selectedTemplate.name !== template.name) { - template.parcellations.forEach(parcellation => { - this.parcellationRegions = [] - this.getAllRegionsFromParcellation(parcellation.regions) - this.parcellationRegions.forEach(pr => { - if (!(JSON.stringify(pr.fullId) === 'null' || JSON.stringify(this.region.fullId) === 'null') - && JSON.stringify(pr.fullId) === JSON.stringify(this.region.fullId)) { - const baseAreaHemisphere = - this.region.name.includes(' - right hemisphere')? 'Right' : - this.region.name.includes(' - left hemisphere')? 'Left' - : null - const areaHemisphere = - pr.name.includes(' - right hemisphere')? 'Right' - : pr.name.includes(' - left hemisphere')? 'Left' - : null - - const sameRegionSpace = {template: template, parcellation: parcellation, region: pr} - - if (!baseAreaHemisphere && areaHemisphere) { - this.sameRegionTemplate.push({ - ...sameRegionSpace, - hemisphere: areaHemisphere - }) - } else - if (!this.sameRegionTemplate.map(sr => sr.template).includes(template)) { - if (!(baseAreaHemisphere && areaHemisphere && baseAreaHemisphere !== areaHemisphere)) { - this.sameRegionTemplate.push(sameRegionSpace) - } - } - } - }) - }) - } - }) + this.store$.dispatch( + viewerStateSetConnectivityRegion({ connectivityRegion: regionName }) + ) } - changeView(index) { + changeView(sameRegion) { + const { + template, + parcellation, + region + } = sameRegion + const { position } = region this.closeRegionMenu.emit() + /** + * TODO use createAction in future + * for now, not importing const because it breaks tests + */ this.store$.dispatch({ - type : NEWVIEWER, - selectTemplate : this.sameRegionTemplate[index].template, - selectParcellation : this.sameRegionTemplate[index].parcellation, - navigation: {position: this.sameRegionTemplate[index].region.position}, + type: `NEWVIEWER`, + selectTemplate: template, + selectParcellation: parcellation, + navigation: { + position + }, }) } - public getAllRegionsFromParcellation = (regions) => { - for (const region of regions) { - if (region.children && region.children.length) { - this.getAllRegionsFromParcellation(region.children) - } else { - this.parcellationRegions.push(region) - } - } - } - public SHOW_CONNECTIVITY_DATA = ARIA_LABELS.SHOW_CONNECTIVITY_DATA public SHOW_IN_OTHER_REF_SPACE = ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE public SHOW_ORIGIN_DATASET = ARIA_LABELS.SHOW_ORIGIN_DATASET public AVAILABILITY_IN_OTHER_REF_SPACE = ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE } + +export const regionInOtherTemplateSelector = createSelector( + (state: any) => state.viewerState, + (viewerState, prop) => { + const { region: regionOfInterest } = prop + const returnArr = [] + const regionOfInterestHemisphere = regionOfInterest.name.includes('- right hemisphere') + ? 'right hemisphere' + : regionOfInterest.name.includes('- left hemisphere') + ? 'left hemisphere' + : null + + const regionOfInterestId = getIdFromFullId(regionOfInterest.fullId) + const { fetchedTemplates, templateSelected } = viewerState + const selectedTemplateId = getIdFromFullId(templateSelected.fullId) + const otherTemplates = fetchedTemplates.filter(({ fullId }) => getIdFromFullId(fullId) !== selectedTemplateId) + for (const template of otherTemplates) { + for (const parcellation of template.parcellations) { + const flattenedRegions = flattenRegions(parcellation.regions) + const selectableRegions = flattenedRegions.filter(({ labelIndex }) => !!labelIndex) + + for (const region of selectableRegions) { + const id = getIdFromFullId(region.fullId) + if (!!id) { + const regionHemisphere = region.name.includes('- right hemisphere') + ? 'right hemisphere' + : region.name.includes('- left hemisphere') + ? 'left hemisphere' + : null + + if (id === regionOfInterestId) { + /** + * if both hemisphere metadatas are defined + */ + if ( + !!regionOfInterestHemisphere && + !!regionHemisphere + ) { + if (regionHemisphere === regionOfInterestHemisphere) { + returnArr.push({ + template, + parcellation, + region, + }) + } + } else { + returnArr.push({ + template, + parcellation, + region, + hemisphere: regionHemisphere + }) + } + } + } + } + } + } + return returnArr + } +) \ No newline at end of file diff --git a/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts b/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..c98dc9754190acbeebff6af212f7fedce139cfeb --- /dev/null +++ b/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts @@ -0,0 +1,219 @@ +import { TestBed, async } from "@angular/core/testing" +import { RegionMenuComponent } from "./regionMenu.component" +import { AngularMaterialModule } from "src/ui/sharedModules/angularMaterial.module" +import { UtilModule } from "src/util/util.module" +import { CommonModule } from "@angular/common" +import { PreviewDatasetFile } from "src/ui/databrowserModule/singleDataset/datasetPreviews/previewDatasetFile.directive" +import { provideMockStore, MockStore } from "@ngrx/store/testing" +import { regionInOtherTemplateSelector } from '../region.base' +import { ARIA_LABELS } from 'common/constants' +import { By } from "@angular/platform-browser" + +const mt0 = { + name: 'mt0' +} + +const mt1 = { + name: 'mt1' +} + +const mr0 = { + name: 'mr0' +} + +const mr1 = { + name: 'mr1' +} + +const mp0 = { + name: 'mp0' +} + +const mp1 = { + name: 'mp1' +} + +const mrm0 = { + template: mt0, + parcellation: mp0, + region: mr0 +} + +const mrm1 = { + template: mt1, + parcellation: mp1, + region: mr1 +} + +const hemisphereMrms = [ { + ...mrm0, + hemisphere: 'left hemisphere' +}, { + ...mrm1, + hemisphere: 'left hemisphere' +} ] + +const nohemisphereHrms = [mrm0, mrm1] + +describe('> regionMenu.component.ts', () => { + describe('> RegionMenuComponent', () => { + beforeEach(async(() => { + + TestBed.configureTestingModule({ + imports: [ + UtilModule, + AngularMaterialModule, + CommonModule, + ], + declarations: [ + RegionMenuComponent, + + /** + * Used by regionMenu.template.html to show region preview + */ + PreviewDatasetFile, + ], + providers: [ + provideMockStore({ initialState: {} }) + ] + }).compileComponents() + + })) + + it('> init just fine', () => { + const fixture = TestBed.createComponent(RegionMenuComponent) + expect(fixture).toBeTruthy() + }) + + describe('> regionInOtherTemplatesTmpl', () => { + + it('> toggleBtn does not exists if selector returns empty array', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + [] + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + + const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) ) + expect(toggleBtn).toBeFalsy() + }) + + it('> toggleBtn exists if selector returns non empty array', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + nohemisphereHrms + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + + const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) ) + expect(toggleBtn).toBeTruthy() + }) + + it('> even if toggleBtn exists, list should be hidden by default', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + nohemisphereHrms + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + + const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) ) + expect(listContainer).toBeFalsy() + }) + + it('> on click of toggle btn, list to become visible', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + nohemisphereHrms + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) ) + toggleBtn.triggerEventHandler('click', null) + fixture.detectChanges() + const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) ) + expect(listContainer).toBeTruthy() + }) + + it('> once list becomes available, there should be 2 items on the list', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + nohemisphereHrms + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) ) + toggleBtn.triggerEventHandler('click', null) + fixture.detectChanges() + const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) ) + expect(listContainer.nativeElement.children.length).toEqual(2) + }) + + it('> the text (no hemisphere metadata) on the list is as expected', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + nohemisphereHrms + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) ) + toggleBtn.triggerEventHandler('click', null) + fixture.detectChanges() + const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) ) + + // trim white spaces before and after + const texts = Array.from(listContainer.nativeElement.children).map((c: HTMLElement) => c.textContent.replace(/^\s+/, '').replace(/\s+$/, '')) + expect(texts).toContain(mt0.name) + expect(texts).toContain(mt1.name) + }) + + it('> the text (with hemisphere metadata) on the list is as expected', () => { + + const mockStore = TestBed.inject(MockStore) + mockStore.overrideSelector( + regionInOtherTemplateSelector, + hemisphereMrms + ) + + const fixture = TestBed.createComponent(RegionMenuComponent) + fixture.componentInstance.region = mr1 + fixture.detectChanges() + const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) ) + toggleBtn.triggerEventHandler('click', null) + fixture.detectChanges() + const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) ) + + // trim white spaces before and after, and middle white spaces into a single white space + const texts = Array.from(listContainer.nativeElement.children).map((c: HTMLElement) => c.textContent.replace(/^\s+/, '').replace(/\s+$/, '').replace(/\s+/g, ' ')) + expect(texts).toContain(`${mt0.name} (left hemisphere)`) + expect(texts).toContain(`${mt1.name} (left hemisphere)`) + }) + }) + }) +}) \ No newline at end of file diff --git a/src/ui/parcellationRegion/regionMenu/regionMenu.component.ts b/src/ui/parcellationRegion/regionMenu/regionMenu.component.ts index 4890920d3ea4fc398d7de4bc0dc1f26eefa10e8e..8d121014612f34788c6b252540ff557dedb5f3c3 100644 --- a/src/ui/parcellationRegion/regionMenu/regionMenu.component.ts +++ b/src/ui/parcellationRegion/regionMenu/regionMenu.component.ts @@ -1,7 +1,6 @@ -import { Component, OnDestroy, OnInit } from "@angular/core"; +import { Component, OnDestroy } from "@angular/core"; import { Store } from "@ngrx/store"; import { Subscription } from "rxjs"; -import { IavRootStoreInterface } from "src/services/stateStore.service"; import { RegionBase } from '../region.base' @Component({ @@ -9,33 +8,16 @@ import { RegionBase } from '../region.base' templateUrl: './regionMenu.template.html', styleUrls: ['./regionMenu.style.css'], }) -export class RegionMenuComponent extends RegionBase implements OnInit, OnDestroy { +export class RegionMenuComponent extends RegionBase implements OnDestroy { private subscriptions: Subscription[] = [] constructor( - store$: Store<IavRootStoreInterface>, + store$: Store<any>, ) { super(store$) } - ngOnInit(): void { - this.subscriptions.push( - this.templateSelected$.subscribe(template => { - this.selectedTemplate = template - }), - this.parcellationSelected$.subscribe(parcellation => { - this.selectedParcellation = parcellation - }), - this.loadedTemplate$.subscribe(templates => { - this.loadedTemplates = templates - this.getDifferentTemplatesSameRegion() - // this.bigBrainJubrainSwitch() - // this.getSameParcellationTemplates() - }), - ) - } - ngOnDestroy(): void { this.subscriptions.forEach(s => s.unsubscribe()) } diff --git a/src/ui/parcellationRegion/regionMenu/regionMenu.template.html b/src/ui/parcellationRegion/regionMenu/regionMenu.template.html index d74dd07ac79fe71001bc036b74e4c7a0a1df3480..714b6e70af6d1c12eb02122b4c0a8a2148bd1149 100644 --- a/src/ui/parcellationRegion/regionMenu/regionMenu.template.html +++ b/src/ui/parcellationRegion/regionMenu/regionMenu.template.html @@ -15,79 +15,6 @@ <mat-card-content> <mat-divider></mat-divider> - <ng-template #safeHarbour> - - <!-- enlarged region actions --> - <mat-grid-list cols="2" rowHeight="6rem" gutterSize="0px"> - - <mat-grid-tile> - <iav-v-button - class="h-100 w-100" - mat-ripple - [color]="isSelected ? 'primary' : 'default'" - (click)="toggleRegionSelected()"> - <i iav-v-button-icon class="far" [ngClass]="{'fa-check-square': isSelected, 'fa-square': !isSelected}"></i> - <span iav-v-button-text>Select</span> - </iav-v-button> - </mat-grid-tile> - - <mat-grid-tile> - <iav-v-button - class="h-100 w-100" - mat-ripple - (click)="navigateToRegion()"> - <i class="fas fa-map-marked-alt" iav-v-button-icon></i> - <span iav-v-button-text>Navigate</span> - </iav-v-button> - </mat-grid-tile> - - <ng-container *ngFor="let originDataset of (region.originDatasets || [])"> - <mat-grid-tile class="iv-custom-comp"> - <iav-v-button - iav-dataset-preview-dataset-file - [iav-dataset-preview-dataset-file-kgid]="originDataset.kgId" - [iav-dataset-preview-dataset-file-filename]="originDataset.filename" - #previewDirective="iavDatasetPreviewDatasetFile" - class="h-100 w-100" - mat-ripple> - <i class="far fa-eye" iav-v-button-icon></i> - <span iav-v-button-text [class]="previewDirective.active ? 'iv-custom-comp primary' : ''">Probability Map {{ previewDirective.active }}</span> - </iav-v-button> - </mat-grid-tile> - </ng-container> - - <mat-grid-tile> - <iav-v-button *ngIf="hasConnectivity" - class="h-100 w-100" - mat-ripple - [matMenuTriggerFor]="connectivitySourceDatasets" - #connectivityMenuButton="matMenuTrigger" - iav-captureClickListenerDirective - [iav-captureClickListenerDirective-captureDocument]="true" - (iav-captureClickListenerDirective-onMousedown)="connectivityMenuButton.closeMenu()"> - <i class="fab fa-connectdevelop" iav-v-button-icon></i> - <span iav-v-button-text>Connectivity</span> - <i class="fas fa-chevron-down" iav-v-button-footer></i> - </iav-v-button> - </mat-grid-tile> - - <mat-grid-tile> - <iav-v-button *ngIf="sameRegionTemplate.length" - class="h-100 w-100" - mat-ripple - [matMenuTriggerFor]="additionalActions" - #changeTmplTrigger="matMenuTrigger" - iav-captureClickListenerDirective - [iav-captureClickListenerDirective-captureDocument]="true" - (iav-captureClickListenerDirective-onMousedown)="changeTmplTrigger.closeMenu()"> - <i class="fas fa-brain" iav-v-button-icon></i> - <span iav-v-button-text>Change template</span> - <i class="fas fa-chevron-down" iav-v-button-footer></i> - </iav-v-button> - </mat-grid-tile> - </mat-grid-list> - </ng-template> - <!-- region desc --> <ng-container *ngIf="region?.description?.length > 0"> <mat-divider></mat-divider> @@ -165,42 +92,9 @@ </div> <!-- change template --> - <div iav-switch #changeTmplSwitch="iavSwitch"> + <ng-container *ngTemplateOutlet="regionInOtherTemplatesTmpl; context: { regionInOtherTemplates: regionInOtherTemplates$ | async }"> + </ng-container> - <mat-list-item *ngIf="sameRegionTemplate.length" - mat-ripple - [attr.aria-label]="SHOW_IN_OTHER_REF_SPACE" - (click)="changeTmplSwitch && changeTmplSwitch.toggle()"> - <mat-icon fontSet="fas" fontIcon="fa-brain" mat-list-icon></mat-icon> - <div mat-line> - <span> - Explore in other templates - </span> - <span class="muted"> - ({{ sameRegionTemplate.length }}) - </span> - </div> - <mat-icon fontSet="fas" [fontIcon]="changeTmplSwitch.switchState ? 'fa-chevron-up' : 'fa-chevron-down'"></mat-icon> - </mat-list-item> - - <!-- change template items --> - <div *ngIf="changeTmplSwitch.switchState" - [attr.aria-label]="AVAILABILITY_IN_OTHER_REF_SPACE"> - <mat-list-item *ngFor="let sameRegion of sameRegionTemplate; let i = index" - [attr.aria-label]="SHOW_IN_OTHER_REF_SPACE + ': ' + sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '') " - (click)="changeView(i)" - mat-ripple> - <mat-icon fontSet="fas" fontIcon="fa-none" mat-list-icon></mat-icon> - <div class="cursorPointer" #exploreTemplateButton mat-line> - <span #exploreTemplateName class="overflow-x-hidden text-truncate" - [matTooltip]="sameRegion.template.name + ' ' + sameRegion.hemisphere"> - {{ sameRegion.template.name + ' ' + sameRegion.hemisphere }} - </span> - </div> - </mat-list-item> - </div> - - </div> </mat-list> </mat-card-content> </mat-card> @@ -217,15 +111,54 @@ </div> </mat-menu> - -<mat-menu - #additionalActions="matMenu" - xPosition="before" - hasBackdrop="false"> - <div> - <button mat-menu-item *ngFor="let sameRegion of sameRegionTemplate; let i = index" (mousedown)="changeView(i)" class="d-flex"> - <span class="overflow-x-hidden text-truncate"> {{sameRegion.template.name}} </span> - <span *ngIf="sameRegion.hemisphere"> - {{sameRegion.hemisphere}}</span> - </button> +<!-- template for switching template --> +<ng-template #regionInOtherTemplatesTmpl let-regionInOtherTemplates="regionInOtherTemplates"> + + <div iav-switch #changeTmplSwitch="iavSwitch"> + + <mat-list-item *ngIf="regionInOtherTemplates.length" + mat-ripple + [attr.aria-label]="SHOW_IN_OTHER_REF_SPACE" + (click)="changeTmplSwitch && changeTmplSwitch.toggle()"> + <mat-icon fontSet="fas" fontIcon="fa-brain" mat-list-icon></mat-icon> + <div mat-line> + <span> + Explore in other templates + </span> + <span class="muted"> + ({{ regionInOtherTemplates.length }}) + </span> + </div> + <mat-icon fontSet="fas" [fontIcon]="changeTmplSwitch.switchState ? 'fa-chevron-up' : 'fa-chevron-down'"></mat-icon> + </mat-list-item> + + <!-- change template items --> + <div *ngIf="changeTmplSwitch.switchState" + [attr.aria-label]="AVAILABILITY_IN_OTHER_REF_SPACE"> + <mat-list-item *ngFor="let sameRegion of regionInOtherTemplates; let i = index" + [attr.aria-label]="SHOW_IN_OTHER_REF_SPACE + ': ' + sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '') " + (click)="changeView(sameRegion)" + mat-ripple + [attr.role]="'button'"> + <mat-icon fontSet="fas" fontIcon="fa-none" mat-list-icon></mat-icon> + <div mat-line> + <ng-container *ngTemplateOutlet="regionInOtherTemplate; context: sameRegion"> + </ng-container> + </div> + </mat-list-item> + </div> </div> -</mat-menu> +</ng-template> + +<!-- template for rendering template name and template hemisphere --> +<ng-template #regionInOtherTemplate let-template="template" let-hemisphere="hemisphere"> + <span class="overflow-x-hidden text-truncate" + [matTooltip]="template.name + (hemisphere ? (' ' + hemisphere) : '')"> + <span> + {{ template.name }} + </span> + <span *ngIf="hemisphere" class="text-muted"> + ({{ hemisphere }}) + </span> + </span> +</ng-template> diff --git a/src/ui/viewerStateController/viewerState.base.ts b/src/ui/viewerStateController/viewerState.base.ts index c74aa7128e374ee01b305992ddae68cd8bf330fa..fdbabfcf73a3f66e5b8338dbbcc826c77370a9e9 100644 --- a/src/ui/viewerStateController/viewerState.base.ts +++ b/src/ui/viewerStateController/viewerState.base.ts @@ -14,7 +14,6 @@ const ACTION_TYPES = { SELECT_TEMPLATE_WITH_NAME: 'SELECT_TEMPLATE_WITH_NAME', SELECT_PARCELLATION_WITH_NAME: 'SELECT_PARCELLATION_WITH_NAME', - TOGGLE_REGION_SELECT: 'TOGGLE_REGION_SELECT', NAVIGATETO_REGION: 'NAVIGATETO_REGION', } diff --git a/src/ui/viewerStateController/viewerState.useEffect.ts b/src/ui/viewerStateController/viewerState.useEffect.ts index 23876b16b5d91f9110c9e25259603fabdb1deef2..741b8d6166ed82d21aa47a2465d038129542ca14 100644 --- a/src/ui/viewerStateController/viewerState.useEffect.ts +++ b/src/ui/viewerStateController/viewerState.useEffect.ts @@ -10,6 +10,7 @@ import { regionFlattener } from "src/util/regionFlattener"; import { VIEWERSTATE_CONTROLLER_ACTION_TYPES } from "./viewerState.base"; import {TemplateCoordinatesTransformation} from "src/services/templateCoordinatesTransformation.service"; import { CLEAR_STANDALONE_VOLUMES } from "src/services/state/viewerState.store"; +import { viewerStateToggleRegionSelect } from "src/services/state/viewerState.store.helper"; @Injectable({ providedIn: 'root', @@ -249,16 +250,11 @@ export class ViewerStateControllerUseEffect implements OnInit, OnDestroy { this.singleClickOnHierarchy$ = this.actions$.pipe( ofType(VIEWERSTATE_CONTROLLER_ACTION_TYPES.SINGLE_CLICK_ON_REGIONHIERARCHY), - map(action => { - return { - ...action, - type: VIEWERSTATE_CONTROLLER_ACTION_TYPES.TOGGLE_REGION_SELECT, - } - }), + map(action => viewerStateToggleRegionSelect(action as any)), ) this.toggleRegionSelection$ = this.actions$.pipe( - ofType(VIEWERSTATE_CONTROLLER_ACTION_TYPES.TOGGLE_REGION_SELECT), + ofType(viewerStateToggleRegionSelect.type), withLatestFrom(this.selectedRegions$), map(([action, regionsSelected]) => { diff --git a/src/util/util.module.ts b/src/util/util.module.ts index 1f8c3f09fb96e5ae7f842102b9f4b95353d31477..f60c57f7efeaba1c4812663f0d0ee62320f50c9e 100644 --- a/src/util/util.module.ts +++ b/src/util/util.module.ts @@ -2,7 +2,7 @@ import { NgModule } from "@angular/core"; import { FilterRowsByVisbilityPipe } from "src/components/flatTree/filterRowsByVisibility.pipe"; import { DelayEventDirective } from "./directives/delayEvent.directive"; import { KeyListner } from "./directives/keyDownListener.directive"; -import { MouseHoverDirective, MouseOverIconPipe, MouseOverTextPipe } from "./directives/mouseOver.directive"; + import { StopPropagationDirective } from "./directives/stopPropagation.directive"; import { FilterNullPipe } from "./pipes/filterNull.pipe"; import { IncludesPipe } from "./pipes/includes.pipe"; @@ -23,9 +23,6 @@ import { LayoutModule } from "@angular/cdk/layout"; FilterRowsByVisbilityPipe, StopPropagationDirective, DelayEventDirective, - MouseHoverDirective, - MouseOverTextPipe, - MouseOverIconPipe, KeyListner, IncludesPipe, SafeResourcePipe, @@ -40,9 +37,6 @@ import { LayoutModule } from "@angular/cdk/layout"; FilterRowsByVisbilityPipe, StopPropagationDirective, DelayEventDirective, - MouseHoverDirective, - MouseOverTextPipe, - MouseOverIconPipe, KeyListner, IncludesPipe, SafeResourcePipe, diff --git a/typings/index.d.ts b/typings/index.d.ts index 2fb1dc3a178d16dd8fdabb97eac85d03b031c875..912053cac2e37f63a50cfa710a1568f27c66a45b 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -21,3 +21,4 @@ declare var MATOMO_URL: string declare var MATOMO_ID: string declare var STRICT_LOCAL: boolean declare var KIOSK_MODE: boolean +declare var SPATIAL_TRANSFORM_BACKEND: string diff --git a/webpack.staticassets.js b/webpack.staticassets.js index b5801554328eeb705ff5d5e92a2c644c5afd7a04..163b00926ab96d02e90a6cdad81ba97ccf9a66f9 100644 --- a/webpack.staticassets.js +++ b/webpack.staticassets.js @@ -72,6 +72,7 @@ module.exports = { PRODUCTION: !!process.env.PRODUCTION, BACKEND_URL: (process.env.BACKEND_URL && JSON.stringify(process.env.BACKEND_URL)) || 'null', DATASET_PREVIEW_URL: JSON.stringify(process.env.DATASET_PREVIEW_URL || 'https://hbp-kg-dataset-previewer.apps.hbp.eu/datasetPreview'), + SPATIAL_TRANSFORM_BACKEND: JSON.stringify(process.env.SPATIAL_TRANSFORM_BACKEND || 'https://hbp-spatial-backend.apps.hbp.eu'), MATOMO_URL: JSON.stringify(process.env.MATOMO_URL || null), MATOMO_ID: JSON.stringify(process.env.MATOMO_ID || null), USE_LOGO: JSON.stringify(process.env.USE_LOGO || 'hbp' || 'ebrains' || 'fzj'),