aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/traits.py
diff options
context:
space:
mode:
authorAlexander Kabui2021-03-30 18:45:13 +0300
committerAlexander Kabui2021-03-30 18:45:13 +0300
commit31d9aeb1bf4686500406a809d0c5fa4b629125b0 (patch)
treef180202cb00a292cd693fdb12baf7f2336429144 /gn3/computations/traits.py
parent943cb096fb7e76f64a4f6059a8e03c05a900e9fa (diff)
downloadgenenetwork3-31d9aeb1bf4686500406a809d0c5fa4b629125b0.tar.gz
modify getting sample data from db
Diffstat (limited to 'gn3/computations/traits.py')
-rw-r--r--gn3/computations/traits.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gn3/computations/traits.py b/gn3/computations/traits.py
index 7386745..bbb3073 100644
--- a/gn3/computations/traits.py
+++ b/gn3/computations/traits.py
@@ -1,4 +1,5 @@
"""module contains all operating related to traits"""
+from gn3.computations.datasets import retrieve_trait_sample_data
def compute_sum(rhs_val: int, lhs_val: int) -> int:
@@ -28,7 +29,8 @@ def get_trait_sample_data(trait_dataset, trait_name) -> dict:
try to fetch from the traits dataset redis is only used for\
temp dataset type which is not used in this case """
- sample_results = trait_dataset.retrieve_sample_data(trait_name)
+ sample_results = retrieve_trait_sample_data(
+ trait_dataset.id, trait_dataset.type, trait_name)
trait_data = {}