Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed broken VariantValidator query. #541

Merged
merged 1 commit into from Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions HISTORY.rst
Expand Up @@ -26,6 +26,7 @@ End-User Summary
- Switching scoring to MutationTaster 85 interface, added back MT 85 link-out alongside MT 2021 link-out (#509).
- Made flag filter and flag form nomenclature consistent (#297)
- Improved developer setup documentation and added Windows installation instructions (#533).
- Fixed broken VariantValidator query (#523)

Full Change List
================
Expand All @@ -50,6 +51,7 @@ Full Change List
- Updating ``utility/*.sh`` scripts from "upstream" sodar-server (#531).
- Improved developer setup documentation and added Windows installation instructions (#533).
- Skip commit trailer checks for dependabot (#537).
- Fixed broken VariantValidator query (#523)

------
v1.2.0
Expand Down
3 changes: 2 additions & 1 deletion variants/templates/variants/filter_result/row.html
Expand Up @@ -462,7 +462,7 @@
<a class="btn btn-primary dropdown-toggle sodar-list-dropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
MT
</a>
<div class="dropdown-menu dropdown-menu-right"">
<div class="dropdown-menu dropdown-menu-right">
<a
href="https://www.genecascade.org/MTc2021/ChrPos102.cgi?chromosome={{ entry.chromosome }}&position={{ entry.start }}&ref={{ entry.reference }}&alt={{ entry.alternative }}"
data-toggle="tooltip"
Expand Down Expand Up @@ -672,6 +672,7 @@ <h4 class="modal-title" id="variantcarriermodallabel-{{ entry.release }}-{{ entr
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="variantvalidatormodal-{{ entry.release }}-{{ entry.chromosome }}-{{ entry.start }}-{{ entry.reference }}-{{ entry.alternative }}" tabindex="-1" role="dialog" aria-labelledby="variantvalidatormodallabel-{{ entry.release }}-{{ entry.chromosome }}-{{ entry.start }}-{{ entry.reference }}-{{ entry.alternative }}" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
Expand Down