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

This form will run a heat diffusion analysis on the network resulting from Query {{ query.id }} in order to prioritize biological processes in the context of a differential gene expression experiment.

Query Info

{% if query.user %}
Creator
{{ query.user }}
{% endif %}
Assembly
    {% for network in query.assembly.networks %}
  • {{ network }}
  • {% endfor %}
{% if query.seeding %}
Seeding
{{ query.seeding }}
{% endif %} {% if query.pipeline %}
Pipeline
{{ query.pipeline }}
{% endif %}

Input

Differential gene expression data can be created easily with GEO2R by following this tutorial.

{{ wtf.quick_form(form, form_type='horizontal', button_map={'submit_button': 'btn btn-primary'}) }}
{% include "footer.html" %} {% endblock %} {% block head %} {{ super() }} {{ fixes.ie8() }} {% endblock %}