Skip to content

Commit

Permalink
updated the vm config
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jul 6, 2024
1 parent b7b4c55 commit e859c58
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions CNV_Array_Prober/cnvArrayProber.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ task cnvArrayProber {
File CytoSNP850K_Support_Csv
File GDA_Support_Csv
String cnvProberDocker
Int memory = 4
Int cpu = 1
Int disk = 100
Int memory = 32
Int cpu = 2
Int disk_size_gb = 500
Boolean use_ssd = false
}
command <<<
set -e
Expand All @@ -58,6 +59,6 @@ task cnvArrayProber {
docker: cnvProberDocker
memory: memory
cpu: cpu
disk: disk
disks: "local-disk " + disk_size_gb + if use_ssd then " SSD" else " HDD"
}
}

0 comments on commit e859c58

Please sign in to comment.