Skip to content

Commit

Permalink
Apply suggestions from @josephmje code review
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Joseph <[email protected]>
  • Loading branch information
2 people authored and oesteban committed Feb 6, 2021
1 parent 10639df commit 1e6b4f2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dmriprep/workflows/dwi/eddy.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def init_eddy_wf(debug=False, name="eddy_wf"):
included in FSL {Eddy().version} [@eddy].
"""
eddy = pe.Node(
Eddy(repol=True, cnr_maps=True, residuals=True, method="jac"),
Eddy(),
name="eddy",
)

Expand Down Expand Up @@ -133,6 +133,10 @@ def init_eddy_wf(debug=False, name="eddy_wf"):
("dwi_file", "in_file"),
("metadata", "in_meta")
]),
(gen_eddy_files, eddy, [
("out_acqparams", "in_acqp"),
("out_index", "in_index"),
]),
(eddy, outputnode, [
("out_corrected", "out_eddy"),
("out_rotated_bvecs", "out_rotated_bvecs")
Expand Down

0 comments on commit 1e6b4f2

Please sign in to comment.