{% extends "genes/layout.html" %} {% block title %} {{ super() }} - Genes - {{ symbol }} {% endblock %} {% block top_nav %} {{ super() }} {% 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 }}
  • {% if pli_score %}
  • pLi Score (GnomAD) {{ pli_score|round(2) }}
  • {% endif %} {% if constraint_lof_oe %}
  • LoF o/e (GnomAD) {{ constraint_lof_oe|round(2) }}({{ constraint_lof_oe_ci_lower|round(2) }} - {{ constraint_lof_oe_ci_upper|round(2) }})
  • {% endif %} {% if constraint_mis_z %}
  • Missense Z (GnomAD) {{ constraint_mis_z|round(2) }}
  • {% endif %} {% if constraint_mis_oe %}
  • Missense o/e (GnomAD) {{ constraint_mis_oe|round(2) }}({{ constraint_mis_oe_ci_lower|round(2) }} - {{ constraint_mis_oe_ci_upper|round(2) }})
  • {% endif %}
  • Protein Paint {{ symbol }}
{% if record.disease_terms %}
Diagnoses
{% for disease in record.disease_terms %}
  • {{ disease.description }} {% if disease.disease_link %} {{ disease.disease_id }} {% else %} {{ disease.disease_id }} {% endif %}
  • {% 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 %}