{% extends 'base.html' %}
{% block title%}
{{ keyword }} search results
{% endblock %}
{% block container %}
- Home
- Search
- Results
- {{ keyword }}
{% if advanced %}
Advanced Search Results
{% if sequences|length > 199 %}
Info! Advanced search results are limited to 200 items. Try a more specific term query to narrow down search results.
{% endif %}
{% else %}
Search results for: {{ keyword }}
{% if ((sequences|length > 49) or (go|length > 49) or (interpro|length > 49) or (families|length > 49) or (profiles|length > 49)) %}
Info! Results are limited to
50 items per category. Try a
more specific term or use the
advanced search to get more accurate results.
{% endif %}
{% endif %}
{% if sequences %}
{% if advanced %}
{% else %}
{% endif %}
Found {{ sequences|length }} sequences
{% if advanced %}
{% endif %}
{% if go %}
Found {{ go|length }} GO terms
{% endif %}
{% if interpro %}
Found {{ interpro|length }} InterPro domains
{% endif %}
{% if families %}
Found {{ families|length }} families
{% endif %}
{% if profiles %}
Found {{ profiles|length }} expression profiles
{% endif %}
{% if not (sequences or go or interpro or families or profiles) %}
No results found for {{ keyword }}, try a more general term or the advanced search.
{% endif %}
{% endblock %}
{% block extrajs %}
{% endblock %}