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

Fix type

parent 5448ee58
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ class ShivaReport(val root: Configurable) extends ReportBuilderExtension { ...@@ -37,7 +37,7 @@ class ShivaReport(val root: Configurable) extends ReportBuilderExtension {
object ShivaReport extends MultisampleReportBuilder { object ShivaReport extends MultisampleReportBuilder {
def variantcallingExecuted = summary.getValue("shiva", "settings", "multisample_variantcalling") match { def variantcallingExecuted = summary.getValue("shiva", "settings", "multisample_variantcalling") match {
case true => true case Some(true) => true
case _ => false case _ => 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