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

add RefConfidence mode

parent efa12219
No related branches found
No related tags found
No related merge requests found
......@@ -909,6 +909,7 @@ task HaplotypeCaller {
Int? ploidy
String? outputMode
Boolean gvcf = false
String emitRefConfidence = if gvcf then "GVCF" else "NONE"
String memory = "12G"
String javaXmx = "4G"
......@@ -930,7 +931,7 @@ task HaplotypeCaller {
~{"--pedigree " + pedigree} \
~{"--contamination-fraction-per-sample-file " + contamination} \
~{"--output-mode " + outputMode} \
~{true="-ERC GVCF" false="" gvcf}
--emit-ref-confidence ~{emitRefConfidence}
}
output {
......
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