Skip to content

Commit

Permalink
Revert "Sort alphabetically incompletely covered genes on report"
Browse files Browse the repository at this point in the history
This reverts commit 6762190.
  • Loading branch information
Chiara Rasi committed Aug 5, 2024
1 parent 6762190 commit f37f490
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
- How parameters are passed to starlette.templating since it was raising a deprecation warning.
- Replaced deprecated Pydantic `parse_obj` method with `model_validate`
- Report and genes overview endpoints accept only POST requests with form data now (application/x-www-form-urlencoded) - no json
- Sort alphabetically the list genes that are incompletely covered on report page

## [1.9]
### Added
Expand Down
2 changes: 1 addition & 1 deletion src/chanjo2/templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h2 class="accordion-header" id="flush-headingOne">
<td class="text-right">{{ data[1] }}</td>
<td class="text-center">{{ data[2] }}</td>
<td id="incompletelyCoveredGenesCell" class="text-center" style="display: none;">
{{ data[3]|sort|join(", ") }}
{{ data[3]|join(", ") }}
</td>
{% endif %}
</tr>
Expand Down

0 comments on commit f37f490

Please sign in to comment.