We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 59204ba + 692601e commit 934adc6Copy full SHA for 934adc6
1 file changed
spimquant/workflow/rules/common.smk
@@ -55,13 +55,12 @@ def get_template_for_reg(wildcards):
55
56
57
def get_stains_all_subjects():
58
-
59
stain_sets = [
60
set(ZarrNii.from_ome_zarr(zarr).list_channels())
61
for zarr in inputs["spim"].expand()
62
]
63
if all(s == stain_sets[0] for s in stain_sets):
64
- return list(stain_sets[0])
+ return sorted(stain_sets[0])
65
else:
66
raise ValueError(f"stains across subjects are not consistent, {stain_sets}")
67
0 commit comments