{% extends "genes/layout.html" %} {% block title %} {{ super() }} - Genes - {{ symbol }} {% endblock %} {% block top_nav %}
  • Genes
  • {% endblock %} {% block content_main %} {{ super() }} {# ROW 0 #}

    {{ symbol }} {{ ensembl_id }}

    {{ description }}

    {% for build, gene in builds.items() %}
    GRCh{{ build }}
    {% if gene %}
    {{ overview(gene) }}
    {{ transcripts(gene) }}
    {% else %}
    No info for build GRCh{{ build }}.
    {% endif %}
    {% endfor %} {% endblock %} {% macro overview(gene) %} {% endmacro %} {% macro transcripts(gene) %}
    Transcripts
    {% endmacro %}