Skip to content

Commit

Permalink
G3-544 avoid gene count display for binary threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
francastell committed Dec 31, 2024
1 parent 84fe95f commit ab4dff1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/templates/viewgenesetdetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,11 @@ <h3 class="panel-title">Gene List &bull; {{ totalGenes }} Genes</h3>
<div class="panel-body" style="padding-top:10px;">
<div class="row">
<div class="col-xs-12 col-md-9">
<div class="row">
<p>Genes in threshold: {{ num_genes_in_threshold }}</p>
</div>
{% if geneset.threshold_type != 3 %}
<div class="row">
<p>Genes in threshold: {{ num_genes_in_threshold }}</p>
</div>
{% endif %}
</div>
<div class="col-xs-6 col-md-3" style="margin:0; padding:0;">
{% if g.user is defined and not curation_view %}
Expand Down

0 comments on commit ab4dff1

Please sign in to comment.