{% 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 }} Gene Promiscuity{% 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) }}
Gene Distribution over Pathways

Explore the distribution of the all the genes in databases across pathways. Each histogram contains 40 bins each one in the 50 unit range (from 0 to 50, 50 to 100...). The aim of this plot is just to show the more promiscuous genes in pathway databases, in order to inspect and find the name of the outliers, please use the table in the section below.

{{ resource|upper }}

Gene Promiscuity Overview

Explore the size in detail using DataTable.

{{ resource|upper }}

{% for gene, pathways_associated in distribution_data.items() %} {% endfor %}
Gene Symbol Number of Pathways
{{ gene }} {{ pathways_associated }}
{% include "footer.html" %} {% endblock %}