Note
Click here to download the full example code
8.1. Generic BIDS DataGrabber for datalad.#
This example uses a generic BIDS DataGraber to get the data from a BIDS dataset store in a datalad remote sibling.
Authors: Federico Raimondo
License: BSD 3 clause
from junifer.datagrabber import PatternDataladDataGrabber
from junifer.utils import configure_logging
Set the logging level to info to see extra information
configure_logging(level="INFO")
2023-07-24 05:07:53,998 - JUNIFER - INFO - ===== Lib Versions =====
2023-07-24 05:07:53,998 - JUNIFER - INFO - numpy: 1.25.1
2023-07-24 05:07:53,998 - JUNIFER - INFO - scipy: 1.11.1
2023-07-24 05:07:53,998 - JUNIFER - INFO - pandas: 1.5.3
2023-07-24 05:07:53,998 - JUNIFER - INFO - nilearn: 0.10.0
2023-07-24 05:07:53,998 - JUNIFER - INFO - nibabel: 4.0.2
2023-07-24 05:07:53,998 - JUNIFER - INFO - junifer: 0.0.3
2023-07-24 05:07:53,998 - JUNIFER - INFO - ========================
The BIDS DataGrabber requires three parameters: the types of data we want, the specific pattern that matches each type, and the variables that will be replaced in the patterns.
types = ["T1w", "BOLD"]
patterns = {
"T1w": "{subject}/anat/{subject}_T1w.nii.gz",
"BOLD": "{subject}/func/{subject}_task-rest_bold.nii.gz",
}
replacements = ["subject"]
Additionally, a datalad-based DataGrabber requires the URI of the remote sibling and the location of the dataset within the remote sibling.
Now we can use the DataGrabber within a with context. One thing we can do with any DataGrabber is iterate over the elements. In this case, each element of the DataGrabber is one session.
with PatternDataladDataGrabber(
rootdir=rootdir,
types=types,
patterns=patterns,
uri=repo_uri,
replacements=replacements,
) as dg:
for elem in dg:
print(elem)
2023-07-24 05:07:53,999 - JUNIFER - INFO - `datadir` is None, creating a temporary directory
2023-07-24 05:07:54,000 - JUNIFER - INFO - `datadir` set to /tmp/tmpqxyymv_x/datadir
sub-09
sub-08
sub-02
sub-03
sub-06
sub-07
sub-01
sub-05
sub-04
Another feature of the DataGrabber is the ability to get a specific element by its name. In this case, we index sub-01 and we get the file paths for the two types of data we want (T1w and BOLD).
with PatternDataladDataGrabber(
rootdir=rootdir,
types=types,
patterns=patterns,
uri=repo_uri,
replacements=replacements,
) as dg:
sub01 = dg["sub-01"]
print(sub01)
2023-07-24 05:07:57,100 - JUNIFER - INFO - `datadir` is None, creating a temporary directory
2023-07-24 05:07:57,101 - JUNIFER - INFO - `datadir` set to /tmp/tmp7fhtld4f/datadir
2023-07-24 05:07:59,159 - JUNIFER - INFO - Getting element sub-01
{'T1w': {'path': PosixPath('/tmp/tmp7fhtld4f/datadir/example_bids/sub-01/anat/sub-01_T1w.nii.gz'), 'meta': {'datagrabber': {'class': 'PatternDataladDataGrabber', 'confounds_format': None, 'types': ['T1w', 'BOLD'], 'patterns': {'T1w': '{subject}/anat/{subject}_T1w.nii.gz', 'BOLD': '{subject}/func/{subject}_task-rest_bold.nii.gz'}, 'replacements': ['subject'], 'uri': 'https://gin.g-node.org/juaml/datalad-example-bids', 'datalad_dirty': False, 'datalad_commit_id': '522dfb203afcd2cd55799bf347f9b211919a7338', 'datalad_id': 'fec92475-d9c0-4409-92ba-f041b6a12c40'}, 'dependencies': set(), 'element': {'subject': 'sub-01'}}}, 'BOLD': {'path': PosixPath('/tmp/tmp7fhtld4f/datadir/example_bids/sub-01/func/sub-01_task-rest_bold.nii.gz'), 'meta': {'datagrabber': {'class': 'PatternDataladDataGrabber', 'confounds_format': None, 'types': ['T1w', 'BOLD'], 'patterns': {'T1w': '{subject}/anat/{subject}_T1w.nii.gz', 'BOLD': '{subject}/func/{subject}_task-rest_bold.nii.gz'}, 'replacements': ['subject'], 'uri': 'https://gin.g-node.org/juaml/datalad-example-bids', 'datalad_dirty': False, 'datalad_commit_id': '522dfb203afcd2cd55799bf347f9b211919a7338', 'datalad_id': 'fec92475-d9c0-4409-92ba-f041b6a12c40'}, 'dependencies': set(), 'element': {'subject': 'sub-01'}}}}
Total running time of the script: ( 0 minutes 6.503 seconds)