From 6b84b1266f2a21b0411c310c73edf06820a70394 Mon Sep 17 00:00:00 2001 From: Vineet Bansal Date: Wed, 21 Apr 2021 09:27:44 -0400 Subject: [PATCH] correctly sourcing hatchet_config --- script/hatchet_phased_1 | 2 +- script/hatchet_phased_2 | 2 +- script/hatchet_unphased | 2 +- setup.py | 2 +- src/hatchet/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/script/hatchet_phased_1 b/script/hatchet_phased_1 index b56a4095..9c5ae7f3 100755 --- a/script/hatchet_phased_1 +++ b/script/hatchet_phased_1 @@ -1,6 +1,6 @@ #!/usr/bin/env bash -source ./hatchet_config +source hatchet_config # Select list of known SNPs based on reference genome if [ -z "$LIST" ] diff --git a/script/hatchet_phased_2 b/script/hatchet_phased_2 index 4be7c4f1..c81444a4 100755 --- a/script/hatchet_phased_2 +++ b/script/hatchet_phased_2 @@ -1,6 +1,6 @@ #!/usr/bin/env bash -source ./hatchet_config +source hatchet_config ################################################################## # For default run please execute the following without changes # diff --git a/script/hatchet_unphased b/script/hatchet_unphased index 74534b85..8544994e 100755 --- a/script/hatchet_unphased +++ b/script/hatchet_unphased @@ -1,6 +1,6 @@ #!/usr/bin/env bash -source ./hatchet_config +source hatchet_config # Select list of known SNPs based on reference genome if [ -z "$LIST" ] diff --git a/setup.py b/setup.py index b4e26ec4..e0d89ac2 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ def build_extension(self, ext): setup( name='hatchet', - version='0.2.10', + version='0.2.11', packages=['hatchet', 'hatchet.utils', 'hatchet.bin'], package_dir={'': 'src'}, package_data={'hatchet': ['hatchet.ini']}, diff --git a/src/hatchet/__init__.py b/src/hatchet/__init__.py index c31fc20e..a9acbe3a 100644 --- a/src/hatchet/__init__.py +++ b/src/hatchet/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.2.10' +__version__ = '0.2.11' import os.path from importlib.resources import path