Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nipype/interfaces/ants/legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ class GenWarpFields(antsIntroduction):


class buildtemplateparallelInputSpec(ANTSCommandInputSpec):
dimension = traits.Enum(3, 2, argstr='-d %d', usedefault=True,
desc='image dimension (2 or 3)', position=1)
dimension = traits.Enum(3, 2, 4, argstr='-d %d', usedefault=True,
desc='image dimension (2, 3 or 4)', position=1)
out_prefix = traits.Str('antsTMPL_', argstr='-o %s', usedefault=True,
desc=('Prefix that is prepended to all output '
'files (default = antsTMPL_)'))
Expand Down
4 changes: 2 additions & 2 deletions nipype/interfaces/ants/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ def _list_outputs(self):


class N4BiasFieldCorrectionInputSpec(ANTSCommandInputSpec):
dimension = traits.Enum(3, 2, argstr='-d %d',
dimension = traits.Enum(3, 2, 4, argstr='-d %d',
usedefault=True,
desc='image dimension (2 or 3)')
desc='image dimension (2, 3 or 4)')
input_image = File(argstr='--input-image %s', mandatory=True,
desc=('image to apply transformation to (generally a '
'coregistered functional)'))
Expand Down