Skip to content

Commit 4f34b1d

Browse files
committed
Fixed bug in antsRegistration outputs. Close #944
Now, I'll be looking at #883.
1 parent 35c9f46 commit 4f34b1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/ants/registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ def _list_outputs(self):
688688
transformCount,
689689
'Initial',
690690
True)
691-
outputs['forward_transforms'].append(forwardFileName)
691+
outputs['forward_transforms'].append(os.path.abspath(forwardFileName))
692692
outputs['forward_invert_flags'].append(False)
693693
outputs['reverse_transforms'].insert(0,
694694
os.path.abspath(reverseFileName))

0 commit comments

Comments
 (0)