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 91e42d2 commit 07a3e4fCopy full SHA for 07a3e4f
nipype/interfaces/niftyreg/regutils.py
@@ -418,6 +418,16 @@ def _gen_filename(self, name):
418
419
return None
420
421
+ def _list_outputs(self):
422
+ outputs = self.output_spec().get()
423
+
424
+ if isdefined(self.inputs.out_file):
425
+ outputs['out_file'] = self.inputs.out_file
426
+ else:
427
+ outputs['out_file'] = self._gen_filename('out_file')
428
429
+ return outputs
430
431
@property
432
def cmdline(self):
433
""" Rewrite the cmdline to write options in text_file."""
0 commit comments