Skip to content
Snippets Groups Projects
Unverified Commit b7ae88d3 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #121 from biowdl/BIOWDL-279

add allow contain
parents 0ffa2a41 2fc05e3e
No related branches found
No related tags found
No related merge requests found
...@@ -11,4 +11,4 @@ that users understand how the changes affect the new version. ...@@ -11,4 +11,4 @@ that users understand how the changes affect the new version.
version 1.0.0-dev version 1.0.0-dev
--------------------------- ---------------------------
+ <a change> + Added allow-contain option to bowtie.
...@@ -33,6 +33,7 @@ task Bowtie { ...@@ -33,6 +33,7 @@ task Bowtie {
Int? k Int? k
Boolean best = false Boolean best = false
Boolean strata = false Boolean strata = false
Boolean allowContain = false
String? samRG String? samRG
Int threads = 1 Int threads = 1
Int memory = 8 Int memory = 8
...@@ -55,6 +56,7 @@ task Bowtie { ...@@ -55,6 +56,7 @@ task Bowtie {
~{"-k " + k} \ ~{"-k " + k} \
~{true="--best" false="" best} \ ~{true="--best" false="" best} \
~{true="--strata" false="" strata} \ ~{true="--strata" false="" strata} \
~{true="--allow-contain" false="" allowContain} \
~{"--threads " + threads} \ ~{"--threads " + threads} \
~{"--sam-RG '" + samRG}~{true="'" false="" defined(samRG)} \ ~{"--sam-RG '" + samRG}~{true="'" false="" defined(samRG)} \
~{sub(indexFiles[0], "(\.rev)?\.[0-9]\.ebwt$", "")} \ ~{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