We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a4a2a6 commit 965d73cCopy full SHA for 965d73c
src/fmripost_aroma/workflows/base.py
@@ -302,7 +302,8 @@ def init_single_run_wf(bold_file):
302
bold_metadata = config.execution.layout.get_metadata(bold_file)
303
mem_gb = estimate_bold_mem_usage(bold_file)[1]
304
305
- entities = extract_entities(bold_file)
+ entities = config.execution.bids_filters or {}
306
+ entities = {**entities, **extract_entities(bold_file)}
307
308
functional_cache = defaultdict(list, {})
309
if config.execution.derivatives:
0 commit comments