From a1b1fdce9c92fd84e97310c79c17e7b1c74bff07 Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Mon, 3 May 2021 10:11:05 +0300 Subject: replace database with conn --- gn3/computations/correlations.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gn3/computations/correlations.py') diff --git a/gn3/computations/correlations.py b/gn3/computations/correlations.py index 4432971..3563530 100644 --- a/gn3/computations/correlations.py +++ b/gn3/computations/correlations.py @@ -99,7 +99,8 @@ def do_bicor(x_val, y_val) -> Tuple[float, float]: package :not packaged in guix """ - return (x_val, y_val) + _corr_input = (x_val, y_val) + return (0.0, 0.0) def filter_shared_sample_keys(this_samplelist, -- cgit v1.2.3