about summary refs log tree commit diff
path: root/wqflask/utility/helper_functions.py
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/utility/helper_functions.py')
-rwxr-xr-xwqflask/utility/helper_functions.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/wqflask/utility/helper_functions.py b/wqflask/utility/helper_functions.py
index 44f5321e..ca3e2350 100755
--- a/wqflask/utility/helper_functions.py
+++ b/wqflask/utility/helper_functions.py
@@ -19,3 +19,18 @@ def get_species_dataset_trait(self, start_vars):
     #if read_genotype:
     #self.dataset.group.read_genotype_file()
     #self.genotype = self.dataset.group.genotype
+
+
+def get_trait_db_obs(self, trait_db_list):
+
+    self.trait_list = []
+    for i, trait_db in enumerate(trait_db_list):
+        if i == (len(trait_db_list) - 1):
+            break
+        trait_name, dataset_name = trait_db.split(":")
+        #print("dataset_name:", dataset_name)
+        dataset_ob = data_set.create_dataset(dataset_name)
+        trait_ob = GeneralTrait(dataset=dataset_ob,
+                               name=trait_name,
+                               cellid=None)
+        self.trait_list.append((trait_ob, dataset_ob))
\ No newline at end of file