aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base/data_set.py
diff options
context:
space:
mode:
authorzsloan2016-07-27 16:41:42 +0000
committerzsloan2016-07-27 16:41:42 +0000
commit44e302f3d84b10655b6900ceab6736d24e281f9e (patch)
tree325412f601e85e3342f6b00fcbb694e8e41533a0 /wqflask/base/data_set.py
parent1a4a115c36370ece8bce0f3ab32a5bb4076d0ab7 (diff)
downloadgenenetwork2-44e302f3d84b10655b6900ceab6736d24e281f9e.tar.gz
Fixed problem with phenotype traits causing error
Can now remove traits from collections and add to existing collections Fixed a few other minor collection bugs
Diffstat (limited to 'wqflask/base/data_set.py')
-rw-r--r--wqflask/base/data_set.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py
index d0ec3f3c..7aed2576 100644
--- a/wqflask/base/data_set.py
+++ b/wqflask/base/data_set.py
@@ -106,7 +106,8 @@ Publish or ProbeSet. E.g.
new_type = "Geno"
else:
new_type = "ProbeSet"
- self.datasets[short_dataset_name] = new_type
+ self.datasets[short_dataset_name] = new_type
+ print("DATASETS:", self.datasets)
logger.info("datasets",self.datasets)
def __call__(self, name):