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

Fix args in queue extension

parent c5e27ef2
No related branches found
No related tags found
No related merge requests found
......@@ -56,8 +56,8 @@ class SageCreateLibrary(val root: Configurable) extends BiopetJavaCommandLineFun
required("-I", input) +
optional("--tag", tag) +
optional("--length", length) +
optional("--notag", noTagsOutput) +
optional("--noantitag", noAntiTagsOutput) +
optional("--noTagsOutput", noTagsOutput) +
optional("--noAntiTagsOutput", noAntiTagsOutput) +
required("-o", output)
}
......@@ -84,7 +84,7 @@ object SageCreateLibrary extends ToolCommand {
opt[File]("noAntiTagsOutput") required () unbounded () valueName ("<file>") action { (x, c) =>
c.copy(noAntiTagsOutput = x)
}
opt[File]("allGenesOutput") required () unbounded () valueName ("<file>") action { (x, c) =>
opt[File]("allGenesOutput") unbounded () valueName ("<file>") action { (x, c) =>
c.copy(allGenesOutput = x)
}
}
......@@ -207,4 +207,4 @@ object SageCreateLibrary extends ToolCommand {
return result
}
}
}
\ 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