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

{{ symbol }} {{ record.ensembl_id }}

{{ description }}

Common Gene info
  • Aliases {{ aliases|join(', ') }}
  • HGNC ID {{ hgnc_id }}
  • HGNC symbol {{ symbol }}
  • Description {{ description }}
  • Incomplete penetrance (HPO) {{ 'yes' if incomplete_penetrance else 'unknown' }}
  • Inheritance models {{ inheritance_models|join(', ') or '-' }}
Links
  • OMIM {{ omim_id }}
  • Entrez {{ entrez_id }}
  • pLi Score(ExAC) {{ pli_score }}
  • Protein Paint {{ symbol }}
  • {% if record.phenotypes %}
    Phenotypes
    {% for phenotype in record.phenotypes %}
  • {{ phenotype.description }} {{ phenotype.mim_number }}
  • {% endfor %}
    {% endif %}
    {% 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 %}