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 581b7dd commit d1fd368Copy full SHA for d1fd368
fmriprep/workflows/base.py
@@ -553,7 +553,10 @@ def init_single_subject_wf(subject_id: str):
553
from sdcflows import fieldmaps as fm
554
from sdcflows.workflows.base import init_fmap_preproc_wf
555
556
+ fallback_trt = config.workflows.fallback_total_readout_time
557
fmap_wf = init_fmap_preproc_wf(
558
+ use_metadata_estimates=fallback_trt == 'estimated',
559
+ fallback_total_readout_time=fallback_trt if isinstance(fallback_trt, float) else None,
560
debug='fieldmaps' in config.execution.debug,
561
estimators=fmap_estimators,
562
omp_nthreads=omp_nthreads,
0 commit comments