{% extends "base.html" %} {% block toc %}

Go To Table of Contents

Table of Contents

    {% for key, value in data.items() %} {% set link = key.replace(' ', '_') %}
  1. {{key}}
  2. {%endfor %}

{% endblock %} {% block content %} {% for key, value in data.items() %} {% set link = key.replace(' ', '_') %} {% set oc = value['risk_cat'] %}

{{key|title}}
{{value['risk_cat']}} for {{key}}

{% for n in range(3) %}
{% if n == 0 %}

{{value['intro']}}

{% elif n == 1 %}

Gene markers analyzed : {{value['total_markers']}}

{% if value['genes_analyzed'] %}
Genes Analyzed
{% set genes = value['genes_analyzed']| split_at_comma %} {% for gene in genes[:25] %}{{gene}}, {% endfor %} {% if genes|length > 25 %}
{{genes|length - 25}}
more genes
{% endif %}
{% endif %} {% elif n == 2 %}
Recommendations:

If you recognise any symptoms of this condition, consult a qualified physician for diagnosis and treatment of this condition

    {% for symptom in value['symptoms']|split_at_digit %}
  • {{symptom}}
  • {% endfor %}
DO’s: Dont’s:
    {% for dos in value['Dos']|split_at_digit %}
  • {{dos}}
  • {% endfor %}
    {% for donts in value['Donts']|split_at_digit %}
  • {{donts}}
  • {% endfor %}
{% endif %}
{% endfor %} {% if not loop.last %}

{% endif %} {% endfor %} {% markdown %}{% include folder+"/static_pages/glossary.txt" %}{% endmarkdown %} {% endblock %}