From d76e1ec30195074cf8dfd0f8396285d31faa8984 Mon Sep 17 00:00:00 2001
From: zsloan
Date: Fri, 10 Sep 2021 19:02:10 +0000
Subject: Fix issue with the way the template was checking if genofile_string
was set; it was receiving an empty string, so the previous logic made it
think there was a genofile string when there wasn't one
---
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 7f865056..7a222d0c 100644
--- a/wqflask/wqflask/templates/mapping_results.html
+++ b/wqflask/wqflask/templates/mapping_results.html
@@ -73,7 +73,7 @@
Gene Symbol: {{ this_trait.symbol }}
Location: Chr {{ this_trait.chr }} @ {{ this_trait.mb }} Mb
{% endif %}
- {% if genofile_string is defined %}
+ {% if genofile_string != "" %}
Genotypes: {{ genofile_string.split(":")[1] }}
{% endif %}
--
cgit v1.2.3