diff options
author | zsloan | 2019-02-15 10:47:59 -0600 |
---|---|---|
committer | zsloan | 2019-02-15 10:47:59 -0600 |
commit | 57d6d5c279a0386cd6e6ebd1c075c97487a3ee13 (patch) | |
tree | c8aacc21f97cd46bd99bdbad347c8833148cb60d /wqflask/base | |
parent | 8d4b07d6c8470eb9f0b02dd8c7903fca267e2e25 (diff) | |
download | genenetwork2-57d6d5c279a0386cd6e6ebd1c075c97487a3ee13.tar.gz |
Fixed error caused by change to N values in database (now takes strings instead of integers)
Fixed error that caused N to show up as "null" in the trait sample table instead of "x"
Diffstat (limited to 'wqflask/base')
-rw-r--r-- | wqflask/base/webqtlCaseData.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/base/webqtlCaseData.py b/wqflask/base/webqtlCaseData.py index aa34024c..d8487f01 100644 --- a/wqflask/base/webqtlCaseData.py +++ b/wqflask/base/webqtlCaseData.py @@ -81,6 +81,6 @@ class webqtlCaseData(object): @property def display_num_cases(self): if self.num_cases != None: - return "%d" % self.num_cases + return "%s" % self.num_cases else: return "x" |