Skip to content

Commit

Permalink
Fix exomiser-web results.html use of FrequencyData.frequencies
Browse files Browse the repository at this point in the history
  • Loading branch information
julesjacobsen committed Feb 23, 2024
1 parent a6f6690 commit 9230d23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exomiser-web/src/main/resources/templates/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,8 @@ <h4>Variant Score: <b
<!--<b>Frequency Score: 0.95</b>-->
<dl th:each="frequencyData: ${variantEvaluation.frequencyData}">
<dt>Frequency Data:</dt>
<dd th:if="${#lists.isEmpty(frequencyData.knownFrequencies)}">No frequency data</dd>
<dd th:each="freq: ${frequencyData.knownFrequencies}"
<dd th:if="${#lists.isEmpty(frequencyData.frequencies)}">No frequency data</dd>
<dd th:each="freq: ${frequencyData.frequencies}"
th:text="${freq.source.source} + ': ' + ${#numbers.formatDecimal(freq.frequency,1,4)} + '%'">
1000Genomes: 0.02%
</dd>
Expand Down

0 comments on commit 9230d23

Please sign in to comment.