From fccdf55409a5146de186e3d2424ebd23d751d326 Mon Sep 17 00:00:00 2001
From: zsloan
Date: Mon, 25 Sep 2023 17:45:18 +0000
Subject: Swap parameters for mapping scatterplot, since the genotype markers
were being pulled from the dataid instead of the trait sample values
---
wqflask/wqflask/templates/mapping_results.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wqflask/wqflask/templates/mapping_results.html b/wqflask/wqflask/templates/mapping_results.html
index d40bb8c9..81101fed 100644
--- a/wqflask/wqflask/templates/mapping_results.html
+++ b/wqflask/wqflask/templates/mapping_results.html
@@ -420,7 +420,7 @@
'data': null,
'render': function(data, type, row, meta) {
{% if geno_db_exists == "True" %}
- return '' + String(parseFloat(data.additive).toFixed(3)) + ''
+ return '' + String(parseFloat(data.additive).toFixed(3)) + ''
{% else %}
return String(parseFloat(data.additive).toFixed(3))
{% endif %}
--
cgit v1.2.3