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 82e9f8b commit 729b5b9Copy full SHA for 729b5b9
fmriprep/workflows/base.py
@@ -586,12 +586,8 @@ def init_single_subject_wf(subject_id: str):
586
# (typically, more than two EPI PE directions), or
587
# 2. Two modalities are involved, with at most two images to pass
588
# into FSL TOPUP.
589
- if (
590
- len(set(suffices)) == 1
591
- or (
592
- len(suffices) == 2
593
- and all(suf in ('epi', 'bold', 'sbref') for suf in suffices)
594
- )
+ if len(set(suffices)) == 1 or (
+ len(suffices) == 2 and all(suf in ('epi', 'bold', 'sbref') for suf in suffices)
595
):
596
wf_inputs = getattr(fmap_wf.inputs, f'in_{estimator.bids_id}')
597
wf_inputs.in_data = [str(s.path) for s in estimator.sources]
0 commit comments