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

Merge pull request #193 from biowdl/haplotypecalleroutputmode

add output mode to haplotypecaller
parents 414d8f3c efa12219
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 2.2.0-dev
---------------------------
+ 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.
......
......@@ -907,6 +907,7 @@ task HaplotypeCaller {
File? dbsnpVCFIndex
File? pedigree
Int? ploidy
String? outputMode
Boolean gvcf = false
String memory = "12G"
......@@ -928,6 +929,7 @@ task HaplotypeCaller {
~{"-D " + dbsnpVCF} \
~{"--pedigree " + pedigree} \
~{"--contamination-fraction-per-sample-file " + contamination} \
~{"--output-mode " + outputMode} \
~{true="-ERC GVCF" false="" gvcf}
}
......@@ -955,6 +957,8 @@ task HaplotypeCaller {
category: "required"}
referenceFastaIndex: {description: "The index for the reference fasta file.", category: "required"}
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"}
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