-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Metrics documentation generation. (#7749)
- Loading branch information
Showing
8 changed files
with
131 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/main/java/org/broadinstitute/hellbender/metrics/QualityYieldMetrics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/main/java/org/broadinstitute/hellbender/metrics/analysis/AlleleFrequencyQCMetric.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...n/java/org/broadinstitute/hellbender/metrics/analysis/BaseDistributionByCycleMetrics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/main/java/org/broadinstitute/hellbender/tools/spark/pathseq/loggers/PSFilterMetrics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/main/java/org/broadinstitute/hellbender/tools/spark/pathseq/loggers/PSScoreMetrics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
src/main/resources/org/broadinstitute/hellbender/utils/helpTemplates/metrics.template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?php | ||
|
||
include '../../../common/include/common.php'; | ||
include_once '../../config.php'; | ||
$module = modules::GATK; | ||
printHeader($module, $name, topSN::guide); | ||
?> | ||
|
||
<link type='text/css' rel='stylesheet' href='gatkDoc.css'> | ||
|
||
<div class='row-fluid' id="top"> | ||
|
||
<#include "common.html"/> | ||
|
||
<?php $group = '${group}'; ?> | ||
|
||
<section class="span4"> | ||
<aside class="well"> | ||
<a href="index.html"><h4><i class='fa fa-chevron-left'></i> Back to Tool Docs Index</h4></a> | ||
</aside> | ||
<?php getForumPosts( '${name}' ) ?> | ||
|
||
</section> | ||
|
||
<div class="span8"> | ||
|
||
<h1>${name}</h1> | ||
|
||
<p class="lead">${summary}</p> | ||
|
||
<#if group?? > | ||
<h3>Category | ||
<small> ${group}</small> | ||
</h3> | ||
</#if> | ||
<hr> | ||
<h2>Overview</h2> | ||
${description} | ||
|
||
<#-- Create the metrics summary --> | ||
<#if metrics?size != 0> | ||
<p>This table summarizes the values that are specific to this metric.</p> | ||
<table class="table table-striped table-bordered table-condensed"> | ||
<thead> | ||
<tr> | ||
<th>Metric</th> | ||
<th>Summary</th> | ||
</tr> | ||
</thead> | ||
<#list metrics as metric> | ||
<tr> | ||
<td>${metric.name}<br /> | ||
<td>${metric.summary}</td> | ||
</tr> | ||
</#list> | ||
</tbody> | ||
</table> | ||
</#if> | ||
|
||
<@footerInfo /> | ||
<@footerClose /> | ||
|
||
</div> | ||
|
||
<?php printFooter($module); ?> |