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

Fixed mutable map

parent 19f737dc
No related branches found
No related tags found
No related merge requests found
......@@ -202,7 +202,7 @@ class Cutadapt(val root: Configurable) extends BiopetCommandLineFunction with Su
clipSideLabel -> histogramValues.toMap
})
adapterName -> mutable.Map(
adapterName -> Map(
"count" -> adapterCount,
"histogram" -> counts.toMap
)
......
......@@ -42,7 +42,7 @@ class Cutadapt(root: Configurable, fastqc: Fastqc) extends nl.lumc.sasc.biopet.e
val adapterCounts: Map[String, Any] = initStats.get(adaptersStatsName) match {
// "adapters" key found in statistics
case Some(m: Map[_, _]) => m.flatMap {
case (adapterSequence: String, adapterStats: scala.collection.mutable.HashMap[_, _]) =>
case (adapterSequence: String, adapterStats: Map[_, _]) =>
seqToNameMap.get(adapterSequence) match {
// adapter sequence is found by FastQC
case Some(adapterSeqName) => {
......
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