Skip to content
Snippets Groups Projects
Commit 0999885a authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Add --no-bgfs option

parent cda615ea
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,8 @@ class Raxml(val root: Configurable) extends BiopetCommandLineFunction {
@Argument(doc = "Output directory", required = true)
var w: String = _
var noBfgs: Boolean = config("no_bfgs", default = false)
@Input(required = false)
var t: File = _
......@@ -101,5 +103,6 @@ class Raxml(val root: Configurable) extends BiopetCommandLineFunction {
optional("-f", f) +
optional("-t", t) +
optional("-z", z) +
conditional(noBfgs, "--no-bgfs") +
required("-T", threads)
}
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