Skip to content

Commit

Permalink
Fixed missing QC plots in case detail view.
Browse files Browse the repository at this point in the history
  • Loading branch information
stolpeo committed Aug 14, 2020
1 parent 08deb5f commit 0c243f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ End-User Summary
- Fixed bug where when re-importing a case, the sample variants stats computation was performed on the member list of the old case.
This could lead to the inconsistent state that when new members where added, the stats were not available for them.
This lead to a 500 error when displaying the case overview page.
- Fixed missing QC plots in case detail view.

Full Change List
================
Expand Down Expand Up @@ -124,6 +125,7 @@ Full Change List
- Fixed bug where when re-importing a case, the sample variants stats computation was performed on the member list of the old case.
This could lead to the inconsistent state that when new members where added, the stats were not available for them.
This lead to a 500 error when displaying the case overview page.
- Fixed missing QC plots in case detail view.

-------
v0.21.0
Expand Down
12 changes: 6 additions & 6 deletions variants/templates/variants/case_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ <h2 class="sodar-pr-content-title">
.then(function (response) {
// Render plots after data has been loaded
plotlyRelatedness(response, 'plot-relatedness')
{#plotlySexChrxHetHom(response, 'plot-sex-chrx-het-hom')#}
{#plotlyVarDps(response, 'plot-var-dps')#}
{#plotlyVariantTypes(response, 'plot-var-types')#}
{#plotlyVariantEffects(response, 'plot-var-effects')#}
{#plotlyIndelSizes(response, 'plot-indel-sizes')#}
{#setTimeout(function() { $(window).trigger('resize') }, 2000);#}
plotlySexChrxHetHom(response, 'plot-sex-chrx-het-hom')
plotlyVarDps(response, 'plot-var-dps')
plotlyVariantTypes(response, 'plot-var-types')
plotlyVariantEffects(response, 'plot-var-effects')
plotlyIndelSizes(response, 'plot-indel-sizes')
setTimeout(function() { $(window).trigger('resize') }, 2000);
})
})
</script>
Expand Down

0 comments on commit 0c243f0

Please sign in to comment.