2012-07-24 04:44:53 +08:00
|
|
|
<!--
|
|
|
|
|
~ Copyright (c) 2012, The Broad Institute
|
|
|
|
|
~
|
|
|
|
|
~ Permission is hereby granted, free of charge, to any person
|
|
|
|
|
~ obtaining a copy of this software and associated documentation
|
|
|
|
|
~ files (the "Software"), to deal in the Software without
|
|
|
|
|
~ restriction, including without limitation the rights to use,
|
|
|
|
|
~ copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
~ copies of the Software, and to permit persons to whom the
|
|
|
|
|
~ Software is furnished to do so, subject to the following
|
|
|
|
|
~ conditions:
|
|
|
|
|
~
|
|
|
|
|
~ The above copyright notice and this permission notice shall be
|
|
|
|
|
~ included in all copies or substantial portions of the Software.
|
|
|
|
|
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
~ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
|
~ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
~ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
|
~ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
|
~ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
~ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
|
~ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
-->
|
|
|
|
|
|
2011-07-25 03:42:39 +08:00
|
|
|
<#include "common.html"/>
|
|
|
|
|
|
2011-07-23 01:18:33 +08:00
|
|
|
<#macro emitGroup group>
|
2012-07-25 04:52:06 +08:00
|
|
|
<div class="accordion-group">
|
|
|
|
|
<div class="accordion-heading">
|
|
|
|
|
<a class="accordion-toggle" data-toggle="collapse" data-parent="#index" href="#${group.id}">
|
|
|
|
|
<h4>${group.name}</h4>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="accordion-body collapse" id="${group.id}">
|
|
|
|
|
<div class="accordion-inner">
|
|
|
|
|
<p class="lead">${group.summary}</p>
|
|
|
|
|
<table class="table table-striped table-bordered table-condensed">
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
|
|
|
|
<th>Summary</th>
|
|
|
|
|
</tr>
|
|
|
|
|
<#list data as datum>
|
|
|
|
|
<#if datum.group == group.name>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><a href="${datum.filename}">${datum.name}</a></td>
|
|
|
|
|
<td>${datum.summary}</td>
|
|
|
|
|
</tr>
|
2012-07-21 04:33:29 +08:00
|
|
|
</#if>
|
2012-07-25 04:52:06 +08:00
|
|
|
</#list>
|
|
|
|
|
</table>
|
2012-07-21 04:33:29 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</#macro>
|
|
|
|
|
|
2013-11-20 04:05:41 +08:00
|
|
|
<@makeHeader title="GATK | Tool Documentation Index" isIndex=true />
|
|
|
|
|
<h1>Tool Documentation Index
|
2012-07-24 04:44:53 +08:00
|
|
|
<small>${version}</small>
|
|
|
|
|
</h1>
|
2012-07-25 04:52:06 +08:00
|
|
|
<div class="accordion" id="index">
|
2013-02-13 05:27:18 +08:00
|
|
|
<#assign seq = ["engine", "tools", "utilities", "other"]>
|
|
|
|
|
<#list seq as supercat>
|
|
|
|
|
<hr>
|
|
|
|
|
<#list groups?sort_by("name") as group>
|
|
|
|
|
<#if group.supercat == supercat>
|
|
|
|
|
<@emitGroup group=group/>
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
|
|
|
|
</#list>
|
2012-07-25 04:52:06 +08:00
|
|
|
</div>
|
2011-07-22 21:13:33 +08:00
|
|
|
|
2012-07-21 04:33:29 +08:00
|
|
|
<@footerInfo />
|
|
|
|
|
<@pageFooter />
|