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 f673eaf commit e8e7404Copy full SHA for e8e7404
fmriprep/workflows/base.py
@@ -525,7 +525,7 @@ def init_single_subject_wf(
525
526
summary = pe.Node(SubjectSummary(
527
std_spaces=list(std_spaces.keys()),
528
- nstd_spaces=list(set(NONSTANDARD_REFERENCES).intersection(output_spaces.keys()))),
+ nstd_spaces=sorted(set(NONSTANDARD_REFERENCES).intersection(output_spaces.keys()))),
529
name='summary', run_without_submitting=True)
530
531
about = pe.Node(AboutSummary(version=__version__,
0 commit comments