Modify gatkdoc template to handle downsampling info better
This commit is contained in:
parent
66d0235efc
commit
511948890a
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue