{% extends "framework_modern.html" %} {% load static %} {% block content %} {% block action_modals %} {% include "modals/objects/add_pathway_node_modal.html" %} {% include "modals/objects/add_pathway_edge_modal.html" %} {% include "modals/objects/download_pathway_csv_modal.html" %} {% include "modals/objects/download_pathway_image_modal.html" %} {% include "modals/objects/identify_missing_rules_modal.html" %} {% include "modals/objects/generic_copy_object_modal.html" %} {% include "modals/objects/edit_pathway_modal.html" %} {% include "modals/objects/generic_set_aliases_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/delete_pathway_node_modal.html" %} {% include "modals/objects/delete_pathway_edge_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}

{{ pathway.name }}

Graphical Representation
{% if pathway.completed %}
Pathway prediction complete.
{% elif pathway.failed %}
Pathway prediction failed.
{% else %}
Pathway prediction running.
{% endif %}
Description
{{ pathway.description | safe }}
{% if pathway.aliases %}
Aliases
{% endif %} {% if pathway.scenarios.all %}
Scenarios
{% endif %} {% if pathway.setting %}
Setting
{% if pathway.setting.model %} {% endif %} {% if pathway.setting.rule_packages.all %} {% endif %}
Parameter Value
Model
Model Parameter Parameter Value
Threshold {{ pathway.setting.model_threshold }}
Rule Packages
Max Nodes {{ pathway.setting.max_nodes }}
Max Depth {{ pathway.setting.max_depth }}
{% endif %}
{# prettier-ignore-start #} {# FIXME: This is a hack to get the pathway data into the JavaScript code. #} {# prettier-ignore-end #} {% endblock content %}