From 60286e7b1eeb3880e94e8671fbcea34da56adfb5 Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Wed, 29 Sep 2021 11:09:01 +0300 Subject: test template for gn3 wgcna --- wqflask/wqflask/templates/test_wgcna_results.html | 146 ++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 wqflask/wqflask/templates/test_wgcna_results.html diff --git a/wqflask/wqflask/templates/test_wgcna_results.html b/wqflask/wqflask/templates/test_wgcna_results.html new file mode 100644 index 00000000..37ea2aa0 --- /dev/null +++ b/wqflask/wqflask/templates/test_wgcna_results.html @@ -0,0 +1,146 @@ +{% extends "base.html" %} +{% block title %}WCGNA results{% endblock %} + +{% block content %} + + +
+ + +
+
+ {% for key, value in results["data"]["output"]["soft_threshold"].items()%} + +
+

{{key}}

+ {% for val in value %} +

{{val|round(3)}}

+ + {% endfor %} + +
+ {% endfor %} + +
+ +
+

Net colors

+
+ {% for key,value in results["data"]["output"]["net_colors"].items() %} +
+

{{key}}

+

{{value}}

+
+ + {% endfor %} + +
+ + +
+ + +
+

Module eigen genes

+ +
+ {% for strain in results["data"]["input"]["sample_names"]%} + {{strain}} + {% endfor %} + {% for mod,values in results["data"]["output"]["ModEigens"].items() %} + {{mod}} {{values}} + + {% endfor %} + +
+ +
+ + + dsffsdf + + + +
+
+ + + +
+ + + +{% endblock %} + -- cgit v1.2.3