mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
fc4f3e8822
* add seqsero2 module * correct lint errors * Update modules/seqsero2/main.nf Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk> * set output directory Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk>
45 lines
1.6 KiB
Text
45 lines
1.6 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process SEQSERO2 {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
|
|
|
conda (params.enable_conda ? "bioconda::seqsero2=1.2.1" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/seqsero2:1.2.1--py_0"
|
|
} else {
|
|
container "quay.io/biocontainers/seqsero2:1.2.1--py_0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(seqs)
|
|
|
|
output:
|
|
tuple val(meta), path("results/*_log.txt") , emit: log
|
|
tuple val(meta), path("results/*_result.tsv"), emit: tsv
|
|
tuple val(meta), path("results/*_result.txt"), emit: txt
|
|
path "versions.yml" , emit: versions
|
|
|
|
script:
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
"""
|
|
SeqSero2_package.py \\
|
|
$options.args \\
|
|
-d results/ \\
|
|
-n $prefix \\
|
|
-p $task.cpus \\
|
|
-i $seqs
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
${getProcessName(task.process)}:
|
|
${getSoftwareName(task.process)}: \$( echo \$( SeqSero2_package.py --version 2>&1) | sed 's/^.*SeqSero2_package.py //' )
|
|
END_VERSIONS
|
|
"""
|
|
}
|