{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Omic Catalog{% 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 %} {% endif %}

Omic Catalog

Currently, each entry in the Omic Catalog corresponds to the results from a differential gene expression analysis. Instructions for creating new data sets from the GEO can be found here.

The three pre-processed differential gene expression experiments related to Alzheimer's disease corresponding to the examples in the BEL Commons manuscript are available on GitHub.

{% for omic in omics %} {% endfor %}
Identifier Created Description Public Experiments
{{ omic.id }} {{ omic.created }} {{ omic.description }} {% if omic.public %} {% else %} {% endif %} {% if omic.experiments %} {{ omic.experiments.count() }} {% endif %}
{% include "footer.html" %} {% endblock %}