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

fix on no known sites warning

parent b5ec5845
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ class GatkVariantcalling(val root: Configurable) extends QScript with BiopetQScr
else if (!outputDir.endsWith("/")) outputDir += "/"
val baseRecalibrator = new BaseRecalibrator(this)
if (useBaseRecalibration && baseRecalibrator.knownSites.isEmpty) {
if (preProcesBams && useBaseRecalibration && baseRecalibrator.knownSites.isEmpty) {
logger.warn("No Known site found, skipping base recalibration")
useBaseRecalibration = false
}
......
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