Skip to content

Commit e8e7404

Browse files
committed
enh: help nipype caching ensuring order of input to summary
1 parent f673eaf commit e8e7404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/workflows/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def init_single_subject_wf(
525525

526526
summary = pe.Node(SubjectSummary(
527527
std_spaces=list(std_spaces.keys()),
528-
nstd_spaces=list(set(NONSTANDARD_REFERENCES).intersection(output_spaces.keys()))),
528+
nstd_spaces=sorted(set(NONSTANDARD_REFERENCES).intersection(output_spaces.keys()))),
529529
name='summary', run_without_submitting=True)
530530

531531
about = pe.Node(AboutSummary(version=__version__,

0 commit comments

Comments
 (0)