Skip to content

Commit

Permalink
Merge pull request nipy#3617 from tsalo/add-genericlabel
Browse files Browse the repository at this point in the history
[ENH] Add GenericLabel to ANTS ApplyTransforms.
  • Loading branch information
effigies committed Dec 6, 2023
2 parents b066807 + 0114009 commit 5ef9fe4
Showing 1 changed file with 3 additions and 0 deletions.
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",
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

0 comments on commit 5ef9fe4

Please sign in to comment.