-
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.
1: set fragment prep command from command line options 2: indicate command arguments to be translated into absolute paths 3: allow output to /dev/null to skip fragmenting
- Loading branch information
Showing
6 changed files
with
121,554 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,3 +63,5 @@ target/ | |
*.local | ||
*.sge | ||
*.slurm | ||
.tst.* | ||
.batch_launcher |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bats | ||
|
||
@test "Testing HMM db split" { | ||
run ./batch_launcher.py -X local -N 5 -- hmmsearch --tblout test_data/.tst.genes.v.pfam.tbl --cpu 2 test_data/pfams.100.hmm test_data/genes.faa | ||
[ "$status" = 0 ] | ||
run diff <(grep -v "^#" test_data/.tst.genes.v.pfam.tbl) <(grep -v "^#" test_data/genes.v.pfam.tbl) | ||
[ "$status" = 0 ] | ||
} | ||
|
||
@test "Testing HMM db split with keep" { | ||
run ./batch_launcher.py -X local -N 5 -K -- hmmsearch --tblout test_data/.tst.genes.v.pfam.tbl --cpu 2 test_data/pfams.100.hmm test_data/genes.faa | ||
[ "$status" = 0 ] | ||
run diff <(grep -v "^#" test_data/.tst.genes.v.pfam.tbl) <(grep -v "^#" test_data/genes.v.pfam.tbl) | ||
[ "$status" = 0 ] | ||
} | ||
|
Oops, something went wrong.