From 204a308be0f741726b9a620d88fbc22b22124c81 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 29 Dec 2023 18:55:37 +0000 Subject: Namespace all modules under gn2. We move all modules under a gn2 directory. This is important for "correct" packaging and deployment as a Guix service. --- gn2/wqflask/templates/geneweaver_page.html | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 gn2/wqflask/templates/geneweaver_page.html (limited to 'gn2/wqflask/templates/geneweaver_page.html') diff --git a/gn2/wqflask/templates/geneweaver_page.html b/gn2/wqflask/templates/geneweaver_page.html new file mode 100644 index 00000000..7687cb6a --- /dev/null +++ b/gn2/wqflask/templates/geneweaver_page.html @@ -0,0 +1,35 @@ +{% extends "base.html" %} +{% block title %}{% if wrong_input == "True" %}WebGestalt Error{% else %}Opening WebGestalt{% endif %}{% endblock %} +{% block content %} + {% if wrong_input == "True" %} +
+

Error

+
+ {% if chip_name == "mixed" %} +

Sorry, the analysis was interrupted because your selections from GeneNetwork apparently include data from more than one array platform (i.e., Affymetrix U74A and M430 2.0). Most WebGestalt analyses assume that you are using a single array type and compute statistical values on the basis of that particular array. Please reselect traits from a signle platform and submit again.

+ {% elif chip_name == "not_microarray" %} +

You need to select at least one microarray trait to submit. + {% elif '_NA' in chip_name %} +

Sorry, the analysis was interrupted because your selections from GeneNetwork apparently include data from platform {{ chip_name }} which is unknown by GeneWeaver. Please reselect traits and submit again.

+ {% else %} +

Sorry, an error occurred while submitting your traits to GeneWeaver.

+ {% endif %} +
+ {% else %} +
+

Opening GeneWeaver...

+
+
+ {% for key in hidden_vars %} + + {% endfor %} +
+ {% endif %} +{% endblock %} +{% block js %} +{% if wrong_input == "False" %} + +{% endif %} +{% endblock %} \ No newline at end of file -- cgit v1.2.3