Skip to content

Commit

Permalink
Fix connections.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Oct 1, 2024
1 parent 7750eaa commit e63cd84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdcflows/workflows/fit/medic.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ def init_medic_wf(name="medic_wf"):
name="medic",
)
workflow.connect([
(inputnode, medic, [("magnitude", "magnitude")]),
(phase2rad, medic, [("out_file", "metadata")]),
(phase2rad, medic, [("out_file", "phase")]),
(inputnode, medic, [("magnitude", "mag_files")]),
(write_metadata, medic, [("out_file", "metadata")]),
(phase2rad, medic, [("out_file", "phase_files")]),
(medic, outputnode, [
("native_field_map", "fieldmap"),
("displacement_map", "displacement"),
Expand Down

0 comments on commit e63cd84

Please sign in to comment.