{%- extends "base.html" %} {%- import "macros.html" as utils %} {%- block title %}NFDI Dashboard{% endblock %} {%- macro external_mapping_card(title, external_prefix, mappings) %}
{{ title }} Collection Mapping
{%- if external_prefix == "tib.collection" %} Import of TIB OLS collections was implemented in #1762. The data can be synced by running python -m bioregistry.curation.nfdi_collections. {%- else %} Import of BARTOC collections is planned in #1817. {%- endif %}
{%- for collection_id, external_id in mappings.items() %} {%- endfor %}
Collection Name {{ title }} Collection
{{ collection_id }} {{ collections[collection_id].name }} {{ external_id }}
{%- endmacro %} {%- block container %}
NFDI Dashboard

Consortia with maintainer:

    {%- for collection in collections.values() %} {%- if collection.maintainers %}
  1. {{ collection.name.removesuffix(" Collection").removesuffix(" Resoures") }} ({{ collection.resources|length }})
      {% for maintainer in collection.maintainers %}
    • {{ maintainer.name }}
    • {% endfor %}
  2. {%- endif %} {%- endfor %}

Consortia whose collections don't yet have a maintainer:

    {%- for collection in collections.values() %} {%- if not collection.maintainers %}
  1. {{ collection.name.removesuffix(" Collection").removesuffix(" Resoures") }} ({{ collection.resources|length }})
  2. {%- endif %} {%- endfor %}

Consortia whose collections haven't been populated:

    {%- for collection in collections.values() %} {%- if collection.resources|length == 1 %}
  1. {{ collection.name.removesuffix(" Collection").removesuffix(" Resoures") }} {%- if collection.maintainers %} {%- for maintainer in collection.maintainers %} ({{ maintainer.name }}) {%- endfor %} {%- endif %}
  2. {%- endif %} {%- endfor %}
Resource used by more than two consortia
{%- for prefix, count in prefix_counter.most_common() %} {%- if count > 2 and prefix != 'bioregistry' %} {%- endif %} {%- endfor %}
Prefix Name # Consortia
{{ prefix }} {{ manager.get_name(prefix) }} {{ count }}
{{ external_mapping_card("TIB", "tib.collection", tib_collection_mappings) }} {{ external_mapping_card("BARTOC", "bartoc", bartoc_collection_mappings) }}
TIB OLS Opportunities

There are {{ tib_opportunities | length }} ontologies appearing in NFDI collections that have concrete download links in {{ config.METAREGISTRY_TITLE }}, but are not yet indexed in the TIB OLS. Download All OLS Configurations

{% for collection_id, prefixes in collection_to_tib_opportunities.items() %} {% endfor %}
Collection Name # Ontologies Example OLS Config.
{{ collection_id }} {{ collections[collection_id].name }} {{ prefixes | length }} {{ manager.get_name(prefixes[0]) }} ({{ prefixes[0] }})
{%- endblock %}