Skip to content
Snippets Groups Projects
Commit 387ecd36 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

cleanup genotypeGVCFs

parent 4a7474a4
No related branches found
No related tags found
No related merge requests found
......@@ -732,6 +732,7 @@ task GenotypeGVCFs {
File referenceFasta
File referenceFastaDict
File referenceFastaFai
Array[String] annotationGroups = ["StandardAnnotation"]
File? dbsnpVCF
File? dbsnpVCFIndex
......@@ -747,10 +748,9 @@ task GenotypeGVCFs {
GenotypeGVCFs \
-R ~{referenceFasta} \
-O ~{outputPath} \
~{true="-D" false="" defined(dbsnpVCF)} ~{dbsnpVCF} \
-G StandardAnnotation \
~{"-D " + dbsnpVCF} \
~{true="-G" false="" length(annotationGroups) > 0} ~{sep=" -G " annotationGroups} \
--only-output-calls-starting-in-intervals \
-new-qual \
-V ~{gvcfFile} \
-L ~{sep=' -L ' intervals}
}
......
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