From f6a17354e24ea1afc0a4b26b89f7b43fe89e21b3 Mon Sep 17 00:00:00 2001 From: Ronak Shah Date: Wed, 22 Jan 2025 16:36:13 -0500 Subject: [PATCH] Version Update --- example_inputs.yaml | 3 +++ nucleo/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/example_inputs.yaml b/example_inputs.yaml index 46ee60b..ed064bb 100644 --- a/example_inputs.yaml +++ b/example_inputs.yaml @@ -6,6 +6,9 @@ BC_gatk_sam_to_fastq_output_name_R2: null BC_picard_addRG_output_file_name: null BC_picard_fixmate_information_output_file_name: null UBG_abra2_output_bams: null +UBG_abra2_targets: + class: File + path: /path/to/targetfile UBG_bwa_mem_output: null UBG_gatk_merge_bam_alignment_output_file_name: null UBG_picard_SamToFastq_R1_output_fastq: null diff --git a/nucleo/__init__.py b/nucleo/__init__.py index 835447c..b679581 100644 --- a/nucleo/__init__.py +++ b/nucleo/__init__.py @@ -4,4 +4,4 @@ __author__ = """Ronak Shah""" __email__ = 'rons.shah@gmail.com' -__version__ = '3.0.4' +__version__ = '3.1.1' diff --git a/setup.cfg b/setup.cfg index 95006dc..655faf9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.0 +current_version = 3.1.1 commit = True tag = True diff --git a/setup.py b/setup.py index d3e7b9b..5f9302a 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/msk-access/nucleo', - version='3.1.0', + version='3.1.1', zip_safe=False, )