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

Please supply the genome assembly which you want to use to convert your position.

Note: The Position Converter does NOT check the description or normalize it to HGVS. Use the Name Checker for this.

Examples: NM_003002.3:c.274G>T, chr11:g.111959693G>T and NC_000011.9:g.111959693G>T

Help
{% if description %}
{% 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 %} {% if summary == "0 Errors, 0 Warnings." %}

{{ summary }}

{% else %}

{{summary}}

{% endif %} {% if chromosomal_description %}

Chromosomal variant

{{ chromosomal_description }}

{% if transcript_descriptions %}

Found transcripts in variant region

{% for d in transcript_descriptions %}{{ d }}
{% endfor %}
{% else %}

No transcripts found in variant region

{% endif %} {% endif %} {% endif %}{# description #} {% endblock content %}