Skip to content

Commit

Permalink
Fix wrong wf connection
Browse files Browse the repository at this point in the history
  • Loading branch information
khoffschlag committed Jan 17, 2025
1 parent e4692a6 commit 9071be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PUMI/pipelines/func/func2func.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def qc(wf, registered_func_volume='middle', func_2_volume='middle', **kwargs):
wf.connect('inputspec', 'registered_func', one_registered_func_volume, 'in_file')

one_func_2_volume = pick_volume('one_func_2_volume', volume=func_2_volume, sink=False)
wf.connect('inputspec', 'registered_func', one_func_2_volume, 'in_file')
wf.connect('inputspec', 'func_2', one_func_2_volume, 'in_file')

qc_vol2png = vol2png(wf.name + '_vol2png')
wf.connect(one_registered_func_volume, 'out_file', qc_vol2png, 'overlay_image')
Expand Down

0 comments on commit 9071be6

Please sign in to comment.