Skip to content

Commit

Permalink
Merge 908e76e into 1c3de8e
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed Apr 16, 2019
2 parents 1c3de8e + 908e76e commit 344e36b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/modules/browser/browser_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def get(self, dataset:str, variant:str, ds_version:str=None):
if hit:
dsv_groups.append((dsv, hit))

frequencies = {'headers':[['Population','pop'],
frequencies = {'headers':[['Dataset','pop'],
['Allele Count','acs'],
['Allele Number', 'ans'],
['Number of Homozygotes', 'homs'],
Expand Down
5 changes: 3 additions & 2 deletions frontend/templates/ng-templates/browser-variant.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ <h3>This variant is not found in SweGen.</h3>
<!-- Right middle pane -->
<div class="col-md-6">

<h2>Population Frequencies</h2>
<h2>Dataset Frequencies</h2>
For all available datasets using the same reference set as {{ ctrl.dataset.shortName }}.
<div ng-if="ctrl.variant.popFreq">
<table class="table table-sm table-striped table-condensed small">
<thead>
Expand All @@ -202,7 +203,7 @@ <h2>Population Frequencies</h2>
</div> <!-- if popFreq -->

<div ng-if="!ctrl.variant.popFreq">
<p>No Population Frequencies available</p>
<p>No Dataset Frequencies available</p>
</div> <!-- if popFreq -->
</div>

Expand Down

0 comments on commit 344e36b

Please sign in to comment.