Skip to content

Commit

Permalink
Update results template for better viewer readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Prasham Marfatia committed Feb 18, 2025
1 parent 34ff6b2 commit c738804
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,22 @@ <h3>Statistical Analysis</h3>
class="img-fluid">
</div>
{% endif %}

{% if results.shared_pathways %}
<h3>Shared Pathways</h3>
<p>Biological pathways shared between source and target genes:</p>
{% for pathway_set in results.shared_pathways %}
<h4>Pathway Set {{ loop.index }}</h4>
<ul>
{% for pathway in pathway_set %}
<li>
<strong>{{ pathway.name }}</strong>
<small class="text-muted">({{ pathway.id }})</small>
</li>
{% endfor %}
</ul>
{% endfor %}
{% endif %}
</div>
</div>
{% endblock %}

0 comments on commit c738804

Please sign in to comment.