{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}{{ resource|upper }} Size Distribution{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% include "dependencies/common.html" %} {% include "dependencies/datatables.html" %} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
Pathway Size Distribution

Explore the distribution of the pathway sizes across different resources. The aim of this plot is just to show the distribution and the outliers, in order to inspect and find the name of the outliers, please use the table in the section below.

{{ resource|upper }}

Pathway Size Table

Explore the size in detail using DataTable.

{{ resource|upper }}

{% for pathway, size in distribution_data.items() %} {% endfor %}
Pathway Name Gene Set Size
{{ pathway }} {{ size }}
{% include "footer.html" %} {% endblock %}