{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}OLS Suggestions{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Suggestions

The Ontology Lookup Service gave the following suggestions for terms in {{ namespace_name }} after {{ timer }} seconds. Note that these terms may appear in multiple ontologies with similar names. Links are provided to the OLS to curate further.

{% for name, results in data.items() %}

{{ name }}

{% if results['response']['numFound'] == 0 %}

No suggestions found

{% else %} {% endif %} {# {% for result in results %}#} {# {% if result['is_defining_ontology'] %}#} {#
#} {#
Ontology
#} {#
{{ result['ontology_name'] }}
#} {#
Label
#} {#
{{ result['label'] }}
#} {#
Identifier
#} {#
{{ result['obo_id'] }}
#} {#
#} {# {% endif %}#} {# {% endfor %}#}
{% endfor %}

Missing Suggestions

The following terms returned no suggestions

    {% for name in missing_suggestion|sort %}
  • {{ name }}
  • {% endfor %}
{% include "footer.html" %} {% endblock %}