{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block scripts %} {{ super() }} {% endblock %} {% block title %}{{ network }} Summary: Completeness{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Translocations

Summarizes when the translocation of a given node causes a change in its activity, but there is no knowledge related to what that activity implies.

{% for entries_types, entries_items in entries.items() %} {% for entry in entries_items %}

{{ entry['line'] }} - {{ entries_types }}

{{ entry['bel'] }}

{{ entry }}

{% if entry['chain'] %}
    {% for related in entry['chain'] %}
  • Chain: {{ related }}
  • {% endfor %}
{% endif %} {% if entry['related'] %}
    {% for related in entry['related'] %}
  • Related: {{ related }}
  • {% endfor %}
{% endif %}
{% endfor %} {% endfor %}
{% endblock %}