Skip to content

Commit 9a34005

Browse files
committed
FIX: Disable boldref-space outputs unless requested
1 parent 87a90dd commit 9a34005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/workflows/bold/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def init_bold_wf(
335335
]) # fmt:skip
336336

337337
boldref_out = bool(nonstd_spaces.intersection(('func', 'run', 'bold', 'boldref', 'sbref')))
338-
boldref_out |= config.workflow.level == 'full'
338+
boldref_out &= config.workflow.level == 'full'
339339
echos_out = multiecho and config.execution.me_output_echos
340340

341341
if boldref_out or echos_out:

0 commit comments

Comments
 (0)