{% extends 'base.html' %} {% block title %} {% if go %} {{ go.label }}: {{ go.name }} details {% else %} GO not found {% endif %} {% endblock %} {% block container %} {% import 'macros/pagination.html' as macro %} {% import 'macros/ajax_table.html' as ajax %} {% import 'macros/cluster_actions.html' as ca %}
{% if go %}

{{ go.label }}: {{ go.name }} ({{ go.readable_type }})

{{ go.description }}


There are {{ count }} sequences with this label.

{% if count > 0 %}
{% endif %}
Enriched clusters
{% for cluster in clusters %} {% if cluster.corrected_p_value <= 0.05 %} {% endif %} {% else %} {% endfor %}
Name Species % in cluster p-value corrected p-value action
{{ cluster.cluster.name }} {{ cluster.cluster.method.network_method.species.name }} {{ cluster.cluster_percentage|round(2) }} % {{ cluster.p_value|round(6) }} {{ cluster.corrected_p_value|round(6) }} {{ ca.cluster_actions(cluster.cluster.id) }}
No clusters are enriched for this term
{{ macro.pagination('Sequences', url_for('go.go_sequences', go_id=go.id), count, url_for('go.go_sequences_table', go_id=go.id), 'go' ) }} {% if (count >= 300) %}
Info: GO-associations disabled for items with more than 300 associated sequences ! {% if (count >= 5000) %}
InterPro and Family associations disabled for items with more than 5000 associated sequences ! {% endif %}
{% endif %} {% if (count < 5000) %} {{ ajax.ajax_table( 'InterPro Domains', url_for('go.go_interpro_ajax', go_id=go.id), none, 'interpro_ajax' ) }} {% endif %} {% if (count < 300) %} {{ ajax.ajax_table( 'GO Terms', url_for('go.go_go_ajax', go_id=go.id), none, 'go_ajax' ) }} {% endif %} {% if (count < 5000) %} {{ ajax.ajax_table( 'Family Terms', url_for('go.go_family_ajax', go_id=go.id), none, 'family_ajax' ) }} {% endif %} {% endif %}
{% endblock %} {% block extrajs %} {% if count > 0 %} {% endif %} {% endblock %}