-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for krakenuniq, kaiju to replace kraken and diamond in default pipelines. Both rely on customized krakenuniq/kaiju packages for custom functionality, like loading database from pipe or printing out all taxa hits (kaiju). Krona fixed to use hit counts as scores in report files directly, instead of counting the individual read classifications (which takes a long time).
- Loading branch information
Showing
33 changed files
with
1,116 additions
and
1,301 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,8 @@ | ||
{ | ||
"classify_kaiju.kaiju.kaiju_db_lz4": | ||
"dx://file-FVYQqP006zFF064QBGf022X1", | ||
"classify_kaiju.kaiju.krona_taxonomy_db_tgz": | ||
"dx://file-F4z0fgj07FZ8jg8yP7yz0Qzb", | ||
"classify_kaiju.kaiju.ncbi_taxonomy_db_tgz": | ||
"dx://file-F8KgJK009y3Qgy3FF1791Vgq" | ||
} |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
{ | ||
"classify_krakenuniq.krakenuniq.krakenuniq_db_tar_lz4": | ||
"dx://file-FVYQqP006zFF064QBGf022X1", | ||
"classify_krakenuniq.krakenuniq.krona_taxonomy_db_tgz": | ||
"dx://file-F4z0fgj07FZ8jg8yP7yz0Qzb" | ||
} |
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,5 @@ | ||
import "tasks_metagenomics.wdl" as metagenomics | ||
workflow classify_kaiju { | ||
call metagenomics.kaiju | ||
} |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
import "tasks_metagenomics.wdl" as metagenomics | ||
workflow classify_krakenuniq { | ||
call metagenomics.krakenuniq | ||
} |
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
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
Oops, something went wrong.