Skip to content

Commit

Permalink
Merge tag '23.2.2'
Browse files Browse the repository at this point in the history
23.2.2 (May 06, 2024)

Bug fix release in the 23.2.x series.

Fixes an issue with broken connections, which only affects ``--level resampling``.

* FIX: Add datasink fill-in step to resampling level (#3254)
  • Loading branch information
effigies committed May 6, 2024
2 parents 9f69192 + 6c95ebe commit 15c29d8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
23.2.2 (May 06, 2024)
=====================
Bug fix release in the 23.2.x series.

Fixes an issue with broken connections, which only affects ``--level resampling``.

* FIX: Add datasink fill-in step to resampling level (#3254)


23.2.1 (March 06, 2024)
=======================
Bug fix release in the 23.2.x series.
Expand Down
5 changes: 5 additions & 0 deletions fmriprep/workflows/bold/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,11 @@ def init_bold_wf(
]) # fmt:skip

if config.workflow.level == 'resampling':
# Fill-in datasinks of reportlets seen so far
for node in workflow.list_node_names():
if node.split('.')[-1].startswith('ds_report'):
workflow.get_node(node).inputs.base_directory = fmriprep_dir
workflow.get_node(node).inputs.source_file = bold_file
return workflow

# Resample to anatomical space
Expand Down

0 comments on commit 15c29d8

Please sign in to comment.