Skip to content

Commit 2bb213d

Browse files
BUG: check for eddy_openmp in the right place
eddy_openmp is placed in the $FSLDIR/bin directory not the $FSLDIR directory
1 parent 96c359d commit 2bb213d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/fsl/epi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def _run_interface(self, runtime):
592592
cmd = self._cmd
593593
if all((FSLDIR != '',
594594
cmd == 'eddy_openmp',
595-
not os.path.exists(os.path.join(FSLDIR, cmd)))):
595+
not os.path.exists(os.path.join(FSLDIR, 'bin', cmd)))):
596596
self._cmd = 'eddy'
597597
runtime = super(Eddy, self)._run_interface(runtime)
598598

0 commit comments

Comments
 (0)