8.4. Computer Parcel Aggregation.

This example uses the ParcelAggregation marker to compute the mean of each parcel using the Schaefer parcellations (100 rois, 7 Yeo networks) for both 3D and 4D NIfTI.

Authors: Federico Raimondo, Synchon Mandal

License: BSD 3 clause

from junifer.testing.datagrabbers import (
    OasisVBMTestingDataGrabber,
    SPMAuditoryTestingDataGrabber,
)
from junifer.datareader import DefaultDataReader
from junifer.markers import ParcelAggregation
from junifer.utils import configure_logging

Set the logging level to info to see extra information

configure_logging(level="INFO")
/__w/junifer/junifer/junifer/utils/logging.py:155: UserWarning: The '__version__' attribute is deprecated and will be removed in MarkupSafe 3.1. Use feature detection, or `importlib.metadata.version("markupsafe")`, instead.
  vstring = str(getattr(module, "__version__", None))
2025-09-24 13:48:03,424 - JUNIFER - INFO - ===== Lib Versions =====
2025-09-24 13:48:03,424 - JUNIFER - INFO - click: 8.1.8
2025-09-24 13:48:03,424 - JUNIFER - INFO - numpy: 1.26.4
2025-09-24 13:48:03,424 - JUNIFER - INFO - scipy: 1.15.0
2025-09-24 13:48:03,424 - JUNIFER - INFO - datalad: 1.1.6
2025-09-24 13:48:03,424 - JUNIFER - INFO - pandas: 2.1.4
2025-09-24 13:48:03,424 - JUNIFER - INFO - nibabel: 5.3.2
2025-09-24 13:48:03,424 - JUNIFER - INFO - nilearn: 0.10.4
2025-09-24 13:48:03,424 - JUNIFER - INFO - sqlalchemy: 2.0.43
2025-09-24 13:48:03,424 - JUNIFER - INFO - ruamel.yaml: 0.18.15
2025-09-24 13:48:03,424 - JUNIFER - INFO - tqdm: 4.66.6
2025-09-24 13:48:03,424 - JUNIFER - INFO - templateflow: 24.2.2
2025-09-24 13:48:03,424 - JUNIFER - INFO - junifer_data: None
2025-09-24 13:48:03,425 - JUNIFER - INFO - junifer: 0.0.7.dev217
2025-09-24 13:48:03,425 - JUNIFER - INFO - ========================

Perform parcel aggregation on VBM GM data (3D) from OASIS dataset

with OasisVBMTestingDataGrabber() as dg:
    # Get the first element
    element = dg.get_elements()[0]
    # Read the element
    element_data = DefaultDataReader().fit_transform(dg[element])
    # Initialize marker
    marker = ParcelAggregation(parcellation="Schaefer100x7", method="mean")
    # Compute feature
    feature = marker.fit_transform(element_data)
    # Print the output
    print(feature.keys())
    print(feature["VBM_GM"]["aggregation"]["data"].shape)  # Shape is (1 x parcels)
2025-09-24 13:48:03,430 - JUNIFER - INFO - Getting element sub-01
2025-09-24 13:48:03,430 - JUNIFER - INFO - Reading VBM_GM from /github/home/nilearn_data/oasis1/OAS1_0001_MR1/mwrc1OAS1_0001_MR1_mpr_anon_fslswapdim_bet.nii.gz
2025-09-24 13:48:03,430 - JUNIFER - INFO - VBM_GM is of type NIFTI
2025-09-24 13:48:03,431 - JUNIFER - INFO - Computing VBM_GM
2025-09-24 13:48:03,432 - JUNIFER - INFO - Parcellation will be warped from MNI152NLin6Asym to MNI152Lin using highest resolution
2025-09-24 13:48:03,432 - JUNIFER - INFO - Parcellation parameters:
2025-09-24 13:48:03,432 - JUNIFER - INFO -      resolution: None
2025-09-24 13:48:03,432 - JUNIFER - INFO -      n_rois: 100
2025-09-24 13:48:03,432 - JUNIFER - INFO -      yeo_networks: 7
2025-09-24 13:48:03,432 - JUNIFER - INFO - Resolution set to None, using highest resolution.
2025-09-24 13:48:03,509 - JUNIFER - INFO - Loading parcellation: /github/home/junifer_data/v4/parcellations/Schaefer2018/Yeo2011/Schaefer2018_100Parcels_7Networks_order_FSLMNI152_1mm.nii.gz
2025-09-24 13:48:05,900 - JUNIFER - INFO - Downloading template MNI152Lin (T1w in resolution 1)
2025-09-24 13:48:06,415 - JUNIFER - INFO - antsApplyTransforms command to be executed:
antsApplyTransforms -d 3 -e 3 -n 'GenericLabel[NearestNeighbor]' -i /tmp/junifer/tmp2m3jhq9x/ants_parcellation_warper_Schaefer100x7_from_MNI152NLin6Asym_to_MNI152Lin_17b2201a-994d-11f0-83de-7258d444b196quk9f3tm/prewarp_parcellation.nii.gz -r /tmp/junifer/tmp2m3jhq9x/ants_parcellation_warper_Schaefer100x7_from_MNI152NLin6Asym_to_MNI152Lin_17b2201a-994d-11f0-83de-7258d444b196quk9f3tm/MNI152Lin_T1w.nii.gz -t /github/home/junifer_data/v4/.git/annex/objects/JQ/Pp/SHA256E-s145422752--5091350b36f951d455dabd429ebe86c493c75a0217dca311ae355f1d62e080b0.h5/SHA256E-s145422752--5091350b36f951d455dabd429ebe86c493c75a0217dca311ae355f1d62e080b0.h5 -o /tmp/junifer/tmp2m3jhq9x/ants_parcellation_warper_Schaefer100x7_from_MNI152NLin6Asym_to_MNI152Lin_17b2201a-994d-11f0-83de-7258d444b196quk9f3tm/parcellation_warped.nii.gz
2025-09-24 13:48:12,819 - JUNIFER - INFO - antsApplyTransforms command succeeded with the following output:

2025-09-24 13:48:14,375 - JUNIFER - INFO - No storage specified, returning dictionary
dict_keys(['VBM_GM'])
(1, 100)

Perform parcel aggregation on BOLD data (4D) from SPM Auditory dataset

with SPMAuditoryTestingDataGrabber() as dg:
    # Get the first element
    element = dg.get_elements()[0]
    # Read the element
    element_data = DefaultDataReader().fit_transform(dg[element])
    # Initialize marker
    marker = ParcelAggregation(
        parcellation="Schaefer100x7", method="mean", on="BOLD"
    )
    # Compute feature
    feature = marker.fit_transform(element_data)
    # Print the output
    print(feature.keys())
    print(feature["BOLD"]["aggregation"]["data"].shape)  # Shape is (timepoints x parcels)
2025-09-24 13:48:14,376 - JUNIFER - INFO - Getting element sub001

Dataset created in /github/home/nilearn_data/spm_auditory

Data absent, downloading...
Downloading data from https://www.fil.ion.ucl.ac.uk/spm/download/data/MoAEpilot/MoAEpilot.zip ...

Downloaded 3031040 of 34212021 bytes (8.9%,   10.5s remaining)
Downloaded 7102464 of 34212021 bytes (20.8%,    7.7s remaining)
Downloaded 11313152 of 34212021 bytes (33.1%,    6.1s remaining)
Downloaded 15728640 of 34212021 bytes (46.0%,    4.7s remaining)
Downloaded 20242432 of 34212021 bytes (59.2%,    3.5s remaining)
Downloaded 24788992 of 34212021 bytes (72.5%,    2.3s remaining)
Downloaded 29327360 of 34212021 bytes (85.7%,    1.2s remaining)
Downloaded 33882112 of 34212021 bytes (99.0%,    0.1s remaining) ...done. (9 seconds, 0 min)
Extracting data from /github/home/nilearn_data/spm_auditory/sub001/MoAEpilot.zip..... done.
2025-09-24 13:48:26,301 - JUNIFER - INFO - Reading BOLD from /tmp/tmpqh6vhvi_/sub001_bold.nii.gz
2025-09-24 13:48:26,301 - JUNIFER - INFO - BOLD is of type NIFTI
2025-09-24 13:48:26,302 - JUNIFER - INFO - Reading T1w from /tmp/tmpqh6vhvi_/sub001_T1w.nii.gz
2025-09-24 13:48:26,302 - JUNIFER - INFO - T1w is of type NIFTI
2025-09-24 13:48:26,303 - JUNIFER - INFO - Computing BOLD
2025-09-24 13:48:26,303 - JUNIFER - INFO - Parcellation will be warped from MNI152NLin6Asym to MNI152Lin using highest resolution
2025-09-24 13:48:26,303 - JUNIFER - INFO - Parcellation parameters:
2025-09-24 13:48:26,303 - JUNIFER - INFO -      resolution: None
2025-09-24 13:48:26,303 - JUNIFER - INFO -      n_rois: 100
2025-09-24 13:48:26,303 - JUNIFER - INFO -      yeo_networks: 7
2025-09-24 13:48:26,303 - JUNIFER - INFO - Resolution set to None, using highest resolution.
2025-09-24 13:48:26,381 - JUNIFER - INFO - Loading parcellation: /github/home/junifer_data/v4/parcellations/Schaefer2018/Yeo2011/Schaefer2018_100Parcels_7Networks_order_FSLMNI152_1mm.nii.gz
2025-09-24 13:48:28,794 - JUNIFER - INFO - Downloading template MNI152Lin (T1w in resolution 1)
2025-09-24 13:48:29,304 - JUNIFER - INFO - antsApplyTransforms command to be executed:
antsApplyTransforms -d 3 -e 3 -n 'GenericLabel[NearestNeighbor]' -i /tmp/junifer/tmp2m3jhq9x/ants_parcellation_warper_Schaefer100x7_from_MNI152NLin6Asym_to_MNI152Lin_2554d69a-994d-11f0-83de-7258d444b196cftdfs5d/prewarp_parcellation.nii.gz -r /tmp/junifer/tmp2m3jhq9x/ants_parcellation_warper_Schaefer100x7_from_MNI152NLin6Asym_to_MNI152Lin_2554d69a-994d-11f0-83de-7258d444b196cftdfs5d/MNI152Lin_T1w.nii.gz -t /github/home/junifer_data/v4/.git/annex/objects/JQ/Pp/SHA256E-s145422752--5091350b36f951d455dabd429ebe86c493c75a0217dca311ae355f1d62e080b0.h5/SHA256E-s145422752--5091350b36f951d455dabd429ebe86c493c75a0217dca311ae355f1d62e080b0.h5 -o /tmp/junifer/tmp2m3jhq9x/ants_parcellation_warper_Schaefer100x7_from_MNI152NLin6Asym_to_MNI152Lin_2554d69a-994d-11f0-83de-7258d444b196cftdfs5d/parcellation_warped.nii.gz
2025-09-24 13:48:35,714 - JUNIFER - INFO - antsApplyTransforms command succeeded with the following output:

2025-09-24 13:48:38,946 - JUNIFER - INFO - No storage specified, returning dictionary
dict_keys(['BOLD'])
(96, 100)

Total running time of the script: (0 minutes 35.525 seconds)

Gallery generated by Sphinx-Gallery