mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
486eebfd29
* Add rgi database version to module as fixed within the container/environment * Remove check of the version file * Or rather check for existance of the versions file not contents * Delete main.nf Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
38 lines
1 KiB
Text
38 lines
1 KiB
Text
process RGI_MAIN {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::rgi=5.2.1" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/rgi:5.2.1--pyha8f3691_2':
|
|
'quay.io/biocontainers/rgi:5.2.1--pyha8f3691_2' }"
|
|
|
|
input:
|
|
tuple val(meta), path(fasta)
|
|
|
|
output:
|
|
tuple val(meta), path("*.json"), emit: json
|
|
tuple val(meta), path("*.txt") , emit: tsv
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
"""
|
|
rgi \\
|
|
main \\
|
|
$args \\
|
|
--num_threads $task.cpus \\
|
|
--output_file $prefix \\
|
|
--input_sequence $fasta
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
rgi: \$(rgi main --version)
|
|
rgi-database: \$(rgi database --version)
|
|
END_VERSIONS
|
|
"""
|
|
}
|