-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Add Pydra tasks for BIDS and CAPS I/O (#1027)
- Loading branch information
Showing
4 changed files
with
197 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from .parsers import parse_bids_file | ||
from .templates import ( | ||
download_mni_template_2009a, | ||
download_mni_template_2009c, | ||
download_ref_template, | ||
) | ||
from .writers import write_bids_file, write_caps_file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
from os import PathLike | ||
from pathlib import Path | ||
from typing import Optional | ||
|
||
from pydra.mark import annotate, task | ||
|
||
|
||
@task | ||
@annotate( | ||
{ | ||
"return": { | ||
"bids_file": Path, | ||
"participant_id": str, | ||
"session_id": Optional[str], | ||
"datatype": str, | ||
"suffix": str, | ||
"extension": str, | ||
"entities": dict, | ||
} | ||
} | ||
) | ||
def parse_bids_file(bids_file: PathLike): | ||
"""Parse the components of a BIDS file. | ||
Examples | ||
-------- | ||
>>> task = parse_bids_file(bids_file=Path("dataset/sub-P01/ses-M00/anat/sub-P01_ses-M00_desc-test_T1w.nii.gz")) | ||
>>> result = task() | ||
>>> result.output.participant_id | ||
'sub-P01' | ||
>>> result.output.session_id | ||
'ses-M00' | ||
>>> result.output.datatype | ||
'anat' | ||
>>> result.output.suffix | ||
'T1w' | ||
>>> result.output.extension | ||
'nii.gz' | ||
>>> result.output.entities | ||
{'desc': 'test'} | ||
""" | ||
bids_file = Path(bids_file) | ||
|
||
datatype = bids_file.parent.name | ||
file_name = bids_file.name | ||
rest, extension = file_name.split(sep=".", maxsplit=1) | ||
rest, suffix = rest.rsplit(sep="_", maxsplit=1) | ||
entities = { | ||
prefix: value for prefix, value in (part.split("-") for part in rest.split("_")) | ||
} | ||
|
||
participant_id = f"sub-{entities.pop('sub')}" | ||
try: | ||
session_id = f"ses-{entities.pop('ses')}" | ||
except KeyError: | ||
session_id = None | ||
|
||
return bids_file, participant_id, session_id, datatype, suffix, extension, entities |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
from os import PathLike | ||
from pathlib import Path | ||
from typing import Optional | ||
|
||
from pydra.mark import annotate, task | ||
|
||
|
||
@task | ||
@annotate({"return": {"output_file": Path}}) | ||
def write_bids_file( | ||
input_file: PathLike, | ||
dataset_path: PathLike, | ||
participant_id: str, | ||
session_id: Optional[str], | ||
datatype: str, | ||
suffix: str, | ||
entities: dict, | ||
) -> Path: | ||
"""Task to write a file to a BIDS dataset. | ||
Examples | ||
-------- | ||
>>> from shutil import rmtree | ||
>>> from tempfile import mkdtemp, mkstemp | ||
>>> test_input_file = Path(mkstemp(suffix=".nii.gz")[1]) | ||
>>> test_output_dir = Path(mkdtemp()) | ||
>>> task = write_bids_file( | ||
... input_file=test_input_file, | ||
... dataset_path=test_output_dir, | ||
... participant_id="P01", | ||
... session_id="M00", | ||
... datatype="anat", | ||
... suffix="T1w", | ||
... entities={"desc": "copy"}, | ||
... ) | ||
>>> result = task() | ||
>>> str(result.output.output_file.relative_to(test_output_dir)) | ||
'sub-P01/ses-M00/anat/sub-P01_ses-M00_desc-copy_T1w.nii.gz' | ||
>>> str(next(test_output_dir.rglob("*.nii.gz")).relative_to(test_output_dir)) | ||
'sub-P01/ses-M00/anat/sub-P01_ses-M00_desc-copy_T1w.nii.gz' | ||
>>> test_input_file.unlink() | ||
>>> rmtree(test_output_dir) | ||
""" | ||
input_file = Path(input_file) | ||
input_ext = input_file.name.split(sep=".", maxsplit=1)[-1] | ||
|
||
output_dir = ( | ||
Path(dataset_path) | ||
/ f"sub-{participant_id}" | ||
/ (f"ses-{session_id}" if session_id else "") | ||
/ datatype | ||
) | ||
|
||
bids_stem = "_".join( | ||
[f"sub-{participant_id}"] | ||
+ ([f"ses-{session_id}"] if session_id else []) | ||
+ ([f"{ent}-{val}" for ent, val in entities.items()] if entities else []) | ||
+ [suffix] | ||
) | ||
|
||
output_file = output_dir / ".".join([bids_stem, input_ext]) | ||
|
||
# Ensure target directory exists. | ||
output_dir.mkdir(parents=True, exist_ok=True) | ||
|
||
# Write source file to target directory. | ||
output_file.write_bytes(input_file.read_bytes()) | ||
|
||
return output_file | ||
|
||
|
||
@task | ||
@annotate({"return": {"output_file": Path}}) | ||
def write_caps_file( | ||
input_file: PathLike, | ||
dataset_path: PathLike, | ||
participant_id: str, | ||
session_id: Optional[str], | ||
datatype: str, | ||
suffix: str, | ||
entities: dict, | ||
) -> Path: | ||
"""Task to write a file a CAPS dataset. | ||
Examples | ||
-------- | ||
>>> from shutil import rmtree | ||
>>> from tempfile import mkdtemp, mkstemp | ||
>>> test_input_file = Path(mkstemp(suffix=".mat")[1]) | ||
>>> test_output_dir = Path(mkdtemp()) | ||
>>> task = write_caps_file( | ||
... input_file=test_input_file, | ||
... dataset_path=test_output_dir, | ||
... participant_id="P01", | ||
... session_id="M00", | ||
... datatype="anat", | ||
... suffix="space-{space}_res-{res}_affine", | ||
... entities={"space": "MNI152", "res": "1x1x1"}, | ||
... ) | ||
>>> result = task() | ||
>>> str(result.output.output_file.relative_to(test_output_dir)) | ||
'sub-P01/ses-M00/anat/sub-P01_ses-M00_space-MNI152_res-1x1x1_affine.mat' | ||
>>> str(next(test_output_dir.rglob("*.mat")).relative_to(test_output_dir)) | ||
'sub-P01/ses-M00/anat/sub-P01_ses-M00_space-MNI152_res-1x1x1_affine.mat' | ||
>>> test_input_file.unlink() | ||
>>> rmtree(test_output_dir) | ||
""" | ||
input_file = Path(input_file) | ||
input_ext = input_file.name.split(sep=".", maxsplit=1)[-1] | ||
|
||
output_dir = ( | ||
Path(dataset_path) | ||
/ f"sub-{participant_id}" | ||
/ (f"ses-{session_id}" if session_id else "") | ||
/ datatype.format(**entities) | ||
) | ||
|
||
caps_stem = "_".join( | ||
[f"sub-{participant_id}"] | ||
+ ([f"ses-{session_id}"] if session_id else []) | ||
+ [suffix.format(**entities)] | ||
) | ||
|
||
output_file = output_dir / ".".join([caps_stem, input_ext]) | ||
|
||
# Ensure target directory exists. | ||
output_dir.mkdir(parents=True, exist_ok=True) | ||
|
||
# Write source file to target directory. | ||
output_file.write_bytes(input_file.read_bytes()) | ||
|
||
return output_file |