Skip to content

Commit

Permalink
Merge pull request #56 from raphael-group/helper_scripts
Browse files Browse the repository at this point in the history
Correctly sourcing hatchet_config
  • Loading branch information
vineetbansal authored Apr 21, 2021
2 parents 96ac9a7 + 6b84b12 commit 5684ddf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script/hatchet_phased_1
Original file line number Diff line number Diff line change
@@ -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" ]
Expand Down
2 changes: 1 addition & 1 deletion script/hatchet_phased_2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

source ./hatchet_config
source hatchet_config

##################################################################
# For default run please execute the following without changes #
Expand Down
2 changes: 1 addition & 1 deletion script/hatchet_unphased
Original file line number Diff line number Diff line change
@@ -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" ]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']},
Expand Down
2 changes: 1 addition & 1 deletion src/hatchet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.2.10'
__version__ = '0.2.11'

import os.path
from importlib.resources import path
Expand Down

0 comments on commit 5684ddf

Please sign in to comment.