Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Nov 9, 2023
1 parent fab9c4d commit bf8fa55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aslprep/workflows/asl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ def _last(inlist):
(final_aslref_wf, sdc_coreg_report, [("outputnode.asl_mask", "wm_seg")]),
(inputnode, ds_report_sdc_coreg, [("asl_file", "source_file")]),
(sdc_coreg_report, ds_report_sdc_coreg, [("out_report", "in_file")]),
(unwarp_wf, fmap_report, [(("outputnode.fieldmap", pop_file), "fieldmap")]),
(unwarp_wf, fmap_report, [("outputnode.fieldmap", "fieldmap")]),
(coeff2epi_wf, fmap_report, [("coregister.inverse_warped_image", "reference")]),
(final_aslref_wf, fmap_report, [("outputnode.asl_mask", "mask")]),
(fmap_report, ds_fmap_report, [("out_report", "in_file")]),
Expand All @@ -1295,11 +1295,11 @@ def _last(inlist):
(unwarp_wf, final_aslref_wf, [("outputnode.corrected", "inputnode.asl_file")]),
(unwarp_wf, asl_t1_trans_wf, [
# TEMPORARY: For the moment we can't use frame-wise fieldmaps
(("outputnode.fieldwarp_ref", pop_file), "inputnode.fieldwarp"),
("outputnode.fieldwarp_ref", "inputnode.fieldwarp"),
]),
(unwarp_wf, asl_std_trans_wf, [
# TEMPORARY: For the moment we can't use frame-wise fieldmaps
(("outputnode.fieldwarp_ref", pop_file), "inputnode.fieldwarp"),
("outputnode.fieldwarp_ref", "inputnode.fieldwarp"),
]),
])
# fmt:on
Expand Down

0 comments on commit bf8fa55

Please sign in to comment.