nf-core_modules/modules/nanoplot/main.nf
Harshil Patel 682f789f93
Bump tool versions for modules required in viralrecon (#1859)
* Bump tool versions for modules required in viralrecon

* Fix all the tests

* Fix Prettier lint

* Remove empty md5sums
2022-07-07 14:48:04 +01:00

37 lines
1.2 KiB
Text

process NANOPLOT {
tag "$meta.id"
label 'process_low'
conda (params.enable_conda ? 'bioconda::nanoplot=1.40.0' : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/nanoplot:1.40.0--pyhdfd78af_0' :
'quay.io/biocontainers/nanoplot:1.40.0--pyhdfd78af_0' }"
input:
tuple val(meta), path(ontfile)
output:
tuple val(meta), path("*.html"), emit: html
tuple val(meta), path("*.png") , emit: png
tuple val(meta), path("*.txt") , emit: txt
tuple val(meta), path("*.log") , emit: log
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
def input_file = ("$ontfile".endsWith(".fastq.gz")) ? "--fastq ${ontfile}" :
("$ontfile".endsWith(".txt")) ? "--summary ${ontfile}" : ''
"""
NanoPlot \\
$args \\
-t $task.cpus \\
$input_file
cat <<-END_VERSIONS > versions.yml
"${task.process}":
nanoplot: \$(echo \$(NanoPlot --version 2>&1) | sed 's/^.*NanoPlot //; s/ .*\$//')
END_VERSIONS
"""
}