Skip to content

Commit 7c4c701

Browse files
committed
Fixed missing outputfiles
1 parent e0754aa commit 7c4c701

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/fsl/preprocess.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ def _gen_filename(self, name):
13961396

13971397

13981398
class FIRSTInputSpec(FSLCommandInputSpec):
1399-
in_file = File(exists=True, mandatory=True, position=-2,
1399+
in_file = File(exists=True, mandatory=True, position=-2, copyfile=False,
14001400
argstr='-i %s',
14011401
desc='input data file')
14021402
out_file = File('segmented', usedefault=True, mandatory=True, position=-1,
@@ -1496,12 +1496,12 @@ def _gen_mesh_names(self, name, structures):
14961496
vtks = list()
14971497
for struct in structures:
14981498
vtk = prefix + '-' + struct + '_first.vtk'
1499-
vtks.append(op.abspath(vtk))
1499+
vtks.append(op.abspath(vtk))
15001500
return vtks
15011501
if name == 'bvars':
15021502
bvars = list()
15031503
for struct in structures:
15041504
bvar = prefix + '-' + struct + '_first.bvars'
1505-
bvars.append(op.abspath(bvar))
1505+
bvars.append(op.abspath(bvar))
15061506
return bvars
15071507
return None

0 commit comments

Comments
 (0)