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

fix seqstat merge summary

parent 6d3728a0
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,7 @@ class SeqStat(val root: Configurable) extends ToolCommandFuntion with Summarizab
case (v1: Int, v2: Int) if key == "len_min" => if (v1 < v2) v1 else v2
case (v1: Int, v2: Int) if key == "len_max" => if (v1 > v2) v1 else v2
case (v1: Int, v2: Int) => v1 + v2
case (v1: Long, v2: Long) => v1 + v2
case _ => v1
}
}
......
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