2021-07-06 08:51:38 +00:00
|
|
|
process LOFREQ_CALLPARALLEL {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_high'
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::lofreq=2.1.5" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
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' }"
|
2021-07-06 08:51:38 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam), path(bai)
|
2021-07-19 08:19:27 +00:00
|
|
|
path fasta
|
|
|
|
path fai
|
2021-07-06 08:51:38 +00:00
|
|
|
|
|
|
|
output:
|
2021-07-19 08:19:27 +00:00
|
|
|
tuple val(meta), path("*.vcf.gz"), emit: vcf
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-07-06 08:51:38 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-07-06 08:51:38 +00:00
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2021-12-02 12:39:55 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-07-06 08:51:38 +00:00
|
|
|
"""
|
|
|
|
lofreq \\
|
|
|
|
call-parallel \\
|
|
|
|
--pp-threads $task.cpus \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-07-06 08:51:38 +00:00
|
|
|
-f $fasta \\
|
2021-07-19 08:19:27 +00:00
|
|
|
-o ${prefix}.vcf.gz \\
|
2021-07-06 08:51:38 +00:00
|
|
|
$bam
|
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
lofreq: \$(echo \$(lofreq version 2>&1) | sed 's/^version: //; s/ *commit.*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-07-06 08:51:38 +00:00
|
|
|
"""
|
|
|
|
}
|