{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Pathway Details{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% include "dependencies/common.html" %} {% if dendrogram %} {% endif %} {% endblock %} {% import "meta/macros.html" as compath %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
{{ pathway.name }} - Pathway Page
Name {{ pathway }}
Resource {{ compath.stylize_plugin_name(STYLED_NAMES, resource) }}
Genes {% for hgnc_symbol in pathway.get_gene_set() %} {% if submitted_gene_set and hgnc_symbol in submitted_gene_set %} {{ hgnc_symbol }} {% else %} {{ hgnc_symbol }} {% endif %} {% endfor %}
Size {{ pathway.get_gene_set()|length }}
{% if dendrogram %}
Hierarchy Landscape

The following plot represents the hierarchical landscape of '{{ pathway.name }}'. The hierarchical tree allows to click on the pathways with children (black border) and continue the exploration. All nodes are colored by their source (click on the map for the legend) and cross-link to the original pathway page.

{% endif %} {{ compath.write_pathways(equivalent_pathways, "Equivalent Pathways") }} {{ compath.write_pathways(super_pathways, "Super-Pathways") }} {{ compath.write_pathways(sub_pathways, "Sub-Pathways") }}
{% include "visualization/dendrogram/legend.html" %} {% include "meta/footer.html" %} {% endblock %}