{% 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.2:c.274G>T, chr11:g.111959693G>T and NC_000011.9:g.111959693G>T

{% if description %}

Results

{% for m in messages %} {% if m.class == "error" %}
{{ m.description }}
{% elif m.class == "warning" %}
{{ m.description }}
{% endif %} {% endfor %} {% if summary == "0 Errors, 0 Warnings."%}
{{ summary }}
{% else %}
{{summary}}
{% endif %} {% 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 %}