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

Added reference page

parent 11795384
No related branches found
No related tags found
No related merge requests found
#import(nl.lumc.sasc.biopet.core.summary.Summary)
#import(nl.lumc.sasc.biopet.core.report.ReportPage)
<%@ var summary: Summary %>
<%@ var rootPath: String %>
<%@ var pipeline: String %>
#{
val contigs = summary.getValue(pipeline, "settings", "reference", "contigs").get.asInstanceOf[Map[String, Map[String, Any]]]
}#
<table class="table">
<tbody>
<tr><th>Species</th><td>${summary.getValue(pipeline, "settings", "reference", "species")}</td></tr>
<tr><th>Name</th><td>${summary.getValue(pipeline, "settings", "reference", "name")}</td></tr>
<tr><th>File</th><td>${summary.getValue(pipeline, "files", "pipeline", "referenceFasta", "path")}</td></tr>
<tr><th>MD5</th><td>${summary.getValue(pipeline, "files", "pipeline", "referenceFasta", "md5")}</td></tr>
</tbody>
</table>
<br/>
<table class="table sortable-theme-bootstrap" data-sortable>
<thead>
<tr><th>Contig Name</th><th data-sorted="true" data-sorted-direction="descending">Length</th><th>MD5</th></tr>
</thead>
<tbody>
#for (c <- contigs.toList.sortBy(_._2("length").asInstanceOf[Long]).reverse)
<tr><th>${c._1}</th><td>${c._2.get("length")}</td><td>${c._2.get("md5")}</td></tr>
#end
</tbody>
</table>
\ No newline at end of file
......@@ -25,7 +25,10 @@ object ShivaReport extends MultisampleReportBuilder {
ReportPage(
List("Samples" -> generateSamplesPage(pageArgs)) ++
(if (regions.isDefined) Map(regions.get) else Map()) ++
Map("Files" -> filesPage,
Map("Reference" -> ReportPage(List(), List(
"Reference" -> ReportSection("/nl/lumc/sasc/biopet/core/report/reference.ssp", Map("pipeline" -> "shiva"))
), Map()),
"Files" -> filesPage,
"Versions" -> ReportPage(List(), List((
"Executables" -> ReportSection("/nl/lumc/sasc/biopet/core/report/executables.ssp"
))), Map())
......
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