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

Submission Form

Choose an file to upload with the gene set in txt or gmt file format.

{{ file_form.hidden_tag() }} {{ file_form.file }}
{{ file_form.submit(class="btn btn-primary") }}
{{ text_form.hidden_tag() }} {{ text_form.geneset(rows="5", class="form-control")|safe }}
{{ text_form.submit(class="btn btn-primary") }}
{% include "meta/footer.html" %} {% endblock %}