-
Notifications
You must be signed in to change notification settings - Fork 596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mirror of Picard metrics documentation generation changes. #7749
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1b328d0
Mirror of Picard metrics documentation generation changes.
cmnbroad accca6c
Add DocumentedFeature.
cmnbroad 9dc5fe7
Suppress deprecation warning for FieldDoc usage.
cmnbroad 97153d5
Suppress removal warning.
cmnbroad 984d405
Suppress import.
cmnbroad f9264a8
Use new APIs.
cmnbroad c80f9f9
Remove the groups list from the metrics detail page so it matches the…
cmnbroad f99ced2
One review comment fix - remove no longer needed SuppressWarnings.
cmnbroad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With some minor changes it looks like. |
||
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); ?> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just copied from picard I assume?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its copied from the Picard one that I made up when I added the metrics ;-). I removed the group in from it though, since thats not usually included in the detail pages and for some reason I left it in the Picard one (which is not really used anyway).