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 b2dcc99 commit bbf85e5Copy full SHA for bbf85e5
fmriprep/workflows/base.py
@@ -614,7 +614,10 @@ def init_single_subject_wf(subject_id: str):
614
from sdcflows import fieldmaps as fm
615
from sdcflows.workflows.base import init_fmap_preproc_wf
616
617
+ fallback_trt = config.workflow.fallback_total_readout_time
618
fmap_wf = init_fmap_preproc_wf(
619
+ use_metadata_estimates=fallback_trt == 'estimated',
620
+ fallback_total_readout_time=fallback_trt if isinstance(fallback_trt, float) else None,
621
debug='fieldmaps' in config.execution.debug,
622
estimators=fmap_estimators,
623
omp_nthreads=omp_nthreads,
0 commit comments