{% extends "base.html" %} {% set active_page = "syntax-checker" %} {% set page_title = "Syntax Checker" %} {% block content %}

Please insert the variant description using the HGVS format:

<accession number>.<version number>(<gene symbol>):<sequence type>.<variant description>

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

Help
{% if description %}
{% if parse_error %}

Parse error

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

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

{% else %}

The syntax of this variant description is OK!

{% endif %} {% 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 %} {% endif %}{# description #} {% endblock content %}