2021-01-29 10:03:54 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
def options = initOptions(params.options)
|
|
|
|
|
|
|
|
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-02-10 10:28:27 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::pangolin=2.2.1=py_0 bioconda::pangolearn=2021.02.05=pyh3252c3a_0' : null)
|
2021-01-29 10:03:54 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-02-09 23:26:18 +00:00
|
|
|
container 'https://depot.galaxyproject.org/singularity/pangolin:2.2.1--py_0'
|
2021-01-29 10:03:54 +00:00
|
|
|
} else {
|
2021-02-09 23:26:18 +00:00
|
|
|
container 'quay.io/biocontainers/pangolin:2.2.1--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-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
|
|
|
|
"""
|
|
|
|
}
|