{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% import "macros.html" as pbw %} {% block title %}User {{ user.email }}{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }} {% if current_user.is_authenticated and current_user.is_admin %} {% endif %} {% if pending_reports|length > 0 %}

{% if user == current_user %}My {% endif %}Pending Jobs

Upload Another BEL Script
{% endif %}

{% if user == current_user %}My {% endif %}Projects

{% for project in user.projects %}

{{ project.name }}

{% if project.description %} {{ project.description }} {% else %} No description has been given. {% endif %}

Networks
Members
    {% for user in project.users %}
  • {{ user }}
  • {% endfor %}
{% endfor %}

{% if user == current_user %}My {% endif %}Uploaded Networks

{% for report in user.reports | reverse %} {% if report.network is not none %} {% endif %} {% endfor %}
Network Date of Upload
{{ report.network }} {{ report.created }}
{% if 'analysis' in blueprints %}

{% if user == current_user %}My {% endif %}Omics

{% for omic in user.omics %} {% endfor %}
Identifier Name Description Public
{{ omic.id }} {{ omic.source_name }} {{ omic.description }} {% if omic.public %} {% else %} {% endif %}

{% if user == current_user %}My {% endif %}Experiments

Differential gene expression data can be created easily with GEO2R by following this tutorial. As an example pipeline, we recommend using the data from GEO Experiment GSE28146 with the available NeuroMMSig subgraphs.

{{ pbw.render_experiment_table(user.experiments) }}
{% endif %}

{% if user == current_user %}My {% endif %}Queries

{{ pbw.render_query_table(queries) }}
{% include "footer.html" %} {% endblock %}