Merged
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff 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 DownExpand 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