Skip to content

Commit

Permalink
increase disk request for vep annotation step
Browse files Browse the repository at this point in the history
  • Loading branch information
malachig committed Oct 15, 2024
1 parent d3156af commit 2793af9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions definitions/tools/vep.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ task vepTask {
File? synonyms_file
}

Float cache_size = 2*size(cache_dir_zip, "GB") # doubled to unzip
Float vcf_size = 2*size(vcf, "GB") # doubled for output vcf
Float cache_size = 3*size(cache_dir_zip, "GB") # tripled to unzip
Float vcf_size = 3*size(vcf, "GB") # tripled for output vcf
Float reference_size = size([reference, reference_fai, reference_dict], "GB")
Int space_needed_gb = 10 + round(reference_size + vcf_size + cache_size + size(synonyms_file, "GB"))
Int space_needed_gb = 20 + round(reference_size + vcf_size + cache_size + size(synonyms_file, "GB"))
runtime {
preemptible: 1
maxRetries: 2
Expand Down

0 comments on commit 2793af9

Please sign in to comment.