Skip to content
Snippets Groups Projects
Commit 52c8fe03 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

add memory param

parent 767bc08a
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ task cutadapt { ...@@ -6,6 +6,7 @@ task cutadapt {
String? format String? format
String? preCommand String? preCommand
Int? cores = 1 Int? cores = 1
String? memory = "4G"
Array[String]? adapter Array[String]? adapter
Array[String]? front Array[String]? front
Array[String]? anywhere Array[String]? anywhere
...@@ -117,5 +118,6 @@ task cutadapt { ...@@ -117,5 +118,6 @@ task cutadapt {
} }
runtime { runtime {
cpu: select_first([cores]) cpu: select_first([cores])
memory: select_first([memory])
} }
} }
\ 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