From c79b0a0e2bd4d174cfa35645436bd0bec04c1c4c Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 10 Aug 2022 09:51:39 +0300 Subject: code refactoring --- gn3/computations/rust_correlation.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'gn3') diff --git a/gn3/computations/rust_correlation.py b/gn3/computations/rust_correlation.py index 246c059..23fdf42 100644 --- a/gn3/computations/rust_correlation.py +++ b/gn3/computations/rust_correlation.py @@ -67,13 +67,11 @@ def parse_correlation_output(result_file: str, def __parse_line__(line): (trait_name, corr_coeff, p_val, num_overlap) = line.rstrip().split(",") if corr_type == "sample": - return ( - trait_name, - { + return (trait_name, { "num_overlap": num_overlap, "corr_coefficient": corr_coeff, "p_value": p_val - }) + }) if corr_type == "tissue": return ( @@ -93,7 +91,6 @@ def parse_correlation_output(result_file: str, return [] - def get_samples(all_samples: dict[str, str], base_samples: list[str], excluded: list[str]): -- cgit v1.2.3