{% extends "base.html" %} {% set active_page = "syntax-checker" %} {% set page_title = "Syntax Checker" %} {% block content %}
Please insert the mutation name using the HGVS format:
<accession number>.<version number>(<gene symbol>):<sequence type>.<variant description>

Example: AB026906.1:c.274G>T


Help

{% if description %}

Variant syntax checker results:

{% if parse_error %}
{% for m in messages %}

{{ m.description }}

{% endfor %}

{{ summary }}


Details of the parse error:

{{- parse_error[0] }}
{{- parse_error[1] }}

The "^" indicates the position where the error occurred.

{% else %}

The syntax of this variant is OK!

{% endif %}
{% endif %} {% endblock content %}