nf-core_modules/modules/lofreq/call/main.nf
2022-02-04 09:53:32 +01:00

37 lines
1,015 B
Text

process LOFREQ_CALL {
tag "$meta.id"
label 'process_low'
conda (params.enable_conda ? "bioconda::lofreq=2.1.5" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/lofreq:2.1.5--py38h588ecb2_4' :
'quay.io/biocontainers/lofreq:2.1.5--py38h588ecb2_4' }"
input:
tuple val(meta), path(bam)
path fasta
output:
tuple val(meta), path("*.vcf.gz"), emit: vcf
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
"""
lofreq \\
call \\
$args \\
-f $fasta \\
-o ${prefix}.vcf.gz \\
$bam
cat <<-END_VERSIONS > versions.yml
"${task.process}":
lofreq: \$(echo \$(lofreq version 2>&1) | sed 's/^version: //; s/ *commit.*\$//')
END_VERSIONS
"""
}