Skip to content

Commit 21f88a2

Browse files
committed
Restore branch label ordering
This is a minor aesthetic change which restores the order of the branch labels in Auspice so that clade appears before emerging_lingeage. The change in ordering was introduced by the previous commit as we moved from a custom script to using `augur clades` interface from Augur v22.0.0 The ordering is not specified and cannot be configured, but in practice it is the order of the keys in the dictionary (and which is stable in CPython 3.6, Python 3.7, and most (all?) JS engines).
1 parent ca6b2d0 commit 21f88a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/snakemake_rules/main_workflow.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1350,8 +1350,8 @@ def _get_node_data_by_wildcards(wildcards):
13501350
rules.refine.output.node_data,
13511351
rules.ancestral.output.node_data,
13521352
rules.translate.output.node_data,
1353-
rules.emerging_lineages.output.clade_data,
13541353
rules.clades.output.clade_data,
1354+
rules.emerging_lineages.output.clade_data,
13551355
rules.recency.output.node_data,
13561356
rules.traits.output.node_data,
13571357
rules.logistic_growth.output.node_data,

0 commit comments

Comments
 (0)