diff options
author | Alexander_Kabui | 2022-07-07 23:13:14 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-07-22 14:52:08 +0300 |
commit | 10256824e545d8e4115286389ef38f2d2c9735e1 (patch) | |
tree | 8bde325d3a280e19b1fff0057fe2491ee082719e /tests/unit | |
parent | 0c13d30e7008ff8285e33c39316211b48dc82ca1 (diff) | |
download | genenetwork3-10256824e545d8e4115286389ef38f2d2c9735e1.tar.gz |
mypy pylint fixes
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/computations/test_rust_correlation.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unit/computations/test_rust_correlation.py b/tests/unit/computations/test_rust_correlation.py index 7c284ed..0fd8e94 100644 --- a/tests/unit/computations/test_rust_correlation.py +++ b/tests/unit/computations/test_rust_correlation.py @@ -68,9 +68,6 @@ def test_parse_results(): "num_overlap": 00, "p_value": p_val}} for (trait, corr_coeff, p_val) in raw_data] - expected_results = [{"trait_name": name, "corr_coeff": corr, - "p_val": pval} for (name, corr, pval) in raw_data] - assert (parse_correlation_output( "tests/unit/computations/data/correlation/sorted_results.txt", len(raw_data)) @@ -122,7 +119,6 @@ def test_get_samples(): } - exluded = ["BXD", "BXD11"] assert get_samples(all_samples=al_samples, base_samples=["BXD", "BXD4", "BXD5", "BXD6", "BXD11" |