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

Remove unused line

parent 8a9ad332
No related branches found
No related tags found
No related merge requests found
......@@ -119,10 +119,7 @@ trait BiopetCommandLineFunctionTrait extends CommandLineFunction with Configurab
private def getVersionInternal: String = {
if (versionCommand == null || versionRegex == null) return "N/A"
val exe = new File(versionCommand.trim.split(" ")(0))
if (!exe.exists()) {
//BiopetQScript.addError("executable '" + exe + "' does not exist")
return "N/A"
}
if (!exe.exists()) return "N/A"
val stdout = new StringBuffer()
val stderr = new StringBuffer()
def outputLog = "Version command: \n" + versionCommand +
......
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