Skip to content

Commit 15c29d8

Browse files
committed
Merge tag '23.2.2'
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)
2 parents 9f69192 + 6c95ebe commit 15c29d8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
23.2.2 (May 06, 2024)
2+
=====================
3+
Bug fix release in the 23.2.x series.
4+
5+
Fixes an issue with broken connections, which only affects ``--level resampling``.
6+
7+
* FIX: Add datasink fill-in step to resampling level (#3254)
8+
9+
110
23.2.1 (March 06, 2024)
211
=======================
312
Bug fix release in the 23.2.x series.

fmriprep/workflows/bold/base.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,11 @@ def init_bold_wf(
375375
]) # fmt:skip
376376

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

380385
# Resample to anatomical space

0 commit comments

Comments
 (0)