Skip to content

Commit afbe297

Browse files
committed
added missing copyfile for misbehaving interfaces
1 parent 8243c31 commit afbe297

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ class TShiftInputSpec(AFNICommandInputSpec):
8585
argstr='%s',
8686
position=-1,
8787
mandatory=True,
88-
exists=True)
88+
exists=True,
89+
copyfile=False)
8990

9091
out_file = File(name_template="%s_tshift", desc='output image file name',
9192
argstr='-prefix %s', name_source="in_file")
@@ -268,7 +269,8 @@ class ResampleInputSpec(AFNICommandInputSpec):
268269
argstr='-inset %s',
269270
position=-1,
270271
mandatory=True,
271-
exists=True)
272+
exists=True,
273+
copyfile=False)
272274

273275
out_file = File(name_template="%s_resample", desc='output image file name',
274276
argstr='-prefix %s', name_source="in_file")

0 commit comments

Comments
 (0)