mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
f93c2f2604
* add Krona_db module * removed md5 sum * Update tests/modules/kronatools/kronadb/main.nf Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com> * added input information * removed trailing white spaces * changed krona version to 2.7.1 * Apply suggestions from code review * Update modules/kronatools/kronadb/meta.yml * Update modules/kronatools/kronadb/main.nf Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com> Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: Francesco L <53608000+lescai@users.noreply.github.com>
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process KRONATOOLS_KRONADB {
|
|
label 'process_low'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
|
|
|
conda (params.enable_conda ? "bioconda::krona=2.7.1" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/krona:2.7.1--pl526_5"
|
|
} else {
|
|
container "quay.io/biocontainers/krona:2.7.1--pl526_5"
|
|
}
|
|
input:
|
|
|
|
output:
|
|
path 'taxonomy/taxonomy.tab', emit: db
|
|
path "versions.yml" , emit: versions
|
|
|
|
script:
|
|
def VERSION='2.7.1'
|
|
"""
|
|
ktUpdateTaxonomy.sh taxonomy
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
${getProcessName(task.process)}:
|
|
${getSoftwareName(task.process)}: $VERSION
|
|
END_VERSIONS
|
|
"""
|
|
}
|