nf-core_modules/modules/picard/liftovervcf/main.nf

62 lines
1.8 KiB
Text
Raw Normal View History

process PICARD_LIFTOVERVCF {
tag "$meta.id"
label 'process_low'
conda (params.enable_conda ? "bioconda::picard=2.27.4" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/picard:2.27.4--hdfd78af_0' :
'quay.io/biocontainers/picard:2.27.4--hdfd78af_0' }"
input:
tuple val(meta), path(input_vcf)
path dict
path chain
path fasta
output:
tuple val(meta), path("*lifted.vcf.gz") , emit: vcf_lifted
tuple val(meta), path("*unlifted.vcf.gz"), emit: vcf_unlifted
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 avail_mem = 1
if (!task.memory) {
log.info '[Picard LiftoverVcf] Available memory not known - defaulting to 1GB. Specify process memory requirements to change this.'
} else {
avail_mem = task.memory.giga
}
"""
picard \\
-Xmx${avail_mem}g \\
LiftoverVcf \\
$args \\
2022-04-29 08:52:40 +00:00
--INPUT $input_vcf \\
--OUTPUT ${prefix}.lifted.vcf.gz \\
--CHAIN $chain \\
--REJECT ${prefix}.unlifted.vcf.gz \\
2022-04-29 08:52:40 +00:00
--REFERENCE_SEQUENCE $fasta
cat <<-END_VERSIONS > versions.yml
"${task.process}":
Adding stubs to PicardLiftovervcf, GATK4_mergevcfs and filterMutectCalls (#1621) * feat added stubs to picard_liftovervcf * feat adding stubs to gatk4_mergevcfs * feat adding stubs to gatk4_filtermutectcalls * fix tests * fix output name filtermutectcalls * fix test * fix added missing [ * Update tests/modules/gatk4/mergevcfs/test.yml Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update tests/modules/gatk4/filtermutectcalls/test.yml Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update tests/modules/picard/liftovervcf/test.yml Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update modules/gatk4/filtermutectcalls/main.nf Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update modules/gatk4/filtermutectcalls/main.nf Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update modules/gatk4/mergevcfs/main.nf Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update modules/gatk4/mergevcfs/main.nf Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Update modules/picard/liftovervcf/main.nf Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * Trying something on picard_liftovervcf * fix adding test data for stubs * fix added bracket and unindented workflow * fix picard 2.27.1 -> 2.27.0 to solve PaddingError * Update main.nf fix added tbi to stub Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> Co-authored-by: Matthieu Muffato <mm49@sanger.ac.uk>
2022-09-28 07:50:11 +00:00
picard: \$(echo \$(picard LiftoverVcf --version 2>&1) | grep -o 'Version:.*' | cut -f2- -d:)
END_VERSIONS
"""
stub:
def prefix = task.ext.prefix ?: "${meta.id}"
"""
touch ${prefix}.lifted.vcf.gz
touch ${prefix}.unlifted.vcf.gz
cat <<-END_VERSIONS > versions.yml
"${task.process}":
picard: \$(echo \$(picard LiftoverVcf --version 2>&1) | grep -o 'Version:.*' | cut -f2- -d:)
END_VERSIONS
"""
}