Skip to content

Commit

Permalink
move to nitransforms master branch until release
Browse files Browse the repository at this point in the history
  • Loading branch information
bpinsard committed May 17, 2024
1 parent 9e3ae7e commit f55b387
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion niworkflows/interfaces/gradunwarp.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,17 @@
SimpleInterface
)


class _GradUnwarpInputSpec(TraitedSpec):
infile = File(exists=True, mandatory=True, desc="input image to be corrected")
gradfile = File(exists=True, default=None, desc="gradient file")
coeffile = File(exists=True, default=None, desc="coefficients file")
outfile = File("gradunwarped.nii.gz", mandatory=True, usedefault=True, desc="output corrected image")
outfile = File(
"gradunwarped.nii.gz",
mandatory=True,
usedefault=True,
desc="output corrected image"
)
vendor = traits.Enum("siemens", "ge", usedefault=True, desc="scanner vendor")
warp = traits.Bool(desc="warp a volume (as opposed to unwarping)")
nojac = traits.Bool(desc="Do not perform Jacobian intensity correction")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
"nilearn >= 0.5.2",
"nipype >= 1.8.5",
# "nitransforms >= 21.0.0",
"nitransforms@https://github.com/bpinsard/nitransforms/archive/refs/heads/enh/output_displacement_field.zip",
"nitransforms@https://github.com/nipy/nitransforms/archive/refs/heads/master.zip",
"numpy",
"packaging",
"pandas",
Expand Down

0 comments on commit f55b387

Please sign in to comment.