{% extends 'analysispage.html' %} {% block title %}Project » {{ project }}{% endblock %} {% block desc %} {% if project.description %} {{ project.description|linebreaks }} {% else %} This project does not have a description {% endif %} {% endblock %} {% block right %}
{% if auth_level == 'public' %}

This project is public; it can be viewed by all users.

{% endif %} {% if auth_level == 'admin' %}

You are a manager for this project, so you can edit any of the sample data.

Manage Project

{% endif %} {% if auth_level == 'editor' %}

You are an collaborator on this project. You can run any analysis and flag results for others to see.

{% endif %} {% if auth_level == 'viewer' %}

You are a collaborator on this project. You can run any analysis, but cannot flag results.

{% endif %}
{% endblock %} {% block innercontent %}

Analysis

{% if has_gene_search %} {% endif %}

Project level reports

{% if phenotips_supported %} Phenotype entry metrics Summary of findings {% endif %}
All Tags and Notes
{% for tag in project.get_tags %}
{{tag.get_variant_tags|length}} {{ tag.tag }}  
{% if auth_level == 'admin' and not tag.order %}
edit delete {% endif %}
{% endfor %}

{% if auth_level == 'admin' %}
create tag
{% endif %}

Project Settings

Reference Populations
1000 Genomes v3
ExAC v0.3
{% for p in project.get_private_reference_populations %} {{ p }}
{% endfor %}
Gene Lists
{% for d in project.get_gene_lists %} {{ d }}
{% empty %} No gene lists {% endfor %}

Users

Managers
{% for u in project.get_managers %} {{ u.profile }}
{% empty %} No project managers {% endfor %}
Collaborators
{% for u, collaborator_type in project.get_users %} {{ u.profile }}
{% empty %} No collaborators {% endfor %}
{% include "javascript.html" %} {% endblock %}