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 47fe00b commit 8382857Copy full SHA for 8382857
nipype/interfaces/fsl/preprocess.py
@@ -35,6 +35,7 @@ class BETInputSpec(FSLCommandInputSpec):
35
argstr="%s",
36
position=0,
37
mandatory=True,
38
+ copyfile=False,
39
)
40
out_file = File(
41
desc="name of output skull stripped image",
@@ -1309,10 +1310,7 @@ def _list_outputs(self):
1309
1310
1311
if key == "out_intensitymap_file" and isdefined(outputs[key]):
1312
basename = FNIRT.intensitymap_file_basename(outputs[key])
- outputs[key] = [
1313
- outputs[key],
1314
- "%s.txt" % basename,
1315
- ]
+ outputs[key] = [outputs[key], "%s.txt" % basename]
1316
return outputs
1317
1318
def _format_arg(self, name, spec, value):
0 commit comments