Skip to content

Commit

Permalink
add disk spec
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jun 26, 2024
1 parent 521f8dc commit 1bdc509
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CoverageProfiler/CoverageProfiler.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ workflow coverageProfile {
String CovProfileViz_docker = "us-central1-docker.pkg.dev/tag-team-160914/gptag-dockers/covprofileviz:0.0.0"
Int mem_gb = 32
Int? cpu
Int? preemptible = 3
Int? disk_size_gb = 500
}
command <<<
set -e
Expand Down Expand Up @@ -214,5 +216,8 @@ workflow coverageProfile {
memory: select_first([mem_gb, 7]) * 1000 + " MB"
cpu: select_first([cpu, 1])
docker: CovProfileViz_docker
disks: "local-disk ~{disk_size_gb} SSD"
preemptible: select_first([preemptible, 0])
maxRetries: 3
}
}

0 comments on commit 1bdc509

Please sign in to comment.