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

Changed logging

parent 09e0d7e1
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ package nl.lumc.sasc.biopet.extensions
import java.io.File
import nl.lumc.sasc.biopet.utils.Logging
import nl.lumc.sasc.biopet.utils.config.Configurable
import nl.lumc.sasc.biopet.core.{ Version, BiopetCommandLineFunction, Reference }
import org.broadinstitute.gatk.utils.commandline.{ Input, Output }
......@@ -146,9 +147,9 @@ class VariantEffectPredictor(val root: Configurable) extends BiopetCommandLineFu
override def beforeGraph(): Unit = {
super.beforeGraph()
if (!cache && !database) {
throw new IllegalArgumentException("Must supply either cache or database for VariantEffectPredictor")
Logging.addError("Must supply either cache or database for VariantEffectPredictor")
} else if (cache && dir.isEmpty) {
throw new IllegalArgumentException("Must supply dir to cache for VariantEffectPredictor")
Logging.addError("Must supply dir to cache for VariantEffectPredictor")
}
}
......
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