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

Change cores to threads

parent 91a6841a
No related branches found
No related tags found
1 merge request!12Adding flash task for combining overlapping reads
......@@ -24,7 +24,6 @@ task flash {
Boolean? compress = true
Int? threads = 1
Int? memory = 4
Int? cores = 1
command {
set -e -o pipefail
......@@ -50,7 +49,7 @@ task flash {
}
runtime {
cpu: select_first([cores])
cpu: select_first([threads])
memory: select_first([memory])
}
......
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