about summary refs log tree commit diff
path: root/wqflask/base
diff options
context:
space:
mode:
authorzsloan2019-02-12 13:20:18 -0600
committerzsloan2019-02-12 13:20:18 -0600
commit27a08a81107705f213d13fb7334a2b8eb4fd68d2 (patch)
tree6fa6716af822e613cb81171471819a469394cc6f /wqflask/base
parent31f5bcc0d28f1093b06b44639e3d3dc96fa4ac0a (diff)
downloadgenenetwork2-27a08a81107705f213d13fb7334a2b8eb4fd68d2.tar.gz
Added GeneWeaver linkout
Fixed some issues with sorting in various tables

Changed header appearance for some pages

Fixed bug where basic stats table would sometimes be duplicated or show up with empty fields
Diffstat (limited to 'wqflask/base')
-rw-r--r--wqflask/base/webqtlCaseData.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/base/webqtlCaseData.py b/wqflask/base/webqtlCaseData.py
index 76f06cc6..aa34024c 100644
--- a/wqflask/base/webqtlCaseData.py
+++ b/wqflask/base/webqtlCaseData.py
@@ -49,7 +49,7 @@ class webqtlCaseData(object):
         if self.variance != None:
             str += " variance=%2.3f" % self.variance
         if self.num_cases:
-            str += " ndata=%d" % self.num_cases
+            str += " ndata=%s" % self.num_cases
         if self.name:
             str += " name=%s" % self.name
         if self.name2: