{% extends 'base.html' %} {% load static %} {% block title %} EXPath Tool 2.0{% endblock %} {% block content %}

WGCNA Analysis Results

{% if user_id == 2 %}
Read-Only Mode: This is a public Demo project and is read-only. If you want to test different parameters, please create your own project.
{% endif %}
{% csrf_token %}
Select all or filter by highest variance.
Manual threshold (e.g., 6 or 12).
Target R² for network topology (default: 0.8).
Minimum genes per module (default: 30).
Threshold to merge similar modules (default: 0.2).
{% if user_id == 2 %}
{% endif %}

{% if status == 'idle' %}

No Analysis Data

It seems your project doesn't have the required data yet, or the analysis hasn't started.

Please ensure you have uploaded the Expression, GO, and Pathway files, then click "Recalculate".

{% elif status == 'processing' %}

Analysis running in background...

{% elif status == 'failed' %}

Analysis Failed

{{ error_msg }}

Please adjust the Advanced Parameters above and recalculate.

{% elif status == 'success' %} {% comment %}

Hierarchical Clustering Dendrogram

Cluster Dendrogram
{% endcomment %}

Module-Trait Relationships

Displays the correlation between gene modules and your experimental conditions. Red indicates positive correlation, blue indicates negative correlation.


Gene Module Overview

    {% for module in modules %}
  • Module {{ module.color }} {{ module.count }} genes
  • {% endfor %}
Download Full Module List Export all genes and their assigned modules.

Hub Gene Network

Module-Module Correlation Heatmap

{% endif %}
{% endblock %}