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

Fix picard version, only work with a picard jar

parent a10bd09e
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,8 @@ import scala.io.Source
abstract class Picard extends BiopetJavaCommandLineFunction {
override def subPath = "picard" :: super.subPath
if (config.contains("picard_jar")) jarFile = config("picard_jar")
@Argument(doc = "VERBOSITY", required = false)
var verbosity: Option[String] = config("verbosity")
......@@ -51,10 +53,12 @@ abstract class Picard extends BiopetJavaCommandLineFunction {
@Argument(doc = "CREATE_MD5_FILE", required = false)
var createMd5: Boolean = config("createmd5", default = false)
//FIXME: picard version
// override def versionCommand = executable + " " + javaOpts + " " + javaExecutable + " -h"
// override val versionRegex = """Version: (.*)""".r
// override val versionExitcode = List(0, 1)
override def versionCommand = {
if (jarFile != null) executable + " -cp " + jarFile + " " + javaMainClass + " -h"
else null
}
override val versionRegex = """Version: (.*)""".r
override val versionExitcode = List(0, 1)
override val defaultVmem = "8G"
memoryLimit = Option(3.0)
......
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