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

Disabled countType by default

parent 95ebd1c9
No related branches found
No related tags found
No related merge requests found
...@@ -47,11 +47,11 @@ trait Measurement extends SummaryQScript with Reference { qscript: QScript => ...@@ -47,11 +47,11 @@ trait Measurement extends SummaryQScript with Reference { qscript: QScript =>
extraSummaryFiles += s"${name}_table" -> outputFile extraSummaryFiles += s"${name}_table" -> outputFile
} }
def addHeatmapJob(countTable: File, outputFile: File, name: String): Unit = { def addHeatmapJob(countTable: File, outputFile: File, name: String, countType: Option[String] = None): Unit = {
val job = new PlotHeatmap(qscript) val job = new PlotHeatmap(qscript)
job.input = countTable job.input = countTable
job.output = outputFile job.output = outputFile
job.countType = Some(name) job.countType = countType
add(job) add(job)
extraSummaryFiles += s"${name}_heatmap" -> outputFile extraSummaryFiles += s"${name}_heatmap" -> outputFile
} }
......
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