{% extends "base.html" %}
{% block title %}WCGNA results{% endblock %}
{% block content %}
WGCNA Results
Analysis found {{results['nmod']}} modules when scanning {{results['nphe']}} phenotypes, measured on {{results['nstr']}} strains.
Additional parameters settings:
- Soft thresholds checked = {{results['requestform']['SoftThresholds']}}
- Power used for this analysis = {{results['Power']}}
- TomType = {{results['requestform']['TOMtype']}}
- Minimum module size = {{results['requestform']['MinModuleSize'] }}
- mergeCutHeight = {{results['requestform']['mergeCutHeight'] }}
Soft threshold table
WGCNA module plot
Phenotype / Module table
Phenotype | Module |
{% for r in range(results['nphe']) %}
{{results['phenotypes'][r][0]}} |
{{results['network'][0][r]}} |
{% endfor %}
Module eigen genes
{% endblock %}