We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75b598a + 7963e31 commit c37fcfbCopy full SHA for c37fcfb
nipype/interfaces/ants/segmentation.py
@@ -537,6 +537,11 @@ def _parse_inputs(self, skip=None):
537
self._out_bias_file = bias_image
538
return super(N4BiasFieldCorrection, self)._parse_inputs(skip=skip)
539
540
+ def _list_outputs(self):
541
+ outputs = super(N4BiasFieldCorrection, self)._list_outputs()
542
+ if self._out_bias_file:
543
+ outputs["bias_image"] = os.path.abspath(self._out_bias_file)
544
+ return outputs
545
546
class CorticalThicknessInputSpec(ANTSCommandInputSpec):
547
dimension = traits.Enum(
0 commit comments