Skip to content
Snippets Groups Projects
Commit cd7e49ee authored by Pappas's avatar Pappas
Browse files

Add/remove runtime defaults

parent 66f50ed9
No related branches found
No related tags found
1 merge request!12Adding flash task for combining overlapping reads
...@@ -8,8 +8,8 @@ task flash { ...@@ -8,8 +8,8 @@ task flash {
Int? minOverlap Int? minOverlap
Int? maxOverlap Int? maxOverlap
Boolean? compress = true Boolean? compress = true
Int? threads = 1 Int? threads
Int? memory = 4 Int? memory
command { command {
set -e -o pipefail set -e -o pipefail
...@@ -35,8 +35,8 @@ task flash { ...@@ -35,8 +35,8 @@ task flash {
} }
runtime { runtime {
cpu: select_first([threads]) cpu: select_first([threads, 2])
memory: select_first([memory]) memory: select_first([memory, 2])
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment