Skip to content

Commit

Permalink
added disk space for samtools depth
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jun 27, 2024
1 parent 127dde5 commit 2ba2699
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CoverageProfiler/CoverageProfiler.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ workflow coverageProfile {
Int minMappingQuality
Int? mem_gb
Int? cpu
Int? disk_size_gb
String samtools_docker = "euformatics/samtools:1.20"
}
command <<<
Expand All @@ -175,7 +176,7 @@ workflow coverageProfile {
memory: select_first([mem_gb, 7]) * 1000 + " MB"
cpu: select_first([cpu, 1])
docker: samtools_docker
disks: "local-disk 500 SSD"
disks: "local-disk ~{disk_size_gb} SSD"
preemptible: 0
maxRetries: 3
}
Expand Down

0 comments on commit 2ba2699

Please sign in to comment.