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

Admin

{% endif %} {% if current_user.is_authenticated and current_user.is_admin %}
{% for histogram_name, histogram_count, histogram_url in database_histogram %} {% if histogram_url is not none %} {{ histogram_name }} {{ histogram_count }} {% else %} {{ histogram_name }} {{ histogram_count }} {% endif %} {% endfor %}
{% endif %}
BEL Commons Logo

BEL Commons 3.0 Preview

An environment for curating, validating, and exploring knowledge assemblies encoded in Biological Expression Language (BEL) to support elucidating disease-specific, mechanistic insight.

Running on PyBEL v{{ pybel_version }}, PyBEL-Tools v{{ tools_version }}, Bio2BEL v{{ bio2bel_version }}, and BEL-Commons v{{ bel_commons_version }}.
{% if 'parser' in blueprints %}

Upload

Parse BEL script, validate its contents, perform automatic enrichment, and generate a network summary.

Upload BEL

{% endif %}

Catalog

View summaries and statistics over curated networks and as a first step towards exploration{% if 'analysis' in blueprints %}, visualization, and analysis.{% else %} and visualization.{% endif %}

Network Catalog

Query

Build a network by investigating the knowledge related to interesting biological entities, chemical matter, authors, or publications.

Build Query

{% if 'curation' in blueprints %}

Curate

Tools for generating BEL script stubs, merging BEL namespace files, or curation feedback on BEL namespace files.

Generate Merge Validate {% if current_user.is_authenticated and current_user.is_admin %} Curate {% endif %}
{% endif %}

Terminologies

View the underlying namespaces and annotations along with their respective uniform resource locators and version numbers.

Resources {{ manager.count_namespaces() }}
{% if 'curation' in blueprints or 'parser' in blueprints %}

Future Work

PyBEL is in constant development. Join us on the core, analytical tools, or notebooks repositories for upcoming code, protocols, and pipelines and additional entries in Bio2BEL.

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