Skip to content

Commit

Permalink
bug fix for mappedmates file
Browse files Browse the repository at this point in the history
  • Loading branch information
treangen committed Feb 9, 2012
1 parent 21e9dd8 commit 529a240
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from distutils.extension import Extension
from Cython.Distutils import build_ext

ext_modules = [Extension("preprocess", ["./src/preprocess.py"]),Extension("mapreads",["./src/mapreads.py"]),Extension("findorfs",["./src/findorfs"]),Extension("findscforfs",["./src/findscforfs"]),Extension("scaffold",["./src/scaffold.py"])]
ext_modules = [Extension("preprocess", ["./src/preprocess.py"]),Extension("mapreads",["./src/mapreads.py"]),Extension("findorfs",["./src/findorfs.py"]),Extension("findscforfs",["./src/findscforfs.py"]),Extension("scaffold",["./src/scaffold.py"])]

# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
Expand Down
2 changes: 1 addition & 1 deletion src/mapreads.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def map2contig():
new_matefile.close()
badmatefile.close()
mateheader.close()
run_process(_settings, "cat %s/Assemble/out/%s.lib%d.hdr >> %s/Assemble/out/%s.lib%d.mappedmates "%(_settings.rundir,_settings.PREFIX, lib.id,_settings.rundir,_settings.PREFIX,lib.id))
run_process(_settings, "cat %s/Assemble/out/%s.lib%d.mappedmates >> %s/Assemble/out/%s.lib%d.hdr "%(_settings.rundir,_settings.PREFIX, lib.id,_settings.rundir,_settings.PREFIX,lib.id))

ctg_cvg_file.close()
tigr_file.close()
Expand Down

0 comments on commit 529a240

Please sign in to comment.