{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Network Catalog{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }} {% if current_user.is_authenticated and current_user.is_admin %}

Admin

{% endif %}

Network Catalog

Each curated network is backed by a BEL script. Below are options to summarize the networks' contents{% if 'analysis' in blueprints %},{% else %} or{% endif %} explore them with an in-browser navigator{% if 'analysis' in blueprints %}, or run analyses with data sets such as differential gene expression data {% endif %}. {% if 'parser' in blueprints %} Upload more networks here.{% endif %}

{% for network in networks|sort(attribute='created', reverse=True) %}

{{ network.name|replace('_', ' ') }} {{ network.version }} {% if network.authors %} {% set authors_split = network.authors.split(',') %} by {% if authors_split|length > 1 %} {{ authors_split[0] }}, et. al {% else %} {{ network.authors }} {% endif %} {% endif %}
{% if network.report %} {{ network.report.number_nodes }} node{% if network.report.number_nodes != 1 %}s{% endif %} | {{ network.report.number_edges }} edge{% if network.report.number_edges != 1 %}s{% endif %} | {{ network.report.number_citations }} citation{% if network.report.number_citations != 1 %}s{% endif %} | {% if network.report.public %} Public {% elif current_user.is_authenticated and network.report.user != current_user %} Internal {% else %} Private {% endif %} {% endif %}

{% if network.description %}

{{ network.description }}

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