2021-01-29 10:03:54 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2021-01-29 10:03:54 +00:00
|
|
|
|
|
|
|
process PANGOLIN {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
|
2021-04-06 12:38:41 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::pangolin=2.3.8' : null)
|
2021-01-29 10:03:54 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-04-06 12:38:41 +00:00
|
|
|
container 'https://depot.galaxyproject.org/singularity/pangolin:2.3.8--py_0'
|
2021-01-29 10:03:54 +00:00
|
|
|
} else {
|
2021-04-06 12:38:41 +00:00
|
|
|
container 'quay.io/biocontainers/pangolin:2.3.8--py_0'
|
2021-01-29 10:03:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
2021-01-29 11:33:37 +00:00
|
|
|
tuple val(meta), path(fasta)
|
2021-01-29 10:03:54 +00:00
|
|
|
|
|
|
|
output:
|
2021-02-09 23:26:18 +00:00
|
|
|
tuple val(meta), path('*.csv'), emit: report
|
|
|
|
path '*.version.txt' , emit: version
|
2021-01-29 10:03:54 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
def prefix = options.suffix ? "${meta.id}.${options.suffix}" : "${meta.id}"
|
|
|
|
"""
|
|
|
|
pangolin \\
|
2021-01-29 11:33:37 +00:00
|
|
|
$fasta\\
|
2021-02-09 23:26:18 +00:00
|
|
|
--outfile ${prefix}.pangolin.csv \\
|
2021-03-10 08:02:23 +00:00
|
|
|
--threads $task.cpus \\
|
2021-01-29 11:33:37 +00:00
|
|
|
$options.args
|
2021-01-29 10:03:54 +00:00
|
|
|
|
|
|
|
pangolin --version | sed "s/pangolin //g" > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|