convert
lacuna.io.convert
¶
Connectome conversion utilities for preparing user data.
Converts raw connectome data from various sources (GSP1000, HCP, etc.) into Lacuna-compatible HDF5 format and tractogram formats.
gsp1000_to_hdf5(gsp_dir, mask_path, output_dir, subjects_per_chunk=10, *, max_subjects=None, overwrite=False)
¶
Convert GSP1000 functional data to Lacuna-compatible HDF5 chunks.
Scans a directory of functional NIfTI files from the GSP1000 dataset, extracts time-series from within a brain mask, and saves the data into multiple smaller HDF5 chunk files for efficient analysis.
Expected GSP1000 directory structure: gsp_dir/ └── sub-/ └── func/ └── bld001_rest_*_finalmask.nii.gz
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gsp_dir
|
str | Path
|
Path to the GSP1000 dataset directory |
required |
mask_path
|
str | Path
|
Path to MNI152 brain mask (.nii.gz) |
required |
output_dir
|
str | Path
|
Directory where chunk HDF5 files will be saved |
required |
subjects_per_chunk
|
int
|
Number of subjects to include in each chunk file |
10
|
max_subjects
|
int
|
Maximum number of subjects to process. If set, only the first
|
None
|
overwrite
|
bool
|
Whether to overwrite existing chunk files |
False
|
Returns:
| Type | Description |
|---|---|
list[Path]
|
List of created chunk file paths |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If GSP directory or mask file not found |
ValueError
|
If no matching NIfTI files found in GSP directory |
Examples:
>>> chunk_files = gsp1000_to_hdf5(
... gsp_dir="/data/GSP1000",
... mask_path="/data/templates/MNI152_T1_2mm_Brain_Mask.nii.gz",
... output_dir="/data/connectomes/gsp1000_chunks",
... subjects_per_chunk=10
... )
>>> print(f"Created {len(chunk_files)} chunk files")
Notes
- Each chunk file is self-contained with all necessary metadata
- Timeseries are NOT preprocessed (demeaning, variance normalization) to preserve raw data - preprocessing happens during analysis
- HDF5 files use chunking (1, n_timepoints, n_voxels) for efficient subject-wise access
Source code in src/lacuna/io/convert.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 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 | |
merge_trk_to_tck(source_dir, output_path, *, exclude_patterns=None, overwrite=False)
¶
Merge multiple TrackVis .trk/.trk.gz tractograms into a single MRtrix3 .tck file.
Recursively finds all .trk and .trk.gz files in the source directory, loads their streamlines (excluding files matching specified patterns), and saves them as a single merged .tck tractogram.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_dir
|
str | Path
|
Directory containing .trk/.trk.gz tract files (searched recursively). |
required |
output_path
|
str | Path
|
Output path for the merged .tck file. |
required |
exclude_patterns
|
list[str]
|
List of patterns to match against file paths for exclusion.
Files whose path contains any of these strings (case-insensitive)
are skipped. Default: |
None
|
overwrite
|
bool
|
Whether to overwrite an existing output file. |
False
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the created .tck file. |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If source directory not found. |
ValueError
|
If no .trk/.trk.gz files found or output is not .tck format. |
RuntimeError
|
If merging fails. |
Examples:
>>> tck_path = merge_trk_to_tck(
... source_dir="/data/hcp1065_tracts",
... output_path="/data/hcp1065.tck",
... )
Source code in src/lacuna/io/convert.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | |
trk_to_tck(trk_path, output_path, *, overwrite=False)
¶
Convert TrackVis .trk tractogram to MRtrix3 .tck format using nibabel.
This conversion is necessary because StructuralNetworkMapping uses MRtrix3 tools (tckedit, tckmap, mrcalc) which require .tck format. The default dTOR985 tractogram is distributed in .trk format.
Uses nibabel's streamlines module for pure Python conversion without requiring MRtrix3 to be installed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trk_path
|
str | Path
|
Path to input TrackVis .trk file (e.g., dTOR985.trk) |
required |
output_path
|
str | Path
|
Output path for MRtrix3 .tck file |
required |
overwrite
|
bool
|
Whether to overwrite existing output file |
False
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to created .tck file |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If trk file not found |
ValueError
|
If input is not .trk or output is not .tck format |
RuntimeError
|
If conversion fails |
Examples:
>>> # Convert dTOR985 tractogram
>>> tck_path = trk_to_tck(
... trk_path="/data/dTOR985.trk",
... output_path="/data/dTOR985.tck"
... )
>>>
>>> # Later use in analysis:
>>> analysis = StructuralNetworkMapping(tractogram_path="/data/dTOR985.tck")
Notes
- Uses nibabel for pure Python conversion (no external dependencies)
- Preserves streamline coordinates and header information
- The .tck file can be much larger than .trk due to format differences
- For dTOR985: expect ~5-10GB .tck file from ~2GB .trk file
See Also
nibabel.streamlines: https://nipy.org/nibabel/reference/nibabel.streamlines.html
Source code in src/lacuna/io/convert.py
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | |