about summary refs log tree commit diff
path: root/wqflask
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-08-12 12:52:38 +0300
committerFrederick Muriuki Muriithi2022-08-12 13:13:27 +0300
commit4bc374aeeba3e9fac75dea266e35bedb633f950c (patch)
tree2f4170168cfdaf0273393fd21442e8ed76640fee /wqflask
parent17ca7e77631f1fc6a247accfb39cf8da23dc4a92 (diff)
downloadgenenetwork2-4bc374aeeba3e9fac75dea266e35bedb633f950c.tar.gz
Fix some issues with the tests. Add notes in code for improvements.
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/correlation/rust_correlation.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/wqflask/wqflask/correlation/rust_correlation.py b/wqflask/wqflask/correlation/rust_correlation.py
index b4435887..3628f549 100644
--- a/wqflask/wqflask/correlation/rust_correlation.py
+++ b/wqflask/wqflask/correlation/rust_correlation.py
@@ -135,6 +135,7 @@ def compute_correlation_rust(
     (this_dataset, this_trait, target_dataset, sample_data) = (
         target_trait_info)
 
+    ## Replace this with `match ...` once we hit Python 3.10
     corr_type_fns = {
         "sample": __compute_sample_corr__,
         "tissue": __compute_tissue_corr__,
@@ -142,6 +143,7 @@ def compute_correlation_rust(
     }
     results = corr_type_fns[corr_type](
         start_vars, corr_type, method, n_top, target_trait_info)
+    ## END: Replace this with `match ...` once we hit Python 3.10
 
     top_tissue_results = {}
     top_lit_results = {}