Skip to content
Snippets Groups Projects
Verified Commit 5eae8fe1 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

gatk4: add gvcf to variant_calling_out

parent ed5b2f47
No related branches found
No related tags found
No related merge requests found
...@@ -159,6 +159,10 @@ process call_variants_per_sample { ...@@ -159,6 +159,10 @@ process call_variants_per_sample {
container = "${container_url}" container = "${container_url}"
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
tag "$file_id" tag "$file_id"
if (params.variant_calling_out != "") {
publishDir "results/${params.variant_calling_out}", mode: 'copy'
}
input: input:
tuple val(file_id), path(bam), path(bam_idx) tuple val(file_id), path(bam), path(bam_idx)
tuple val(ref_id), path(fasta), path(fai), path(dict) tuple val(ref_id), path(fasta), path(fai), path(dict)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment