Skip to content
Snippets Groups Projects
Commit ee32217c authored by Wai Yi Leung's avatar Wai Yi Leung
Browse files

Merge remote-tracking branch 'origin/develop' into develop

parents 7116efe9 cb93552e
No related branches found
No related tags found
No related merge requests found
......@@ -127,9 +127,9 @@ object BammetricsReport extends ReportBuilder {
summary, Some(sample), lib).value.getOrElse(0).toString.toLong
val sb = new StringBuffer()
if (lib.isDefined) sb.append(sample + "-" + lib.get + "\t") else sb.append(sample + "\t")
sb.append((mapped - duplicates) + "\t")
sb.append((mapped - duplicates - secondary) + "\t")
sb.append(duplicates + "\t")
sb.append((total - mapped - secondary) + "\t")
sb.append((total - mapped) + "\t")
sb.append(secondary)
sb.toString
}
......
......@@ -205,7 +205,7 @@ trait ReportBuilder extends ToolCommand {
val pageOutputDir = new File(outputDir, path.mkString(File.separator))
pageOutputDir.mkdirs()
val rootPath = "./" + Array.fill(path.size)("src/main").mkString("")
val rootPath = "./" + Array.fill(path.size)("../").mkString
val pageArgs = args ++ page.args ++
Map("page" -> page,
"path" -> path,
......
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