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 {
Int? minOverlap
Int? maxOverlap
Boolean? compress = true
Int? threads = 1
Int? memory = 4
Int? threads
Int? memory
command {
set -e -o pipefail
......@@ -35,8 +35,8 @@ task flash {
}
runtime {
cpu: select_first([threads])
memory: select_first([memory])
cpu: select_first([threads, 2])
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