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/correlation_page.html | 550 ++++++++++++++++++++++++++++ 1 file changed, 550 insertions(+) create mode 100644 gn2/wqflask/templates/correlation_page.html (limited to 'gn2/wqflask/templates/correlation_page.html') diff --git a/gn2/wqflask/templates/correlation_page.html b/gn2/wqflask/templates/correlation_page.html new file mode 100644 index 00000000..d3ee32f3 --- /dev/null +++ b/gn2/wqflask/templates/correlation_page.html @@ -0,0 +1,550 @@ +{% extends "base.html" %} +{% block title %}Correlation Results{% endblock %} +{% block css %} + + + + + + +{% endblock %} +{% block content %} +
+ +
+

Values of record {{ this_trait.name }} in the {{ this_dataset.fullname }} + dataset were compared to all records in the {{ target_dataset.fullname }} + dataset. The top {{ return_results }} correlations ranked by the {{ formatted_corr_type }} are displayed. + You can resort this list by clicking the headers. Select the Record ID to open the trait data + and analysis page. +

+
+
+
+ + + + {% include 'tool_buttons.html' %} +
+
+
+
+
+ + + + + + + + + + +
+
+
+
+
+ +
+
+
+ +
+
+ Show/Hide Columns: +
+ {% if target_dataset.type == 'ProbeSet' %} + + + + + + + + {% elif target_dataset.type == 'Publish' %} + + + + + + + + + + + + {% else %} + + + + + {% endif %} +
+
+ + + + + {% for header in header_fields %} + + {% endfor %} + + + + + + +
{{header}}

Loading...
+
+
+{% endblock %} + +{% block js %} + + + + + + + + + + + + + + + + + + +{% endblock %} -- cgit v1.2.3