Skip to content

Commit

Permalink
stick to usearch v11.0.667 like in the paper
Browse files Browse the repository at this point in the history
  • Loading branch information
KasperSkytte committed Jun 18, 2024
1 parent 996e005 commit 3efaf4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions getsilvadb.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,14 @@ namesDT <- data.table(ID = names[,1], tax = names[,2])
#extract taxonomy into separate columns
taxCols <- c("Kingdom", "Phylum", "Class", "Order", "Family", "Genus", "Species")
sintax <- separate(
namesDT,
col = "tax",
into = taxCols,
sep = ";")
setDT(sintax)
sintax <- data.table(
separate(
namesDT,
col = "tax",
into = taxCols,
sep = ";"
)
)
#cleanup
sintax[
Expand Down
2 changes: 1 addition & 1 deletion test_result.log
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ok 3 silva_udb database file
ok 4 typestrains_udb database file
ok 5 Variable set: denovo_prefix
ok 6 Variable set: maxthreads
ok 7 usearch11 in $PATH
ok 7 usearch in $PATH
ok 8 sina in $PATH
ok 9 R in $PATH
ok 10 Rscript in $PATH
Expand Down

0 comments on commit 3efaf4a

Please sign in to comment.