From 985d5d37175182661a98d15d5e2f0a5708afd13e Mon Sep 17 00:00:00 2001 From: Matt Welland Date: Fri, 3 Jan 2025 15:32:04 +1000 Subject: [PATCH] Exomiser scripts were swapped (#1090) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * I swapped the scripts by accident * Bump version: 1.32.9 → 1.32.10 --- .bumpversion.cfg | 2 +- .github/workflows/docker.yaml | 2 +- setup.py | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4b6e9b9e7..afe9199b2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.32.9 +current_version = 1.32.10 commit = True tag = False diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 259f6d221..05829a992 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -15,7 +15,7 @@ permissions: contents: read env: - VERSION: 1.32.9 + VERSION: 1.32.10 jobs: docker: diff --git a/setup.py b/setup.py index f22bbe459..00e7d094f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='cpg_workflows', # This tag is automatically updated by bumpversion - version='1.32.9', + version='1.32.10', description='CPG workflows for Hail Batch', long_description=open('README.md').read(), long_description_content_type='text/markdown', @@ -82,10 +82,10 @@ 'subset_mt_to_dataset = cpg_workflows.scripts.subset_mt_to_dataset:cli_main', # Reconfigure annotations for Seqr Export 'annotate_dataset_small = cpg_workflows.scripts.annotate_dataset_small_vars:cli_main', - # script for combining multiple per-family exomiser Variant-level TSVs into a single JSON & Hail Table - 'combine_exomiser_variants = cpg_workflows.scripts.combine_exomiser_gene_tsvs:cli_main', # script for combining multiple per-family exomiser Gene-level TSVs into a single JSON - 'combine_exomiser_genes = cpg_workflows.scripts.combine_exomiser_variant_tsvs:cli_main', + 'combine_exomiser_genes = cpg_workflows.scripts.combine_exomiser_gene_tsvs:cli_main', + # script for combining multiple per-family exomiser Variant-level TSVs into a single JSON & Hail Table + 'combine_exomiser_variants = cpg_workflows.scripts.combine_exomiser_variant_tsvs:cli_main', ], }, )