{% extends "base.html" %} {% load static %} {% load django_select2_tags %} {% load i18n %} {#% load sorting_tags %#} {% load pagination_tags %} {% load filter_extras %} {% block title %}{% trans "Filter Analysis" %}{% endblock %} {% block extra_css %} {% import_django_select2_css %} {% import_django_select2_js %} {% endblock %} {% block content %}
{% include "filter_analysis/filter_form_pathanalysis.html" %}
Genes:
{% if summary.n_genes < 500 %} {% for gene in summary.genes %} {{ gene }}, {% endfor %} {% else %}
  • Your list of genes is bigger than 500. Please, try to increase the parameters.
  • {% endif %}
    {% include "tabs/genes.html" %}
    {%if summary.n_variants %}

    Summary

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

    {% endif %} {% for pathway in pathways %}
    View in Kegg {% with pathway.variants as variants %} {% include "variants.html" %} {% endwith %}
    {% endfor %} {% endblock %} {% block javascript %} {% for pathway in pathways %} {% for variant in pathway.variants %} {% endfor %} {% endfor %} {% endblock javascript %}