Skip to content
Snippets Groups Projects
Commit bce833ff authored by Cats's avatar Cats
Browse files

threads should be cpu

parent 79cbf42a
No related branches found
No related tags found
1 merge request!8Run time settings and additional adjustments
...@@ -22,7 +22,7 @@ task BwaMem { ...@@ -22,7 +22,7 @@ task BwaMem {
File bamFile = outputPath File bamFile = outputPath
} }
runtime{ runtime{
threads: if defined(threads) then threads else 1 cpu: if defined(threads) then threads else 1
memory: if defined(memory) then memory else 8 memory: if defined(memory) then memory else 8
} }
} }
...@@ -39,7 +39,7 @@ task Star { ...@@ -39,7 +39,7 @@ task Star {
} }
runtime { runtime {
threads: select_first([runThreadN, 1]) cpu: select_first([runThreadN, 1])
memory: select_first([memory, 10]) memory: select_first([memory, 10])
} }
} }
\ No newline at end of file
...@@ -28,6 +28,6 @@ task Stringtie { ...@@ -28,6 +28,6 @@ task Stringtie {
} }
runtime { runtime {
threads: select_first([threads, 1]) cpu: select_first([threads, 1])
} }
} }
\ 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