{% extends 'base.html' %} {% block content %}

Pathway Visualization

This page allows to simulate a pathway in silico by providing a substrate and a number of MITE reactions. Starting from the substrate, reactions will be applied sequentially, always processing the product of the preceding reaction. The in silico reaction stops if the preceding reaction does not result in a product.

Nota bene: for simplicity, only the first product of a reaction will be considered, if multiple products are possible.

{% with messages = get_flashed_messages() %} {% if messages %}

Error during in silico biosynthesis

    {% for message in messages %}
  • {{ message }}

  • {% endfor %}
{% endif %} {% endwith %}
Reaction builder

Hover over icons to see more information.

{% if svgs %}

In silico biosynthesis

{% for svg in svgs %}
{% if not loop.last %}
{{ report.enzyme_name[loop.index0] }}
{{ report.MITE_acc[loop.index0] }}
{% endif %} {% endfor %}
{% endif %}
{% endblock %}