{% extends "layout.html" %} {% block in_head %} {# Includes for LocusZoom.js (from CDN) #} {% endblock %} {% block contained %} {% for key in ['num_cases', 'num_controls', 'num_samples'] %} {% if key in pheno %} {% if '<' in pheno[key]|string %} {% elif 0 < pheno[key]|int < 200 %} {% endif %} {% endif %} {% endfor %}

{% include "region/h1.html" %}

{% if 'num_cases' in pheno %}

{{ pheno.num_cases }} cases, {{ pheno.num_controls }} controls.

{% elif 'num_samples' in pheno %}

{{ pheno.num_samples }} samples

{% endif %} {% if pheno.category %}

Category: {{ pheno.category}}

{% endif %}

{% endblock %}