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 66c333f commit e6c6bb6Copy full SHA for e6c6bb6
nipype/interfaces/afni/preprocess.py
@@ -722,10 +722,8 @@ def _list_outputs(self):
722
outputs['out_file'] = os.path.abspath(self.inputs.out_file)
723
724
if not isdefined(self.inputs.oned_file):
725
- outputs['oned_file'] = fname_presuffix(
726
- self.inputs.in_file,
727
- suffix = '%s.1D'%self.inputs.suffix,
728
- use_ext = False, newpath = os.getcwd())
+ outputs['oned_file'] = self._gen_fname(self.inputs.in_file,
+ suffix = '%s.1D'%self.inputs.suffix)
729
else:
730
outputs['oned_file'] = os.path.abspath(self.inputs.oned_file)
731
return outputs
0 commit comments