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 a3ffceb commit a041648Copy full SHA for a041648
nipype/workflows/smri/freesurfer/autorecon1.py
@@ -86,8 +86,8 @@ def convert_modalities(in_file=None, out_file=None):
86
convert.inputs.in_file = in_file
87
convert.inputs.out_file = out_file
88
convert.inputs.no_scale = True
89
- convert.run()
90
- out_file = os.path.abspath(convert.outputs.out_file)
+ out = convert.run()
+ out_file = os.path.abspath(out.outputs.out_file)
91
return out_file
92
93
T2_convert = pe.Node(Function(['in_file', 'out_file'],
0 commit comments