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

Merge branch 'feature-singletons_flagstat' into 'develop'

Added singletons to summary



See merge request !404
parents e11ff161 e37fd3ac
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,8 @@ object BiopetFlagstat extends ToolCommand {
def summary: String = {
val map = (for (t <- 0 until names.size) yield {
names(t) -> totalCounts(t)
}).toMap
}).toMap ++ Map("Singletons" -> crossCounts(names.find(_._2 == "Mapped").map(_._1).getOrElse(-1))(names.find(_._2 == "MateUnmapped").map(_._1).getOrElse(-1))
)
ConfigUtils.mapToJson(map).spaces4
}
......
......@@ -11,6 +11,7 @@
"MateNegativeStrand" : 1,
"FirstOfPair" : 1,
"ReadPaired" : 1,
"Singletons" : 0,
"SecondaryOrSupplementary" : 0,
"SecondOfPair" : 0
}
\ No newline at end of file
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