{% extends "base.html" %} {% load static %} {% load i18n %} {% load pagination_tags %} {% load filter_extras %} {% block extra_css %} {% endblock %} {% block title %}{% trans "Filter Analysis" %}{% endblock %} {% block content %}
{% include "filter_analysis/filter_form_oneclick.html" %}
Genes:
{% for gene in summary.genes %} {{ gene }}, {% endfor %}
{% for gene in genes %} {% if gene.diseases.all %} {% endif %} {% endfor %}
{{ gene.symbol }} {% for disease in gene.diseases.all %} {{disease.name}}
{% endfor %}

Genes at Omim

{% for gene in genes_omim %} {{ gene.official_name }}, {% endfor %} {% for gene in genes_omim %} {% endfor %}
{{ gene.official_name }} {% for disease in gene.diseases.all %} {{disease.name}}
{% endfor %}

Genes at Clinical Genomics Database

{% for gene in genes_cgd %} {{ gene.GENE }}, {% endfor %} {% for gene in genes_cgd %} {% endfor %}
{{ gene.GENE }} {% for phenotype in gene.CONDITIONS.all %} {{phenotype.name}}
{% endfor %}

Genes at HGMD

{% for gene in genes_hgmd %} {% endfor %}
{{gene.symbol}} {% for phenotype in gene.diseases.all %} {{phenotype.name}}
{% endfor %}
{%if summary.n_variants %}

Summary

Number of Variants: {{ summary.n_variants }}
Number of Genes: {{ summary.n_genes }}

{% endif %} {% if summary.has_variants %} Export to: CSV
{% with objects=variants %} {% include "pagination.html" %} {% endwith %}
{% include "variants/variants.html" %}
{% with objects=variants %} {% include "pagination.html" %} {% endwith %} {% endif %} {% endblock %} {% block extra_js %} {% endblock %}