{% extends "report_base.html" %} {% block body %}

Scout - Gene panel report

- created on: {{report_created_at}}

{{ genes_panel() }} [END OF REPORT]

clinical-genomics.github.io/scout
{% endblock %} {% macro genes_panel() %}
Panel: {{panel.name_and_version}}
Updated:{{ panel.date.strftime('%Y-%m-%d') }}
Number of genes:{{ panel.genes|length }}
Institute:{{ panel.institute.display_name }}
Panel archived: {% if panel.is_archived %} True {% else %} False {% endif %}
Panel database ID: {{ panel._id }}
Maintainers: {{ panel.maintainer|join(", ") }}

{% for gene in panel.genes|sort(attribute='symbol') %} {% endfor %}
Gene HGNC ID Disease-associated transcripts Reduced penetrance Mosaicism Entry version Manual inheritance (pre-set terms) Manual inheritance (free text terms) Comment
{{loop.index}} {{ gene.symbol }} {{gene.hgnc_id}} {{ gene.disease_associated_transcripts|join(', ') }} {{ 'Reduced penetrance' if gene.reduced_penetrance }} {{ 'Mosaicism' if gene.mosaicism }} {% if gene.database_entry_version and gene.database_entry_version|string == panel.version|string %} new {% endif %} {{ gene.inheritance_models|join(', ') }} {{ gene.custom_inheritance_models|join(', ') }} {{ gene.comment }}
{% endmacro %}