mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 19:18:17 +00: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
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
process BRACKEN_BRACKEN {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
|
|
conda (params.enable_conda ? "bioconda::bracken=2.6.2" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/bracken:2.6.2--py39hc16433a_0':
|
|
'quay.io/biocontainers/bracken:2.6.2--py39hc16433a_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(kraken_report)
|
|
path database
|
|
|
|
output:
|
|
tuple val(meta), path(bracken_report), emit: reports
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def threshold = meta.threshold ?: 10
|
|
def taxonomic_level = meta.taxonomic_level ?: 'S'
|
|
def read_length = meta.read_length ?: 150
|
|
def args = task.ext.args ?: "-l ${taxonomic_level} -t ${threshold} -r ${read_length}"
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
def bracken_version = '2.6.2'
|
|
bracken_report = "${prefix}_${taxonomic_level}.tsv"
|
|
"""
|
|
bracken \\
|
|
${args} \\
|
|
-d '${database}' \\
|
|
-i '${kraken_report}' \\
|
|
-o '${bracken_report}'
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
bracken: ${bracken_version}
|
|
END_VERSIONS
|
|
"""
|
|
}
|