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

Fix version regex

parent 2af2676b
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,6 @@ import nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
abstract class IGVTools extends BiopetCommandLineFunction {
executable = config("exe", default = "igvtools", submodule = "igvtools", freeVar = false)
override def versionCommand = executable + " version"
override val versionRegex = """IGV Version: ([\d\.]) .*""".r
override val versionRegex = """IGV Version:? ([\w\.]*) .*""".r
override val versionExitcode = List(0)
}
\ 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