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

This form allows you to establish mappings between pathway pairs. First, select the resource of the pathway you want to map, and then start typing the pathway in the left-side input which will be automatically autocompleted. The mappings created will be automatically added to the mapping catalog, where users can vote for the mappings. After 3 users have approved a mapping, the mapping will be added to the curated mapping list.

ComPath allows for two types of mappings. More description about the mapping types and protocol followed can be found here.

  • equivalentTo. This mapping type reflects that the pathway pair shares a high similarity as well as the same specific focus. E.g., "Allograft rejection - Homo sapiens (human)" from KEGG equivalentTo "Allograft Rejection" from WikiPathways.
  • isPartOf. This type of mapping represents a hierarchical relationship between the two pathways (e.g., pathway 1 (child) isPartOf pathway 2 (parent)). A real world example of this mapping would be "Lipid metabolism" isPartOf "Metabolism".
Mapping Catalog
{% include "meta/footer.html" %} {% endblock %}