{% extends "framework.html" %} {% load static %} {% block content %} {% if object_type != 'package' %}

{% endif %} {% block action_modals %} {% if object_type == 'package' %} {% include "modals/collections/new_package_modal.html" %} {% include "modals/collections/import_legacy_package_modal.html" %} {% elif object_type == 'compound' %} {% include "modals/collections/new_compound_modal.html" %} {% elif object_type == 'rule' %} {% include "modals/collections/new_rule_modal.html" %} {% elif object_type == 'reaction' %} {% include "modals/collections/new_reaction_modal.html" %} {% elif object_type == 'pathway' %} {# {% include "modals/collections/new_pathway_modal.html" %} #} {% elif object_type == 'node' %} {% include "modals/collections/new_node_modal.html" %} {% elif object_type == 'edge' %} {% include "modals/collections/new_edge_modal.html" %} {% elif object_type == 'scenario' %} {% include "modals/collections/new_scenario_modal.html" %} {% elif object_type == 'model' %} {% include "modals/collections/new_model_modal.html" %} {% elif object_type == 'setting' %} {#{% include "modals/collections/new_setting_modal.html" %}#} {% elif object_type == 'user' %}
{% elif object_type == 'group' %} {% include "modals/collections/new_group_modal.html" %} {% endif %} {% endblock action_modals %}
{% if object_type == 'package' %} Packages {% elif object_type == 'compound' %} Compounds {% elif object_type == 'structure' %} Compound structures {% elif object_type == 'rule' %} Rules {% elif object_type == 'reaction' %} Reactions {% elif object_type == 'pathway' %} Pathways {% elif object_type == 'node' %} Nodes {% elif object_type == 'edge' %} Edges {% elif object_type == 'scenario' %} Scenarios {% elif object_type == 'model' %} Model {% elif object_type == 'setting' %} Settings {% elif object_type == 'user' %} Users {% elif object_type == 'group' %} Groups {% endif %}
{% if object_type == 'package' %}

A package contains pathways, rules, etc. and can reflect specific experimental conditions. Learn more >>

{% elif object_type == 'compound' %}

A compound stores the structure of a molecule and can include meta-information. Learn more >>

{% elif object_type == 'structure' %}

The structures stored in this compound Learn more >>

{% elif object_type == 'rule' %}

A rule describes a biotransformation reaction template that is defined as SMIRKS. Learn more >>

{% elif object_type == 'reaction' %}

A reaction is a specific biotransformation from educt compounds to product compounds. Learn more >>

{% elif object_type == 'pathway' %}

A pathway displays the (predicted) biodegradation of a compound as graph. Learn more >>

{% elif object_type == 'node' %}

Nodes represent the (predicted) compounds in a graph. Learn more >>

{% elif object_type == 'edge' %}

Edges represent the links between Nodes in a graph Learn more >>

{% elif object_type == 'scenario' %}

A scenario contains meta-information that can be attached to other data (compounds, rules, ..). Learn more >>

{% elif object_type == 'model' %}

A model applies machine learning to limit the combinatorial explosion. Learn more >>

{% elif object_type == 'setting' %}

A setting includes configuration parameters for pathway predictions. Learn more >>

{% elif object_type == 'user' %}

Register now to create own packages and to submit and manage your data. Learn more >>

{% elif object_type == 'group' %}

Users can team up in groups to share packages. Learn more >>

{% endif %} {% if reviewed_objects and unreviewed_objects %} {% if reviewed_objects|length == 0 and unreviewed_objects|length == 0 %}

Nothing found. There are two possible reasons:

1. There is no content yet.
2. You have no reading permissions.

Please be sure you have at least reading permissions.

{% endif %} {% endif %}
{% if reviewed_objects %} {% if reviewed_objects|length > 0 %}
{% if object_type == 'package' %} {% for obj in reviewed_objects %} {{ obj.name }} {% endfor %} {% else %} {% for obj in reviewed_objects|slice:":50" %} {{ obj.name }}{# ({{ obj.package.name }}) #} {% endfor %} {% endif %}
{% endif %} {% endif %} {% if unreviewed_objects %}
{% if object_type == 'package' %} {% for obj in unreviewed_objects %} {{ obj.name }} {% endfor %} {% else %} {% for obj in unreviewed_objects|slice:":50" %} {{ obj.name }} {% endfor %} {% endif %}
{% endif %} {% if objects %} {% endif %}
{% endblock content %}