{% extends "layout.html" %} {% from "utils.html" import db_table_external_scripts, db_table_external_stylesheets %} {% block css %} {{ super() }} {{ db_table_external_stylesheets() }} {% endblock %} {% block top_nav %} {{ super() }} {% endblock %} {% block content_main %}
HPO terms
{% if phenotypes|length == 0 %} The search didn't return any phenotype term {% else %} {% for pheno in phenotypes %} {% endfor %}
HPO term Phenotype description Number of associated genes
{{ pheno.hpo_id }} {{ pheno.description }} {{pheno.genes|length}}
{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {{ db_table_external_scripts() }} {% endblock %}