Skip to content

Commit

Permalink
FIX: Avoid datasink connection, which will always invalidate cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mgxd committed Jun 3, 2024
1 parent 6501da1 commit 7226e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smriprep/workflows/anatomical.py
Original file line number Diff line number Diff line change
Expand Up @@ -1014,8 +1014,8 @@ def init_anat_fit_wf(
('outputnode.std2anat_xfm', 'inputnode.std2anat_xfm'),
]),
(register_template_wf, template_buffer, [('outputnode.template', 'in2')]),
(ds_template_registration_wf, std2anat_buffer, [('outputnode.std2anat_xfm', 'in2')]),
(ds_template_registration_wf, anat2std_buffer, [('outputnode.anat2std_xfm', 'in2')]),
(register_template_wf, std2anat_buffer, [('outputnode.std2anat_xfm', 'in2')]),
(register_template_wf, anat2std_buffer, [('outputnode.anat2std_xfm', 'in2')]),
])
# fmt:on
if found_xfms:
Expand Down

0 comments on commit 7226e95

Please sign in to comment.