{% extends 'base.html' %} {% block title %} {% if interpro %} {{ interpro.label }}: {{ interpro.description }} details {% else %} InterPro not found {% endif %} {% endblock %} {% block container %} {% import 'macros/pagination.html' as macro %} {% import 'macros/ajax_table.html' as ajax %}
{% if interpro %}

{{ interpro.label }}: {{ interpro.description }}


{% if interpro.clade_id %}

Specific for {{ interpro.clade.name}}

{% endif %}

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

{% if count > 0 %}
{% endif %}
{{ macro.pagination('Sequences', url_for('interpro.interpro_sequences', interpro_id=interpro.id), count, url_for('interpro.interpro_sequences_table', interpro_id=interpro.id), 'interpro' ) }} {% 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( 'Other Domains', url_for('interpro.interpro_interpro_ajax', interpro_id=interpro.id), none, 'interpro_ajax' ) }} {% endif %} {% if (count < 300) %} {{ ajax.ajax_table( 'GO terms', url_for('interpro.interpro_go_ajax', interpro_id=interpro.id), none, 'go_ajax' ) }} {% endif %} {% if (count < 5000) %} {{ ajax.ajax_table( 'Families', url_for('interpro.interpro_family_ajax', interpro_id=interpro.id), none, 'family_ajax' ) }} {% endif %} {% endif %}
{% endblock %} {% block extrajs %} {% if count > 0 %} {% endif %} {% endblock %}