aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base
diff options
context:
space:
mode:
authorZachary Sloan2013-04-02 19:36:30 +0000
committerZachary Sloan2013-04-02 19:36:30 +0000
commit51e120ae25a7955a895d5e79d5ee459764a331ea (patch)
treeb39708982caceac8db2a952a50bb66c7467ea3ed /wqflask/base
parentf2af96043989bf36d2961496aaef61adbe3d9701 (diff)
downloadgenenetwork2-51e120ae25a7955a895d5e79d5ee459764a331ea.tar.gz
pylmm code is running for human data (plink .bed genotype files)
Diffstat (limited to 'wqflask/base')
-rwxr-xr-xwqflask/base/data_set.py5
-rwxr-xr-xwqflask/base/webqtlConfig.py1
2 files changed, 6 insertions, 0 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py
index 71efc9b2..17881e53 100755
--- a/wqflask/base/data_set.py
+++ b/wqflask/base/data_set.py
@@ -323,6 +323,11 @@ class PhenotypeDataSet(DataSet):
description = this_trait.pre_publication_description
this_trait.description_display = description
+ try:
+ this_trait.description_display.decode('ascii')
+ except Exception:
+ this_trait.description_display = this_trait.description_display.decode('utf-8')
+
if not this_trait.year.isdigit():
this_trait.pubmed_text = "N/A"
diff --git a/wqflask/base/webqtlConfig.py b/wqflask/base/webqtlConfig.py
index d05fa6e0..1845c749 100755
--- a/wqflask/base/webqtlConfig.py
+++ b/wqflask/base/webqtlConfig.py
@@ -52,6 +52,7 @@ ENSEMBLETRANSCRIPT_URL="http://useast.ensembl.org/Mus_musculus/Lucene/Details?sp
SECUREDIR = GNROOT + 'secure/'
COMMON_LIB = GNROOT + 'support/admin'
HTMLPATH = GNROOT + 'web/'
+PYLMM_PATH = HTMLPATH + 'plink/'
IMGDIR = HTMLPATH +'image/'
IMAGESPATH = HTMLPATH + 'images/'
UPLOADPATH = IMAGESPATH + 'upload/'