{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Simulation{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% include "dependencies/common.html" %} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
Simulation between: {{ results.keys()|join(',') }}

This plot shows the relative number of pathways [0,1] in each database that contain at least x genes of the common genes between the databases. In other words, we calculate the genes that are present in all the databases displayed in this plot. Next, we calculate how many pathways in each database have at least one gene that is present in all databases (X=1) and we continue to increase the cutoff to at least 2, 3 genes, etc. Therefore, the x-axis represent the cutoff of genes that must be in the pathway and in the y-axis the relative number of pathways containing at least the chosen cutoff of genes.

{% include "footer.html" %} {% endblock %}