{% extends 'base.html' %}
{% block title %}
{% if overview %}
Clustering Methods Overview
{% else %}
{{ cluster.name }} details
{% endif %}
{% endblock %}
{% block container %}
{% import 'macros/pagination.html' as macro %}
{% import 'macros/ajax_table.html' as ajax %}
{% if overview %}
Clustering Methods Overview
{% if cluster_methods|count > 1 %}
ID |
Species |
Description |
Network |
Cluster count |
{% for c in cluster_methods %}
{{ c.id }} |
{{ c.network_method.species.name }} |
{{ c.method }} |
{{ c.network_method.description }} |
{{ c.cluster_count }} |
{% endfor %}
{% else %}
No co-expression clusters generated.
{% endif %}
{% elif cluster %}
{% import "macros/cluster_actions.html" as ca %}
Coexpression cluster: {{ cluster.name }} ({{ cluster.method.method }})
View as: {{ ca.cluster_actions(cluster.id, exclude=["table"]) }}
Average Expression Profile
{{ macro.pagination('Sequences',
url_for('expression_cluster.expression_cluster_sequences', cluster_id=cluster.id),
sequence_count,
url_for('expression_cluster.expression_cluster_download', cluster_id=cluster.id),
'clusters'
) }}
Associations
{{ ajax.ajax_table(
'InterPro Domains',
url_for('expression_cluster.cluster_interpro_ajax', cluster_id=cluster.id),
none,
'interpro_ajax'
) }}
{{ ajax.ajax_table(
'GO Terms',
url_for('expression_cluster.cluster_go_ajax', cluster_id=cluster.id),
none,
'go_ajax'
) }}
{{ ajax.ajax_table(
'Family Terms',
url_for('expression_cluster.cluster_family_ajax', cluster_id=cluster.id),
none,
'family_ajax'
) }}
{% endif %}
{% endblock %}
{% block extrajs %}
{% if cluster %}
{% endif %}
{% endblock %}