Skip to content
Merged
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
3 changes: 3 additions & 0 deletions nipype/interfaces/ants/resampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@ class ApplyTransformsInputSpec(ANTSCommandInputSpec):
"MultiLabel",
"Gaussian",
"BSpline",
"GenericLabel",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you need to add traits.Tuple(traits.Str()) to interpolation_parameters options, as well.

argstr="%s",
usedefault=True,
)
Expand All @@ -357,6 +358,7 @@ class ApplyTransformsInputSpec(ANTSCommandInputSpec):
traits.Tuple(
traits.Float(), traits.Float() # Gaussian/MultiLabel (sigma, alpha)
),
traits.Tuple(traits.Str()), # GenericLabel
)
transforms = InputMultiObject(
traits.Either(File(exists=True), "identity"),
Expand Down Expand Up @@ -497,6 +499,7 @@ def _format_arg(self, opt, spec, val):
"BSpline",
"MultiLabel",
"Gaussian",
"GenericLabel",
] and isdefined(self.inputs.interpolation_parameters):
return "--interpolation {}[ {} ]".format(
self.inputs.interpolation,
Expand Down