Skip to content

Commit

Permalink
fixed the disk_size requirement line
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Dec 5, 2023
1 parent 74b61e6 commit 310649f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ task SplitVCFs {
}

Int ref_size = ceil(size(reference_fasta, "GB") + size(reference_fasta_idx, "GB") + size(reference_dict, "GB"))
Int disk_size = ceil(size(vcf_file, "GB") * 2) + ceil(size(vcf_idx)) + ref_size + select_first([disk_pad, 0])
Int disk_size = ceil(size(vcf_file, "GB") * 2) + ceil(size(vcf_idx, "GB")) + ref_size + select_first([disk_pad, 0])
Int mem = select_first([memory, 16])

command <<<
Expand Down

0 comments on commit 310649f

Please sign in to comment.