{% extends "layouts/base.html" %} {% from "macros/links.html" import omim_links %} {% from "macros/filters.html" import filters_form %} {% block nav_left %}
  • {{ case_id }}
  • {% endblock %} {% block container %}
    {{ filters_form(case_id, db, inheritance_models, consequences, impact_severities, filters, sv_types=sv_types, gene_lists=gene_lists) }}
    {% if nr_of_variants >= 1000 %} Showing {{ variants|length }} of 1000+ variants {% else %} Showing {{ variants|length }} of {{ nr_of_variants }} matching variants {% endif %}
    {% for variant in variants %} {% else %}

    No more variants to show.

    {% endfor %}
    Rank# Score Type Start Loc Stop Loc Length Freq Nr Genes Gene
    {{ variant.index }} {{ variant.rank_score or '-' }} {{ variant.sv_type or '-' }} {{ variant.cytoband_start or '-' }} {{ variant.cytoband_stop or '-' }} {{ '{0:,}'.format(variant.sv_len) }} {% if(variant.max_freq) %} {# Is this a counts (int) freq or fraction (float) freq? #} {% if(variant.max_freq >= 1) %} {{ variant.max_freq }} {% else %} {{ variant.max_freq|round(3) }} {% endif %} {% else %} - {% endif %} {{ variant.nr_genes }} {% if variant.nr_genes >= 5 %} {{ variant.gene_symbols[:2]|join(', ') }} [...] {{ variant.gene_symbols[-2:]|join(', ') }} {% else %} {{ variant.gene_symbols|join(', ') }} {% endif %}
    Load more {% endblock %} {% block scripts %} {{ super() }} {% endblock %}