2022-02-19 23:02:23 +00:00
|
|
|
process AMRFINDERPLUS_UPDATE {
|
|
|
|
tag "update"
|
2022-09-19 09:54:47 +00:00
|
|
|
label 'process_single'
|
2022-02-19 23:02:23 +00:00
|
|
|
|
2022-07-19 07:52:36 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::ncbi-amrfinderplus=3.10.30" : null)
|
2022-02-19 23:02:23 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-07-19 07:52:36 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/ncbi-amrfinderplus:3.10.30--h6e70893_0':
|
|
|
|
'quay.io/biocontainers/ncbi-amrfinderplus:3.10.30--h6e70893_0' }"
|
2022-02-19 23:02:23 +00:00
|
|
|
|
|
|
|
output:
|
|
|
|
path "amrfinderdb.tar.gz", emit: db
|
|
|
|
path "versions.yml" , emit: versions
|
|
|
|
|
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
|
|
|
script:
|
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
"""
|
|
|
|
mkdir amrfinderdb
|
|
|
|
amrfinder_update -d amrfinderdb
|
|
|
|
tar czvf amrfinderdb.tar.gz -C \$(readlink amrfinderdb/latest) ./
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
amrfinderplus: \$(amrfinder --version)
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|