diff options
| author | Alexander Kabui | 2021-05-03 10:11:05 +0300 |
|---|---|---|
| committer | Alexander Kabui | 2021-05-03 10:11:05 +0300 |
| commit | a1b1fdce9c92fd84e97310c79c17e7b1c74bff07 (patch) | |
| tree | c757f767bf07547b09a4bbc7060aea5a9cc36679 /gn3 | |
| parent | d7aa112eff101feb98755a05ddfa2870aa0f27b0 (diff) | |
| download | genenetwork3-a1b1fdce9c92fd84e97310c79c17e7b1c74bff07.tar.gz | |
replace database with conn
Diffstat (limited to 'gn3')
| -rw-r--r-- | gn3/computations/correlations.py | 3 |
1 files changed, 2 insertions, 1 deletions
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, |
