Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgatzen committed Sep 23, 2024
1 parent 8e9af58 commit 5b87a59
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ImputationPipeline/ScoreBGE/ScoreBGE.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ workflow ScoreBGE {

String? score_bge_docker

File ref_fasta
File ref_fasta_index
File ref_dict

Int preemptible = 1
Expand All @@ -25,8 +23,6 @@ workflow ScoreBGE {
exome_gvcf_index = exome_gvcf_index,
imputed_wgs_vcf = imputed_wgs_vcf,
imputed_wgs_vcf_index = imputed_wgs_vcf_index,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
ref_dict = ref_dict,
basename = basename,
weights = weights,
Expand Down Expand Up @@ -66,7 +62,7 @@ task ScoreGvcfAndVcf {

String sample_names_arg = if defined(sample_names) then "--sample-names" else ""

Int disk_size_gb = select_first([disk_gb, ceil(size(exome_gvcf, "GiB") + size(imputed_wgs_vcf, "GiB") + size(weights, "GiB") + size(ref_fasta, "GiB") + 50)])
Int disk_size_gb = select_first([disk_gb, ceil(size(exome_gvcf, "GiB") + size(imputed_wgs_vcf, "GiB") + size(weights, "GiB") + 50)])

command <<<
set -xeuo pipefail
Expand Down

0 comments on commit 5b87a59

Please sign in to comment.