{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% import 'macros.html' as pbw %} {% block styles %} {{ super() }} {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block title %}{{ network }}{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
{% if network.report and network.report.is_displayable %} Explore {% else %} Explore {% endif %} Query {% if 'analysis' in blueprints %} {% endif %} {% if current_user.is_authenticated %} {% endif %} {% if current_user.is_authenticated and current_user.is_admin %} Drop {% endif %}
{% if network_versions is defined and network_versions|length > 1 %}

Versions {{ network_versions|length }}

{% endif %}

Provenance

{% if network.report %}
Upload
{{ network.report.user.email }} at {{ network.report.created }}
{% endif %}
Authors
{{ network.authors }}
Contact
{{ network.contact }}
{% if network.description %}
Description
{{ network.description }}
{% endif %} {% if network.licenses %}
License
{{ network.licenses }}
{% endif %} {% if network.copyright %}
Copyright
{{ network.copyright }}
{% endif %}
Number Nodes
{{ network.report.number_nodes }}
Number Edges
{{ network.report.number_edges }}
Number Components
{{ network.report.number_components }}
Network Density
{{ network.report.network_density }}
Average Degree
{{ network.report.average_degree }}
Number Citations
{{ network.report.number_citations }}
Number BEL Errors
{{ network.report.number_warnings }}

Content Statistics

{% if chart_4_data %}
{% endif %} {% if chart_5_data %}
{% endif %}
{% if chart_9_data %}
{% endif %}

Network Overlap

The node-based overlap between this network and other networks is calculated as the Szymkiewicz-Simpson coefficient of their respective nodes. Up to the top 10 are shown below.

{% for other_network, tanimoto in overlaps %} {% if other_network %} {% endif %} {% endfor %}
Network Overlap
{{ other_network }} {{ (100 * tanimoto)|round|int }}% {% if current_user.is_authenticated and current_user.is_admin %} {% endif %}

Sample Edges

{{ pbw.render_edge_list(network.edges.limit(5), show_networks=False) }}

Sample Nodes

{{ pbw.render_node_list(network.nodes.limit(5)) }}
{% include "footer.html" %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}