diff options
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/wgcna_results.html | 12 | ||||
-rw-r--r-- | wqflask/wqflask/templates/wgcna_setup.html | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/wgcna_results.html b/wqflask/wqflask/templates/wgcna_results.html index 77de3604..79c321e5 100644 --- a/wqflask/wqflask/templates/wgcna_results.html +++ b/wqflask/wqflask/templates/wgcna_results.html @@ -2,9 +2,17 @@ {% block title %}WCGNA results{% endblock %} {% block content %} <!-- Start of body --> - <div> + <div class="container"> <h1>WGCNA Results</h1> - Phenotypes used as input: {% for k in result %} {{k[0].name}} {% endfor %} + Phenotype / Module table: + <table> + <tr><th>Phenotype</th><th>Module</th><th>Weight</th></tr> + {% for k in result %} + <tr><td>{{k[0].name}}</td><td> </td><td> </td></tr> + {% endfor %} + </table> + WGCNA module plot + <img src=""> </div> {% endblock %} diff --git a/wqflask/wqflask/templates/wgcna_setup.html b/wqflask/wqflask/templates/wgcna_setup.html index caf42fdb..821e4954 100644 --- a/wqflask/wqflask/templates/wgcna_setup.html +++ b/wqflask/wqflask/templates/wgcna_setup.html @@ -3,7 +3,7 @@ {% block content %} <!-- Start of body --> <form action="/wgcna_results" method="post"> - <div> + <div class="container"> <h1>WGCNA analysis parameters</h1> Phenotypes used as input: {{request.form}} |