aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base
diff options
context:
space:
mode:
authorzsloan2016-08-05 20:53:38 +0000
committerzsloan2016-08-05 20:53:38 +0000
commitce160e61fffbc3370497a1adc299dad230411b72 (patch)
tree1a99a3ba561df0690beaab70b2336c3384c7a57a /wqflask/base
parent08849a27af933340fc14decf8dfdd62e3d65b3b3 (diff)
downloadgenenetwork2-ce160e61fffbc3370497a1adc299dad230411b72.tar.gz
Fixed issue that caused some interval mapping results to be wrong; the cause seems to be related to some strains being renamed in the genofiles
Added a message to the Add to Collection page warning users that anonymous collections will only be stored for 5 days Updated genofiles
Diffstat (limited to 'wqflask/base')
-rw-r--r--wqflask/base/webqtlCaseData.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/wqflask/base/webqtlCaseData.py b/wqflask/base/webqtlCaseData.py
index c80fcb65..8df9939e 100644
--- a/wqflask/base/webqtlCaseData.py
+++ b/wqflask/base/webqtlCaseData.py
@@ -52,6 +52,10 @@ class webqtlCaseData(object):
str += " variance=%2.3f" % self.variance
if self.num_cases != None:
str += " ndata=%d" % self.num_cases
+ if self.name != None:
+ str += " name=%s" % self.name
+ if self.name2 != None:
+ str += " name2=%s" % self.name2
return str
@property