Skip to content

Commit 1e6b4f2

Browse files
slimnsourjosephmje
authored andcommitted
Apply suggestions from @josephmje code review
Co-authored-by: Michael Joseph <[email protected]>
1 parent 10639df commit 1e6b4f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

dmriprep/workflows/dwi/eddy.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def init_eddy_wf(debug=False, name="eddy_wf"):
104104
included in FSL {Eddy().version} [@eddy].
105105
"""
106106
eddy = pe.Node(
107-
Eddy(repol=True, cnr_maps=True, residuals=True, method="jac"),
107+
Eddy(),
108108
name="eddy",
109109
)
110110

@@ -133,6 +133,10 @@ def init_eddy_wf(debug=False, name="eddy_wf"):
133133
("dwi_file", "in_file"),
134134
("metadata", "in_meta")
135135
]),
136+
(gen_eddy_files, eddy, [
137+
("out_acqparams", "in_acqp"),
138+
("out_index", "in_index"),
139+
]),
136140
(eddy, outputnode, [
137141
("out_corrected", "out_eddy"),
138142
("out_rotated_bvecs", "out_rotated_bvecs")

0 commit comments

Comments
 (0)