{% extends "layout.html" %} {% block in_head %} {% endblock %} {% block contained %} {% for key in ['num_cases', 'num_controls', 'num_samples'] %} {% if key in pheno %} {% if '<' in pheno[key]|string %} {% elif pheno[key]|int < 200 %} {% endif %} {% endif %} {% endfor %}

{% include "pheno/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 %}

Top Hits:

Variant Nearest Gene(s) MAF P-value
{% if pheno.icd9_info %}

ICD9 codes included in this PheWAS code:

{% for icd9 in pheno.icd9_info %}

{{ icd9.icd9_code }} - {{ icd9.icd9_string }}

{% endfor %}
{% else %}
{% endif %}

QQ plot:

(Genomic Control Lambda calculated based on the 50%ile (median), 10%ile, 1%ile, and 0.1%ile.)


{% endblock %}