Modify gatkdoc template to handle downsampling info better

This commit is contained in:
Geraldine Van der Auwera 2013-09-26 14:50:32 -04:00
parent 66d0235efc
commit 511948890a
1 changed files with 10 additions and 5 deletions

View File

@ -174,11 +174,16 @@
</#if>
<#if downsampling?size != 0>
<h3>Downsampling settings</h3>
<p>This tool overrides the engine's default downsampling settings.</p>
<ul>
<li>Mode: <b>${downsampling.by}</b></li>
<li>To coverage: <b>${downsampling.to_cov}</b></li>
</ul>
<#if downsampling.by == "NONE">
<p>This tool does not apply any downsampling by default.</p>
</#if>
<#if downsampling.by != "NONE">
<p>This tool applies the following downsampling settings by default.</p>
<ul>
<li>Mode: <b>${downsampling.by}</b></li>
<li>To coverage: <b>${downsampling.to_cov}</b></li>
</ul>
</#if>
</#if>
<#if refwindow?size != 0>
<h3>Window size</h3>