Skip to content

Commit 27f3b4e

Browse files
author
bshifaw
authored
Updated JointGenotyping wdl to version 1.3.0 (#58)
* Updated JointGenotyping wdl to version 1.3.0 * add note that JointGenotyping will be removed from repo soon
1 parent e71e5c5 commit 27f3b4e

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

JointGenotyping.wdl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version 1.0
22

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

54-
String pipeline_version = "1.2"
54+
String pipeline_version = "1.3.0"
5555

5656
input {
5757
File unpadded_intervals_file
@@ -498,4 +498,7 @@ workflow JointGenotyping {
498498
# Output the metrics from crosschecking fingerprints.
499499
File crosscheck_fingerprint_check = select_first([CrossCheckFingerprintSolo.crosscheck_metrics, GatherFingerprintingMetrics.gathered_metrics])
500500
}
501+
meta {
502+
allowNestedInputs: true
503+
}
501504
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ in human whole-genome sequencing (WGS). The workflow requires a sample map
2929
file with 50 or more GVCFs and produces a multisample VCF.
3030

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

3535
#### Requirements/expectations
3636
- A sample map listing 50 or more GVCFs produced by HaplotypeCaller in GVCF mode.

tasks/JointGenotypingTasks.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ task SplitIntervalList {
5858
command <<<
5959
gatk --java-options -Xms3g SplitIntervals \
6060
-L ~{interval_list} -O scatterDir -scatter ~{scatter_count} -R ~{ref_fasta} \
61-
-mode ~{scatter_mode}
61+
-mode ~{scatter_mode} --interval-merging-rule OVERLAPPING_ONLY
6262
>>>
6363

6464
runtime {

0 commit comments

Comments
 (0)