Skip to content

Commit

Permalink
Merge branch 'methylpy' into methylpy
Browse files Browse the repository at this point in the history
  • Loading branch information
yupenghe authored Mar 25, 2019
2 parents b348db8 + 2ca35f5 commit 1ac3470
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion methylpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.2'
__version__ = '1.3.4'
1 change: 1 addition & 0 deletions methylpy/call_mc_se.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,7 @@ def build_ref(input_files,
else:
subprocess.check_call(shlex.split(base_cmd + output + "_f.fasta " + output +"_f"))
subprocess.check_call(shlex.split(base_cmd + output + "_r.fasta " + output+ "_r"))
subprocess.check_call(["rm",output + "_f.fasta",output + "_r.fasta"])
return 0

def convert_reads(inputf,output,buffer_line_number=100000):
Expand Down
2 changes: 1 addition & 1 deletion methylpy/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ def index_allc_file(allc_file,reindex=False):
# check index file completeness
eof_count = 0
line = False
with open(index_file,'r') as f:
with open(index_file,'r') as f:
for line in f:
if line == '#eof\n':
eof_count += 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

methylpy_version = '1.3.2'
methylpy_version = '1.3.4'

setup(
name='methylpy',
Expand Down

0 comments on commit 1ac3470

Please sign in to comment.