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.
1 parent 820d1c3 commit c16cb34Copy full SHA for c16cb34
nipype/interfaces/mrtrix3/utils.py
@@ -1329,8 +1329,6 @@ class MTNormalise(CommandLine):
1329
def _list_outputs(self):
1330
outputs = self.output_spec().get()
1331
outputs["out_file_wm"] = op.abspath(self.inputs.out_file_wm)
1332
- if self.inputs.gm_file != Undefined:
1333
- outputs["out_file_gm"] = op.abspath(self.inputs.out_file_gm)
1334
- if self.inputs.csf_file != Undefined:
1335
- outputs["out_file_csf"] = op.abspath(self.inputs.out_file_csf)
+ outputs["out_file_gm"] = op.abspath(self.inputs.out_file_gm)
+ outputs["out_file_csf"] = op.abspath(self.inputs.out_file_csf)
1336
return outputs
0 commit comments