Merged bug fix from Stable into Unstable

This commit is contained in:
David Roazen 2012-01-18 09:52:47 -05:00
commit b7c65cb089
1 changed files with 4 additions and 0 deletions

View File

@ -47,12 +47,16 @@ class SnpEff extends JavaCommandLineFunction {
@Argument(doc="verbose", required=false)
var verbose = true
@Argument(doc="onlyCoding", required=false)
var onlyCoding = true
@Output(doc="snp eff output")
var outVcf: File = _
override def commandLine = super.commandLine +
required("eff") +
conditional(verbose, "-v") +
required("-onlyCoding", onlyCoding.toString) +
optional("-c", config) +
required("-i", "vcf") +
required("-o", "vcf") +