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

add allow contain

parent 871a562e
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@ task Bowtie {
Int? k
Boolean best = false
Boolean strata = false
Boolean allowContain = false
String? samRG
Int threads = 1
Int memory = 8
......@@ -55,6 +56,7 @@ task Bowtie {
~{"-k " + k} \
~{true="--best" false="" best} \
~{true="--strata" false="" strata} \
~{true="--allow-contain" false="" allowContain} \
~{"--threads " + threads} \
~{"--sam-RG '" + samRG}~{true="'" false="" defined(samRG)} \
~{sub(indexFiles[0], "(\.rev)?\.[0-9]\.ebwt$", "")} \
......
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