Skip to content

Commit

Permalink
Updated JointGenotyping wdl to version 1.3.0 (#58)
Browse files Browse the repository at this point in the history
* Updated JointGenotyping wdl to version 1.3.0
* add note that JointGenotyping will be removed from repo soon
  • Loading branch information
bshifaw authored Sep 28, 2020
1 parent e71e5c5 commit 27f3b4e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions JointGenotyping.wdl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version 1.0

## Copyright Broad Institute, 2019
## Copyright Broad Institute, 2020
##
## This WDL implements the joint discovery and VQSR filtering portion of the GATK
## Best Practices (June 2016) for germline SNP and Indel discovery in human
Expand Down Expand Up @@ -51,7 +51,7 @@ import "./tasks/JointGenotypingTasks.wdl" as Tasks
# Joint Genotyping for hg38 Whole Genomes and Exomes (has not been tested on hg19)
workflow JointGenotyping {

String pipeline_version = "1.2"
String pipeline_version = "1.3.0"

input {
File unpadded_intervals_file
Expand Down Expand Up @@ -498,4 +498,7 @@ workflow JointGenotyping {
# Output the metrics from crosschecking fingerprints.
File crosscheck_fingerprint_check = select_first([CrossCheckFingerprintSolo.crosscheck_metrics, GatherFingerprintingMetrics.gathered_metrics])
}
meta {
allowNestedInputs: true
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ in human whole-genome sequencing (WGS). The workflow requires a sample map
file with 50 or more GVCFs and produces a multisample VCF.

*NOTE:*
*- To create a sample map use the [generate-sample-map](https://portal.firecloud.org/?return=terra#methods/gatk/generate-sample-map/1) workflow.*

*- To create a sample map use the [generate-sample-map](https://portal.firecloud.org/?return=terra#methods/gatk/generate-sample-map/1) workflow.*
*- This workflow will soon be removed from this repo. Its new repository location will be [broadinstitute/warp](https://github.com/broadinstitute/warp)*

#### Requirements/expectations
- A sample map listing 50 or more GVCFs produced by HaplotypeCaller in GVCF mode.
Expand Down
2 changes: 1 addition & 1 deletion tasks/JointGenotypingTasks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ task SplitIntervalList {
command <<<
gatk --java-options -Xms3g SplitIntervals \
-L ~{interval_list} -O scatterDir -scatter ~{scatter_count} -R ~{ref_fasta} \
-mode ~{scatter_mode}
-mode ~{scatter_mode} --interval-merging-rule OVERLAPPING_ONLY
>>>

runtime {
Expand Down

0 comments on commit 27f3b4e

Please sign in to comment.