{% extends "base.html" %} {% set active_page = "snp-converter" %} {% set page_title = "SNP Converter" %} {% block content %}

Please insert the dbSNP rs number below. Mutalyzer will retrieve the HGVS description of the SNP specified on the reference sequence(s) used by dbSNP.

Example: rs9919552

Help
{% if rs_id %}
{% if messages %} {% for m in messages %} {% if m.class == "error" %}

{{ m.description }}

{% elif m.class == "warning" %}

{{ m.description }}

{% elif m.class == "information" %}

{{ m.description }}

{% elif m.class == "debug" %}

{{ m.description }}

{% endif %} {% endfor %} {% endif %} {% if summary == "0 Errors, 0 Warnings."%}

{{ summary }}

{% else %}

{{summary}}

{% endif %}

dbSNP rs ID

{{ rs_id }}

HGVS descriptions

{% for d in descriptions %}

{{ d }}

{% endfor %} {% endif %}{# rs_id #} {% endblock content %}