-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TSPS-326 add wdl to mask or subset a vcf given a bed file (#136)
Co-authored-by: Jose Soto <jsoto@broadinstitute.org>
- Loading branch information
1 parent
20ff8be
commit 7a5039e
Showing
4 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
pipelines/imputation/scientificValidation/SubsetVcfByBedFile.wdl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
version 1.0 | ||
|
||
# This script is under review. It is not actively tested or maintained at this time. | ||
workflow SubsetVcfByBedFile { | ||
input { | ||
File input_vcf | ||
File input_vcf_index | ||
File bed_file | ||
} | ||
|
||
call BcftoolsSubsetVcf { | ||
input: | ||
input_vcf = input_vcf, | ||
input_vcf_index = input_vcf_index, | ||
bed_file = bed_file | ||
} | ||
|
||
output { | ||
File subset_vcf = BcftoolsSubsetVcf.output_vcf | ||
File subset_vcf_index = BcftoolsSubsetVcf.output_vcf_index | ||
} | ||
} | ||
|
||
task BcftoolsSubsetVcf { | ||
input { | ||
File input_vcf | ||
File input_vcf_index | ||
File bed_file | ||
|
||
Int disk_size_gb = ceil(3 * size(input_vcf, "GiB")) + 20 | ||
Int cpu = 1 | ||
Int memory_mb = 6000 | ||
} | ||
|
||
String basename = basename(input_vcf, '.vcf.gz') | ||
|
||
command { | ||
set -e -o pipefail | ||
|
||
bcftools view \ | ||
-R ~{bed_file} \ | ||
-O z \ | ||
-o ~{basename}.subset.vcf.gz \ | ||
~{input_vcf} | ||
|
||
bcftools index -t ~{basename}.subset.vcf.gz | ||
|
||
} | ||
|
||
output { | ||
File output_vcf = "~{basename}.subset.vcf.gz" | ||
File output_vcf_index = "~{basename}.subset.vcf.gz.tbi" | ||
} | ||
|
||
runtime { | ||
docker: "us.gcr.io/broad-gatk/gatk:4.5.0.0" | ||
disks: "local-disk ${disk_size_gb} HDD" | ||
memory: "${memory_mb} MiB" | ||
cpu: cpu | ||
} | ||
} |