diff options
author | AlexanderKabui | 2022-11-29 17:46:38 +0300 |
---|---|---|
committer | AlexanderKabui | 2022-11-29 17:46:38 +0300 |
commit | 33f12bda728d9682abbe07b7ec6c603c5c67a1c5 (patch) | |
tree | 66ec6760b469ad9b1c903b4ae26dea7bab7a0b2d | |
parent | 6e03409cf66f2a390fdf1485756f5fad22cdbec2 (diff) | |
download | genenetwork3-33f12bda728d9682abbe07b7ec6c603c5c67a1c5.tar.gz |
remove unused function parameter
-rw-r--r-- | gn3/computations/rust_correlation.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gn3/computations/rust_correlation.py b/gn3/computations/rust_correlation.py index 9595b57..c9cc392 100644 --- a/gn3/computations/rust_correlation.py +++ b/gn3/computations/rust_correlation.py @@ -46,6 +46,8 @@ def generate_json_file( "file_delimiter": delimiter }, outputfile) + + return (output_file, tmp_json_file) @@ -128,7 +130,6 @@ def get_samples(all_samples: dict[str, str], def get_sample_corr_data(sample_type: str, sample_data: dict[str, str], - all_samples: list[str], dataset_samples: list[str]) -> dict[str, str]: """dependeing on the sample_type fetch the correct sample data """ |