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

Fixed numberChunks in summary

parent 8dedd28a
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ class Mapping(val root: Configurable) extends QScript with SummaryQScript with S
"skip_markduplicates" -> skipMarkduplicates,
"aligner" -> aligner,
"chunking" -> chunking,
"numberChunks" -> numberChunks.getOrElse(1)
"numberChunks" -> (if (chunking) numberChunks.getOrElse(1) else None)
) ++ (if (root == null) Map("reference" -> referenceSummary) else Map())
override def reportClass = {
......
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