Skip to content

Commit 0e2b7a3

Browse files
committed
Fixed failed test
create_dmri_preprocessing was still calling the epidewarp workflow with its former name
1 parent 4048dca commit 0e2b7a3

File tree

1 file changed

+2
-2
lines changed
  • nipype/workflows/dmri/fsl

1 file changed

+2
-2
lines changed

nipype/workflows/dmri/fsl/epi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def create_dmri_preprocessing(name='dMRI_preprocessing', use_fieldmap=True, fiel
7676
eddy = create_eddy_correct_pipeline()
7777

7878
if use_fieldmap: # we have a fieldmap, so lets use it (yay!)
79-
susceptibility = create_susceptibility_correct_pipeline(
80-
fieldmap_registration=fieldmap_registration)
79+
susceptibility = create_epidewarp_pipeline(
80+
fieldmap_registration=fieldmap_registration)
8181

8282
pipeline.connect([
8383
(inputnode, motion, [('in_file', 'inputnode.in_file'),

0 commit comments

Comments
 (0)