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. ...@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 2.2.0-dev version 2.2.0-dev
--------------------------- ---------------------------
+ Add `--output-mode` flag to haplotypecaller.
+ Added rtg.Format and rtg.VcfEval tasks. + Added rtg.Format and rtg.VcfEval tasks.
+ Added gatk.SelectVariants and gatk.VariantFiltration tasks. + Added gatk.SelectVariants and gatk.VariantFiltration tasks.
+ Fixed a bug where the output directory was not created for bwa.Kit. + Fixed a bug where the output directory was not created for bwa.Kit.
......
...@@ -907,6 +907,7 @@ task HaplotypeCaller { ...@@ -907,6 +907,7 @@ task HaplotypeCaller {
File? dbsnpVCFIndex File? dbsnpVCFIndex
File? pedigree File? pedigree
Int? ploidy Int? ploidy
String? outputMode
Boolean gvcf = false Boolean gvcf = false
String memory = "12G" String memory = "12G"
...@@ -928,6 +929,7 @@ task HaplotypeCaller { ...@@ -928,6 +929,7 @@ task HaplotypeCaller {
~{"-D " + dbsnpVCF} \ ~{"-D " + dbsnpVCF} \
~{"--pedigree " + pedigree} \ ~{"--pedigree " + pedigree} \
~{"--contamination-fraction-per-sample-file " + contamination} \ ~{"--contamination-fraction-per-sample-file " + contamination} \
~{"--output-mode " + outputMode} \
~{true="-ERC GVCF" false="" gvcf} ~{true="-ERC GVCF" false="" gvcf}
} }
...@@ -955,6 +957,8 @@ task HaplotypeCaller { ...@@ -955,6 +957,8 @@ task HaplotypeCaller {
category: "required"} category: "required"}
referenceFastaIndex: {description: "The index for the reference fasta file.", category: "required"} referenceFastaIndex: {description: "The index for the reference fasta file.", category: "required"}
contamination: {description: "Equivalent to HaplotypeCaller's `-contamination` option.", category: "advanced"} 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"} dbsnpVCF: {description: "A dbSNP VCF.", category: "common"}
dbsnpVCFIndex: {description: "The index for the 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"} 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