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

Please insert a variant description using the HGVS format.

Examples: AB026906.1:c.40_42del, NG_012337.1(SDHD_v001):c.274G>T, LRG_9t1:c.159dup

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 %}