{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Mapping Catalog{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% include "dependencies/common.html" %} {% include "dependencies/datatables.html" %} {% endblock %} {% import "meta/macros.html" as compath %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
Mapping Catalog

The following table lists all the proposed and accepted mappings by the users/curators between a pair of pathways. Registered users can use the voting system to reach a consensus about a given mapping. If this mapping has been proposed/voted for three independent users, the status of the mapping will change to accepted (last column). You can filter the mappings using the table or using the buttons below. Mappings can be downloaded for programmatic usage using the buttons located on the bottom of the page.


{% if current_user.is_authenticated %} {% endif %} {% for mapping in mappings %} {% if current_user.is_authenticated %} {% endif %} {% endfor %}
Pathway 1 Relation Pathway 2VoteAccepted
{{ compath.stylize_plugin_name(STYLED_NAMES, mapping.service_1_name) }} {{ mapping.service_1_pathway_name }} {{ compath.translate_relation(mapping.type ) }} {{ compath.stylize_plugin_name(STYLED_NAMES, mapping.service_2_name) }} {{ mapping.service_2_pathway_name }}
{% set vote=mapping.get_user_vote(current_user) %} {{ mapping.count_up_votes }} {{ mapping.count_down_votes }}
{% if mapping.accepted %} {% elif current_user.is_admin %} Delete Mapping {% else %} {% endif %}
{% include "meta/footer.html" %} {% endblock %}