We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb1cf5 commit b6e0f3eCopy full SHA for b6e0f3e
fmriprep/utils/transforms.py
@@ -20,7 +20,7 @@ def load_transforms(xfm_paths: list[Path], inverse: list[bool]) -> nt.base.Trans
20
path = Path(path)
21
if path.suffix == '.h5':
22
# Load as a TransformChain
23
- xfm = nt.manip.load(path)
+ xfm = nt.manip.load(path, fmt="h5")
24
else:
25
xfm = nt.linear.load(path)
26
if inv:
0 commit comments