diff options
author | Alexander_Kabui | 2022-08-10 07:42:01 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-08-10 09:55:22 +0300 |
commit | ae8fa8407b9c1088916dc6b7e22e096360f0873e (patch) | |
tree | a9971b398778f67e52ba446757547aa0caa5da50 | |
parent | c79b0a0e2bd4d174cfa35645436bd0bec04c1c4c (diff) | |
download | genenetwork3-ae8fa8407b9c1088916dc6b7e22e096360f0873e.tar.gz |
remove unnecessary parsing of floats
-rw-r--r-- | gn3/computations/rust_correlation.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn3/computations/rust_correlation.py b/gn3/computations/rust_correlation.py index 23fdf42..a383317 100644 --- a/gn3/computations/rust_correlation.py +++ b/gn3/computations/rust_correlation.py @@ -91,6 +91,7 @@ def parse_correlation_output(result_file: str, return [] + def get_samples(all_samples: dict[str, str], base_samples: list[str], excluded: list[str]): |