-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from broadinstitute/dp-ksummary
docker build fix and filter_taxids_to_focal_hits fix
- Loading branch information
Showing
4 changed files
with
14 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
blast=2.9.0 | ||
blast>=2.9.0 | ||
bmtagger>=3.101 | ||
diamond>=2.1.6 | ||
kmc>=3.1.1rc1 | ||
kraken2>=2.1.2 | ||
diamond>=2.1.9 | ||
kmc>=3.2.1 | ||
kraken2>=2.1.3 | ||
krona>=2.8.1 | ||
last>=876 | ||
last>=1541 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
+ "[email protected]" | ||
|
||
import unittest | ||
import glob | ||
import os, os.path | ||
import tempfile | ||
import shutil | ||
|
@@ -364,13 +365,11 @@ def setUp(self): | |
|
||
# tar one db, but not the other | ||
tar_db_tgz = util.file.mkstempfname('-humanChr9Subset.blastn.db.tar.gz') | ||
cmd = ['tar', '-C', self.tempDir, '-cvzf', tar_db_tgz] | ||
for ext in ('nhr', 'nin', 'nsq'): | ||
cmd.append('humanChr9Subset.'+ext) | ||
cmd = ['tar', '-C', self.tempDir, '-cvzf', tar_db_tgz] + list(os.path.basename(f) for f in glob.glob(os.path.join(self.tempDir, "humanChr9Subset.n*"))) | ||
subprocess.check_call(cmd) | ||
self.blastdbs_multi[1] = tar_db_tgz | ||
for ext in ('nhr', 'nin', 'nsq'): | ||
os.unlink(os.path.join(self.tempDir, 'humanChr9Subset.'+ext)) | ||
for idx in glob.glob(os.path.join(self.tempDir, "humanChr9Subset.n*")): | ||
os.unlink(idx) | ||
|
||
def test_deplete_blastn_bam(self): | ||
tempDir = tempfile.mkdtemp() | ||
|