Skip to content
Snippets Groups Projects
Commit e9bba934 authored by Wai Yi Leung's avatar Wai Yi Leung
Browse files

Merge branch 'bowtie_extra_option' into 'develop'

added extra options to bowtie

See merge request !150
parents c7dddadd d526426f
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,7 @@ class Bowtie(val root: Configurable) extends BiopetCommandLineFunction {
var maxbts: Option[Int] = config("maxbts")
var strata: Boolean = config("strata", default = false)
var maqerr: Option[Int] = config("maqerr")
var maxins: Option[Int] = config("maxins")
/** return commandline to execute */
def cmdLine = {
......@@ -72,6 +73,7 @@ class Bowtie(val root: Configurable) extends BiopetCommandLineFunction {
optional("-m", m) +
optional("--maxbts", maxbts) +
optional("--maqerr", maqerr) +
optional("--maxins", maxins) +
required(reference) +
(R2 match {
case Some(r2) => {
......
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