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,12 +174,17 @@
</#if> </#if>
<#if downsampling?size != 0> <#if downsampling?size != 0>
<h3>Downsampling settings</h3> <h3>Downsampling settings</h3>
<p>This tool overrides the engine's default downsampling settings.</p> <#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> <ul>
<li>Mode: <b>${downsampling.by}</b></li> <li>Mode: <b>${downsampling.by}</b></li>
<li>To coverage: <b>${downsampling.to_cov}</b></li> <li>To coverage: <b>${downsampling.to_cov}</b></li>
</ul> </ul>
</#if> </#if>
</#if>
<#if refwindow?size != 0> <#if refwindow?size != 0>
<h3>Window size</h3> <h3>Window size</h3>
<p>This tool uses a sliding window on the reference.</p> <p>This tool uses a sliding window on the reference.</p>