{% extends "layout.html" %} {% from "overview/institute_sidebar.html" import institute_actionbar %} {% from "overview/utils.html" import variant_list_content %} {% from "utils.html" import db_table_external_scripts, db_table_external_stylesheets %} {% block title %} {{ super() }} - Institutes {% endblock %} {% block css %} {{ super() }} {{ db_table_external_stylesheets() }} {% endblock %} {% block top_nav %} {{ super() }} {% endblock %} {% block content_main %}
{{validated_chart()}}
{{ variant_list_content(institute, verified, acmg_map, callers) }}
{% endblock %} {% macro validated_chart() %} {% set ordered = verified_stats[0] + verified_stats[1] + verified_stats[2]%} {% set pos_perc = (verified_stats[0] * 100 / ordered)|round(1) if verified_stats[0] > 0 else 0 %} {% set neg_perc = (verified_stats[1] * 100 / ordered)|round(1) if verified_stats[1] > 0 else 0 %} {% set u_perc = (verified_stats[2] * 100 / ordered)|round(1) if verified_stats[2] > 0 else 0 %}
Validations ordered: {{ordered}}
TP:{{verified_stats[0]}}
FP:{{verified_stats[1]}}
U:{{verified_stats[2]}}
{% endmacro %} {% block scripts %} {{ super() }} {{ db_table_external_scripts() }} {% endblock %}