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 b5619db commit fb8e07aCopy full SHA for fb8e07a
fmriprep/workflows/base.py
@@ -563,8 +563,8 @@ def init_single_subject_wf(subject_id: str):
563
elif estimator.method == fm.EstimatorType.ANAT:
564
from sdcflows.workflows.fit.syn import init_syn_preprocessing_wf
565
566
- sources = [str(s.path) for s in estimator.sources if s.suffix == "bold"]
567
- source_meta = [s.metadata for s in estimator.sources if s.suffix == "bold"]
+ sources = [str(s.path) for s in estimator.sources if s.suffix in ("bold", "sbref")]
+ source_meta = [s.metadata for s in estimator.sources if s.suffix in ("bold", "sbref")]
568
syn_preprocessing_wf = init_syn_preprocessing_wf(
569
omp_nthreads=config.nipype.omp_nthreads,
570
debug=config.execution.sloppy,
0 commit comments