Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bpinsard committed Aug 15, 2023
1 parent 4f0d4cc commit 7e5b56c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion niworkflows/interfaces/gradunwarp.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ 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(name_source=['in_file'], name_template=['%s_gradunwarped', keep_extension=True, desc="output corrected image")
outfile = File(
name_source=['in_file'],
name_template=['%s_gradunwarped'],
keep_extension=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

0 comments on commit 7e5b56c

Please sign in to comment.