Skip to content

Commit c644343

Browse files
committed
bug: copyfile=False caused execution input to be changed from the correct directory (previous node) to the current node directory
1 parent a3c391c commit c644343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/dtitk/registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def _list_outputs(self):
161161

162162
class ComposeXfmInputSpec(CommandLineInputSpec):
163163
in_df = File(desc='diffeomorphic warp file', exists=True,
164-
argstr="-df %s", copyfile=False, mandatory=True)
164+
argstr="-df %s", mandatory=True)
165165
in_aff = File(desc='affine transform file', exists=True,
166166
argstr="-aff %s", mandatory=True)
167167
out_file = File(desc='output path',

0 commit comments

Comments
 (0)