diff options
author | BonfaceKilz | 2020-07-22 01:41:45 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-07-24 03:47:44 +0300 |
commit | 82ee315583281b93e1eff9640ce04e44bc70ac58 (patch) | |
tree | 6c40df1eba66b186ae1036ac3e1dd3766e266fdc /wqflask | |
parent | 2b7d50f9ac6d0f4f6a032e60053b5923c292a0a1 (diff) | |
download | genenetwork2-82ee315583281b93e1eff9640ce04e44bc70ac58.tar.gz |
Remove redundant variable
* wqflask/utility/corr_result_helpers.py(normalize_values_with_values):
Remove `num_overlap`
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/utility/corr_result_helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/corr_result_helpers.py b/wqflask/utility/corr_result_helpers.py index a43edbd4..ea3ababf 100644 --- a/wqflask/utility/corr_result_helpers.py +++ b/wqflask/utility/corr_result_helpers.py @@ -39,4 +39,4 @@ def normalize_values_with_samples(a_samples, b_samples): a_new[sample] = a_samples[sample] b_new[sample] = b_samples[sample] - return a_new, b_new, num_overlap + return a_new, b_new, len(a_new) |