bidsify
lacuna.io.bidsify
¶
BIDSify module - Convert NIfTI files to BIDS format.
This module provides functionality to convert a directory of NIfTI mask files to a BIDS-compliant directory structure.
Examples:
>>> from lacuna.io.bidsify import bidsify
>>>
>>> # Convert directory of masks to BIDS
>>> bidsify(
... input_dir="/data/masks",
... output_dir="/data/bids_masks",
... space="MNI152NLin6Asym",
... label="lesion",
... )
bidsify(input_dir, output_dir, space, session=None, label=None)
¶
Convert a directory of NIfTI files to BIDS format.
Takes NIfTI mask files from input_dir and creates a BIDS-compliant directory structure in output_dir. Each input filename becomes a subject ID (with special characters removed).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_dir
|
Path or str
|
Directory containing NIfTI mask files (.nii or .nii.gz) |
required |
output_dir
|
Path or str
|
Output directory for BIDS dataset |
required |
space
|
str
|
Coordinate space of the masks. Must be one of: - "MNI152NLin6Asym" - "MNI152NLin2009cAsym" |
required |
session
|
str
|
Session label (e.g., "01" or "baseline"). If provided, creates session subdirectory structure. |
None
|
label
|
str
|
Label for the mask entity (e.g., "lesion", "tumor"). If not provided, no label entity is included in the filename. |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the created BIDS dataset directory |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If input_dir does not exist |
ValueError
|
If space is not valid or input_dir contains no NIfTI files |
Examples:
>>> bidsify(
... input_dir="/data/masks",
... output_dir="/data/bids",
... space="MNI152NLin6Asym",
... session="01",
... label="lesion",
... )
PosixPath('/data/bids')
Notes
The output structure follows BIDS conventions:
Without session::
output_dir/
├── dataset_description.json
├── participants.tsv
└── sub-<id>/
└── anat/
└── sub-<id>_space-<space>_[label-<label>_]mask.nii.gz
With session::
output_dir/
├── dataset_description.json
├── participants.tsv
└── sub-<id>/
└── ses-<session>/
└── anat/
└── sub-<id>_ses-<session>_space-<space>_[label-<label>_]mask.nii.gz
Source code in src/lacuna/io/bidsify.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | |
sanitize_subject_id(filename)
¶
Sanitize a filename to be a valid BIDS subject ID.
Removes all non-alphanumeric characters from the filename.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
str
|
Original filename (without extension) |
required |
Returns:
| Type | Description |
|---|---|
str
|
Sanitized subject ID containing only alphanumeric characters |
Examples: