{% 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 title %}Omic {{ omic.id }}{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Omic {{ omic.id }}

{{ omic.description }}

Identifier
{{ omic.id }}
Created
{{ omic.created }}
Public
{% if omic.public %} {% else %} {% endif %}
Count
{{ count }}
Mean
{{ mean }}
Standard Deviation
{{ std }}
Minimum
{{ minimum }}
Median
{{ median }}
Maximum
{{ maximum }}
{% set experiments = omic.experiments %}

Experiments {{ experiments.count() }}

{% if experiments.count() %} {{ pbw.render_experiment_table(experiments, include_omic=False) }} {% endif %}
{% include "footer.html" %} {% endblock %}