Skip to content

Commit f55b387

Browse files
committed
move to nitransforms master branch until release
1 parent 9e3ae7e commit f55b387

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

niworkflows/interfaces/gradunwarp.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,17 @@
2929
SimpleInterface
3030
)
3131

32+
3233
class _GradUnwarpInputSpec(TraitedSpec):
3334
infile = File(exists=True, mandatory=True, desc="input image to be corrected")
3435
gradfile = File(exists=True, default=None, desc="gradient file")
3536
coeffile = File(exists=True, default=None, desc="coefficients file")
36-
outfile = File("gradunwarped.nii.gz", mandatory=True, usedefault=True, desc="output corrected image")
37+
outfile = File(
38+
"gradunwarped.nii.gz",
39+
mandatory=True,
40+
usedefault=True,
41+
desc="output corrected image"
42+
)
3743
vendor = traits.Enum("siemens", "ge", usedefault=True, desc="scanner vendor")
3844
warp = traits.Bool(desc="warp a volume (as opposed to unwarping)")
3945
nojac = traits.Bool(desc="Do not perform Jacobian intensity correction")

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies = [
3333
"nilearn >= 0.5.2",
3434
"nipype >= 1.8.5",
3535
# "nitransforms >= 21.0.0",
36-
"nitransforms@https://github.com/bpinsard/nitransforms/archive/refs/heads/enh/output_displacement_field.zip",
36+
"nitransforms@https://github.com/nipy/nitransforms/archive/refs/heads/master.zip",
3737
"numpy",
3838
"packaging",
3939
"pandas",

0 commit comments

Comments
 (0)