{% 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.

Example: NM_003002.2:c.274G>T
or: chr11:g.111959693G>T
or: NC_000011.9:g.111959693G>T

Assembly
Variant
Help
{% if description %}

Results:

{% for m in messages %}

{{ m.description }}

{% endfor %}

{{ summary }}

{% if chromosomal_description %}

Chromosomal Variant:

{{ chromosomal_description }}
{% if not transcript_descriptions %}

No transcripts found in mutation region

{% endif %} {% endif %} {% if transcript_descriptions %}

Found transcripts in mutation region:

{% for d in transcript_descriptions %}{{ d }}
{% endfor %}
{% endif %} {% endif %} {% endblock content %}