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 29a5b6a commit 0e63da8Copy full SHA for 0e63da8
nipype/interfaces/fsl/model.py
@@ -1809,13 +1809,7 @@ class GLM(FSLCommand):
1809
output_spec = GLMOutputSpec
1810
1811
def _list_outputs(self):
1812
- outputs = self.output_spec().get()
1813
-
1814
- outputs['out_file'] = self.inputs.out_file
1815
- # Generate an out_file if one is not provided
1816
- if not isdefined(outputs['out_file']) and isdefined(self.inputs.in_file):
1817
- outputs['out_file'] = self._gen_filename('out_file')
1818
- outputs['out_file'] = os.path.abspath(outputs['out_file'])
+ outputs = super(GLM, self)._list_outputs()
1819
1820
if isdefined(self.inputs.out_cope):
1821
outputs['out_cope'] = os.path.abspath(self.inputs.out_cope)
0 commit comments