Skip to content
Snippets Groups Projects
Unverified Commit 3dd889b7 authored by Ruben Vorderman's avatar Ruben Vorderman Committed by GitHub
Browse files

Merge pull request #194 from biowdl/refconfidence

Allow setting --emit-ref-confidence flag on haplotypecaller
parents 596ce9f8 a5d0c443
No related branches found
No related tags found
No related merge requests found
### Checklist
- [ ] Pull request details were added to CHANGELOG.md
- [ ] `parameter_meta` for each task is up to date.
......@@ -11,7 +11,8 @@ that users understand how the changes affect the new version.
version 2.2.0-dev
---------------------------
+ Add `--output-mode` flag to haplotypecaller.
+ Allow setting the `--emit-ref-confidence` flag for HaplotypeCaller.
+ Add `--output-mode` flag to HaplotypeCaller.
+ Added rtg.Format and rtg.VcfEval tasks.
+ Added gatk.SelectVariants and gatk.VariantFiltration tasks.
+ Fixed a bug where the output directory was not created for bwa.Kit.
......
......@@ -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 {
......@@ -959,6 +960,8 @@ task HaplotypeCaller {
contamination: {description: "Equivalent to HaplotypeCaller's `-contamination` option.", category: "advanced"}
outputMode: {description: "Specifies which type of calls we should output. Same as HaplotypeCaller's `--output-mode` option.",
category: "advanced"}
emitRefConfidence: {description: "Whether to include reference calls. Three modes: 'NONE', 'BP_RESOLUTION' and 'GVCF'",
category: "advanced"}
dbsnpVCF: {description: "A dbSNP VCF.", category: "common"}
dbsnpVCFIndex: {description: "The index for the dbSNP VCF.", category: "common"}
pedigree: {description: "Pedigree file for determining the population \"founders\"", category: "common"}
......
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