Skip to content
Merged
Changes from 1 commit
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
2 changes: 2 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 Down Expand Up @@ -497,6 +498,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