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

Merge branch 'fix-vep-flag-message' into 'develop'

fix tiny toucan issue



See merge request !426
parents d717a546 bdd9d532
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ class VariantEffectPredictor(val root: Configurable) extends BiopetCommandLineFu
super.beforeGraph()
if (!cache && !database) {
Logging.addError("Must either set 'cache' or 'database' to true for VariantEffectPredictor")
} else if (cache && dir.isEmpty) {
} else if (cache && dir.isEmpty && dirCache.isEmpty) {
Logging.addError("Must supply 'dir_cache' to cache for VariantEffectPredictor")
}
if (statsText) _summary = new File(output.getAbsolutePath + "_summary.txt")
......
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