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/pair_scan_results.html | 114 +++++++++++++++++++++++++++
1 file changed, 114 insertions(+)
create mode 100644 gn2/wqflask/templates/pair_scan_results.html
(limited to 'gn2/wqflask/templates/pair_scan_results.html')
diff --git a/gn2/wqflask/templates/pair_scan_results.html b/gn2/wqflask/templates/pair_scan_results.html
new file mode 100644
index 00000000..dbd90bc7
--- /dev/null
+++ b/gn2/wqflask/templates/pair_scan_results.html
@@ -0,0 +1,114 @@
+{% extends "base.html" %}
+{% block title %}Pair Scan{% endblock %}
+{% block css %}
+
+
+
+
+
+{% endblock %}
+
+{% block content %}
+
+{{ header("Mapping",
+ '{}: {}'.format(this_trait.name, this_trait.description_fmt)) }}
+
+
+
+
+ Pair Scan
+
+
+
+
+
+ Results
+
+
+
+
+ Interval 1 |
+ LOD |
+ Interval 2 |
+
+
+ Position |
+ Flanking Markers |
+ Position |
+ Flanking Markers |
+
+
+ Proximal |
+ Distal |
+ Proximal |
+ Distal |
+
+
+
+ {% for row in table_data %}
+
+ {{ row.pos1 }} |
+ {{ row.proximal1 }} |
+ {{ row.distal1 }} |
+ {{ row.lod }} |
+ {{ row.pos2 }} |
+ {{ row.proximal2 }} |
+ {{ row.distal2 }} |
+
+ {% endfor %}
+
+
+
+
+
+{% endblock %}
+
+{% block js %}
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
--
cgit v1.2.3