Skip to content
Snippets Groups Projects
Commit ca59e8ef authored by bow's avatar bow
Browse files

Fix wrong metrics addition in BamMetrics

The CollectHsMetrics was incorrectly added as the
CollectTargetedPcrMetrics. This commit fixes it.
parent 3f64deee
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ class BamMetrics(val root: Configurable) extends QScript
val pcrMetrics = CollectTargetedPcrMetrics(this, inputBam,
ampIntervals, ampIntervals :: roiIntervals.map(_.intervals), outputDir)
add(pcrMetrics)
addSummarizable(chsMetrics, "targeted_pcr_metrics")
addSummarizable(pcrMetrics, "targeted_pcr_metrics")
Intervals(bedFile, ampIntervals)
}
......
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