diff options
author | zsloan | 2016-07-27 16:41:42 +0000 |
---|---|---|
committer | zsloan | 2016-07-27 16:41:42 +0000 |
commit | 44e302f3d84b10655b6900ceab6736d24e281f9e (patch) | |
tree | 325412f601e85e3342f6b00fcbb694e8e41533a0 /wqflask/base/data_set.py | |
parent | 1a4a115c36370ece8bce0f3ab32a5bb4076d0ab7 (diff) | |
download | genenetwork2-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.py | 3 |
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): |