mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-06 14:22:08 -05:00
9c386c5dd8
* feat: add template for Bracken * chore: update version * refactor: change command build * refactor: rename report variable, change quotes * docs: remove refactored input parameter * fix: correctly assign arguments to options * tests: set up single and paired end tests * style: apply prettier * chore: change data sources to official ones * refactor: rename test workflows * tests: use correct input to the new UNTAR module * chore: update md5sums
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
name: bracken_bracken
|
|
description: Re-estimate taxonomic abundance of metagenomic samples analyzed by kraken.
|
|
keywords:
|
|
- sort
|
|
tools:
|
|
- bracken:
|
|
description: Bracken (Bayesian Reestimation of Abundance with KrakEN) is a highly accurate statistical method that computes the abundance of species in DNA sequences from a metagenomics sample.
|
|
homepage: https://ccb.jhu.edu/software/bracken/
|
|
documentation: https://ccb.jhu.edu/software/bracken/index.shtml?t=manual
|
|
tool_dev_url: https://github.com/jenniferlu717/Bracken
|
|
doi: "10.7717/peerj-cs.104"
|
|
licence: ["GPL v3"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- kraken_report:
|
|
type: file
|
|
description: TSV file with six columns coming from kraken2 output
|
|
pattern: "*.{tsv}"
|
|
- database:
|
|
type: file
|
|
description: Directory containing the kraken2/Bracken files for analysis
|
|
pattern: "*"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- reports:
|
|
type: file
|
|
description: TSV output report of the re-estimated abundances
|
|
pattern: "*.{tsv}"
|
|
|
|
authors:
|
|
- "@Midnighter"
|