2021-03-24 05:07:29 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process STRELKA_GERMLINE {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_high'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-09 16:23:56 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
2021-03-24 05:07:29 +00:00
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::strelka=2.9.10" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/strelka:2.9.10--0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/strelka:2.9.10--0"
|
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam), path(bai)
|
2021-03-24 09:53:41 +00:00
|
|
|
path fasta
|
|
|
|
path fai
|
|
|
|
path target_bed
|
2021-03-24 05:07:29 +00:00
|
|
|
|
|
|
|
output:
|
2021-03-24 09:53:41 +00:00
|
|
|
tuple val(meta), path("*_variants.vcf.gz") , emit: vcf
|
2021-03-24 05:07:29 +00:00
|
|
|
tuple val(meta), path("*_variants.vcf.gz.tbi"), emit: vcf_tbi
|
2021-03-24 09:53:41 +00:00
|
|
|
tuple val(meta), path("*_genome.vcf.gz") , emit: genome_vcf
|
|
|
|
tuple val(meta), path("*_genome.vcf.gz.tbi") , emit: genome_vcf_tbi
|
|
|
|
path "*.version.txt" , emit: version
|
2021-03-24 05:07:29 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
def ioptions = initOptions(options)
|
|
|
|
def prefix = ioptions.suffix ? "strelka_${meta.id}${ioptions.suffix}" : "strelka_${meta.id}"
|
2021-03-24 09:53:41 +00:00
|
|
|
def options_strelka = params.target_bed ? "--exome --callRegions ${target_bed}" : ""
|
2021-03-24 05:07:29 +00:00
|
|
|
"""
|
2021-03-24 09:53:41 +00:00
|
|
|
configureStrelkaGermlineWorkflow.py \\
|
|
|
|
--bam $bam \\
|
|
|
|
--referenceFasta $fasta \\
|
|
|
|
$options_strelka \\
|
|
|
|
$options.args \\
|
2021-03-24 05:07:29 +00:00
|
|
|
--runDir strelka
|
2021-03-24 09:53:41 +00:00
|
|
|
|
|
|
|
python strelka/runWorkflow.py -m local -j $task.cpus
|
2021-03-24 05:07:29 +00:00
|
|
|
mv strelka/results/variants/genome.*.vcf.gz ${prefix}_genome.vcf.gz
|
|
|
|
mv strelka/results/variants/genome.*.vcf.gz.tbi ${prefix}_genome.vcf.gz.tbi
|
|
|
|
mv strelka/results/variants/variants.vcf.gz ${prefix}_variants.vcf.gz
|
|
|
|
mv strelka/results/variants/variants.vcf.gz.tbi ${prefix}_variants.vcf.gz.tbi
|
2021-03-24 09:53:41 +00:00
|
|
|
|
2021-03-24 05:07:29 +00:00
|
|
|
echo configureStrelkaGermlineWorkflow.py --version &> ${software}.version.txt #2>&1
|
|
|
|
"""
|
|
|
|
}
|