Missed this template for walker index.

This commit is contained in:
Mark DePristo 2011-07-22 09:13:33 -04:00
parent 81d0cab27e
commit e922ebc29d
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<html>
<head>
<title>GATK walker index</title>
</head>
<body>
<h1>GATK walker index<h1>
<table border="1" cellpadding="2">
<tr>
<th>Name</th>
<th>Summary</th>
</tr>
<#list walkers as walker>
<tr>
<td><a href="${walker.filename}">${walker.name}</a></td>
<td>${walker.summary}</td>
</tr>
</#list>
</table>
</body>
</html>