mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
54 lines
2.1 KiB
Text
54 lines
2.1 KiB
Text
process VCF2MAF {
|
|
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
|
|
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
|
|
conda (params.enable_conda ? "bioconda::vcf2maf=1.6.21 bioconda::ensembl-vep=106.1" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/mulled-v2-b6fc09bed47d0dc4d8384ce9e04af5806f2cc91b:305092c6f8420acd17377d2cc8b96e1c3ccb7d26-0':
|
|
'quay.io/biocontainers/mulled-v2-b6fc09bed47d0dc4d8384ce9e04af5806f2cc91b:305092c6f8420acd17377d2cc8b96e1c3ccb7d26-0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(vcf) // Use an uncompressed VCF file!
|
|
path fasta // Required
|
|
path vep_cache // Required for VEP running. A default of /.vep is supplied.
|
|
|
|
output:
|
|
tuple val(meta), path("*.maf"), emit: maf
|
|
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}"
|
|
def vep_cache_cmd = vep_cache ? "--vep-data $vep_cache" : ""
|
|
// If VEP is present, it will find it and add it to commands.
|
|
// If VEP is not present they will be blank
|
|
def VERSION = '1.6.21' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions.
|
|
"""
|
|
if command -v vep &> /dev/null
|
|
then
|
|
VEP_CMD="--vep-path \$(dirname \$(type -p vep))"
|
|
VEP_VERSION=\$(echo -e "\\n ensemblvep: \$( echo \$(vep --help 2>&1) | sed 's/^.*Versions:.*ensembl-vep : //;s/ .*\$//')")
|
|
else
|
|
VEP_CMD=""
|
|
VEP_VERSION=""
|
|
fi
|
|
|
|
vcf2maf.pl \\
|
|
$args \\
|
|
\$VEP_CMD \\
|
|
$vep_cache_cmd \\
|
|
--ref-fasta $fasta \\
|
|
--input-vcf $vcf \\
|
|
--output-maf ${prefix}.maf
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
vcf2maf: $VERSION\$VEP_VERSION
|
|
END_VERSIONS
|
|
"""
|
|
}
|