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.
2 parents 09efab5 + c57826e commit 056a853Copy full SHA for 056a853
fmriprep/workflows/base.py
@@ -364,11 +364,15 @@ def init_single_subject_wf(subject_id):
364
365
# SDC Step 1: Run basic heuristics to identify available data for fieldmap estimation
366
# For now, no fmapless
367
+ filters = None
368
+ if config.execution.bids_filters is not None:
369
+ filters = config.execution.bids_filters.get("fmap")
370
fmap_estimators = find_estimators(
371
layout=config.execution.layout,
372
subject=subject_id,
373
fmapless=bool(config.workflow.use_syn_sdc),
374
force_fmapless=config.workflow.force_syn,
375
+ bids_filters=filters,
376
)
377
378
if config.workflow.use_syn_sdc and not fmap_estimators:
0 commit comments