From 9d8139b0e3b9d9effc00103d341065c39c013a8c Mon Sep 17 00:00:00 2001 From: Eva Caceres Date: Mon, 11 Dec 2023 15:15:31 +0100 Subject: [PATCH] sort items --- cg/constants/housekeeper_tags.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cg/constants/housekeeper_tags.py b/cg/constants/housekeeper_tags.py index bf31818de3..aeb1591102 100644 --- a/cg/constants/housekeeper_tags.py +++ b/cg/constants/housekeeper_tags.py @@ -55,20 +55,20 @@ class SequencingFileTag(StrEnum): class AnalysisTag(StrEnum): """Tags for analysis files.""" - MULTIQC_HTML: str = "multiqc-html" - FUSION: str = "fusion" ARRIBA: str = "arriba" - STARFUSION: str = "star-fusion" + ARRIBA_VISUALIZATION: str = "arriba-visualisation" + FUSION: str = "fusion" FUSIONCATCHER: str = "fusioncatcher" FUSIONCATCHER_SUMMARY: str = "fusioncatcher-summary" FUSIONINSPECTOR: str = "fusioninspector" + FUSIONINSPECTOR_HTML: str = "fusioninspector-html" FUSIONREPORT: str = "fusionreport" + GENE_COUNTS: str = "gene-counts" + MULTIQC_HTML: str = "multiqc-html" RESEARCH: str = "research" - FUSIONINSPECTOR_HTML: str = "fusioninspector-html" - ARRIBA_VISUALIZATION: str = "arriba-visualisation" RNA: str = "rna" + STARFUSION: str = "star-fusion" VCF_FUSION: str = "vcf-fusion" - GENE_COUNTS: str = "gene-counts" class HkMipAnalysisTag: