Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
596ce9f8
Unverified
Commit
596ce9f8
authored
5 years ago
by
Ruben Vorderman
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
gatk.wdl
+4
-0
4 additions, 0 deletions
gatk.wdl
with
5 additions
and
0 deletions
CHANGELOG.md
+
1
−
0
View file @
596ce9f8
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
gatk.wdl
+
4
−
0
View file @
596ce9f8
...
@@ -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"}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment