Skip to content

Commit 5684ddf

Browse files
authored
Merge pull request #56 from raphael-group/helper_scripts
Correctly sourcing hatchet_config
2 parents 96ac9a7 + 6b84b12 commit 5684ddf

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

script/hatchet_phased_1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
source ./hatchet_config
3+
source hatchet_config
44

55
# Select list of known SNPs based on reference genome
66
if [ -z "$LIST" ]

script/hatchet_phased_2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
source ./hatchet_config
3+
source hatchet_config
44

55
##################################################################
66
# For default run please execute the following without changes #

script/hatchet_unphased

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
source ./hatchet_config
3+
source hatchet_config
44

55
# Select list of known SNPs based on reference genome
66
if [ -z "$LIST" ]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def build_extension(self, ext):
7676

7777
setup(
7878
name='hatchet',
79-
version='0.2.10',
79+
version='0.2.11',
8080
packages=['hatchet', 'hatchet.utils', 'hatchet.bin'],
8181
package_dir={'': 'src'},
8282
package_data={'hatchet': ['hatchet.ini']},

src/hatchet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.2.10'
1+
__version__ = '0.2.11'
22

33
import os.path
44
from importlib.resources import path

0 commit comments

Comments
 (0)