diff options
author | DannyArends | 2015-09-20 12:11:09 +0200 |
---|---|---|
committer | DannyArends | 2015-09-20 12:11:09 +0200 |
commit | b01dea7b79e47203a8554a74fa3ad46d71060135 (patch) | |
tree | adeaa8eef5cfdc74d3d3d3286585cd8e3b6770f4 | |
parent | 60a6b72d8f739afaac6a282ea20f713e4fc5487d (diff) | |
download | genenetwork2-b01dea7b79e47203a8554a74fa3ad46d71060135.tar.gz |
Updating the WGCNA setup and results templates
-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}} |