Skip to content

Commit

Permalink
fix bmtagger call, odd that it passed tests earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Dec 3, 2014
1 parent d1b712d commit 9f4a08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taxon_filter.py
Expand Up @@ -227,7 +227,7 @@ def partition_bmtagger(inFastq1, inFastq2, databases,
matchesFiles[:k] contain the list of matching read names.
"""
cmdline = [bmtaggerPath,
'-b', db+'.bitmask', '-x', db+'.srprism' '-T', tempDir,
'-b', db+'.bitmask', '-x', db+'.srprism', '-T', tempDir,
'-q1', '-1', curReads1, '-2', curReads2,
'-o', matchesFile]
log.debug(' '.join(cmdline))
Expand Down Expand Up @@ -290,7 +290,7 @@ def deplete_bmtagger(inFastq1, inFastq2, databases, outFastq1, outFastq2):
for db in databases:
outprefix = mkstempfname()
cmdline = [bmtaggerPath, '-X',
'-b', db+'.bitmask', '-x', db+'.srprism' '-T', tempDir,
'-b', db+'.bitmask', '-x', db+'.srprism', '-T', tempDir,
'-q1', '-1', curReads1, '-2', curReads2,
'-o', outprefix]
log.debug(' '.join(cmdline))
Expand Down

0 comments on commit 9f4a08b

Please sign in to comment.