aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2016-03-18 16:19:34 +0000
committerzsloan2016-03-18 16:19:34 +0000
commitf40932fa60720c0be24f45a7b1500ab6de4a0042 (patch)
tree7b7cfb62cfbb86ae92f76515a9189900dcb04690 /wqflask
parentd4cf1581d13dcf2ba68d33f7fde48392e1c5a063 (diff)
downloadgenenetwork2-f40932fa60720c0be24f45a7b1500ab6de4a0042.tar.gz
Forgot to not retrieve sample data for the phenotype global search with the last commit, added it now
Diffstat (limited to 'wqflask')
-rwxr-xr-xwqflask/wqflask/gsearch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/gsearch.py b/wqflask/wqflask/gsearch.py
index 4179dc48..179f054e 100755
--- a/wqflask/wqflask/gsearch.py
+++ b/wqflask/wqflask/gsearch.py
@@ -92,7 +92,7 @@ class GSearch(object):
for line in re:
dataset = create_dataset(line[2], "Publish")
trait_id = line[3]
- this_trait = GeneralTrait(dataset=dataset, name=trait_id, get_qtl_info=True)
+ this_trait = GeneralTrait(dataset=dataset, name=trait_id, get_qtl_info=True, get_sample_info=False)
self.trait_list.append(this_trait)
species = webqtlDatabaseFunction.retrieve_species(dataset.group.name)
dataset.get_trait_info([this_trait], species)