diff options
author | Frederick Muriuki Muriithi | 2022-12-02 04:43:46 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-12-02 04:43:46 +0300 |
commit | d16617c5911021dc281b5aa77141cef8a3207dff (patch) | |
tree | 33f190a368b124c10a07c0c77a94a9997e2e8e65 | |
parent | f5988b60e9fc184fb3a7b1e9cdcfc3a85aafe82b (diff) | |
download | genenetwork2-d16617c5911021dc281b5aa77141cef8a3207dff.tar.gz |
correlation: Remove unused argument
* wqflask/wqflask/correlation/rust_correlation.py: The
`get_sample_corr_data` function no longer has the `all_samples`
parameter, thus passing the argument leads to a failure. This commit
removes the argument from the call.
-rw-r--r-- | wqflask/wqflask/correlation/rust_correlation.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/wqflask/wqflask/correlation/rust_correlation.py b/wqflask/wqflask/correlation/rust_correlation.py index 2d6d907e..81c2a416 100644 --- a/wqflask/wqflask/correlation/rust_correlation.py +++ b/wqflask/wqflask/correlation/rust_correlation.py @@ -241,7 +241,6 @@ def __compute_sample_corr__( sample_data = get_sample_corr_data( sample_type=start_vars["corr_samples_group"], sample_data= json.loads(start_vars["sample_vals"]), - all_samples=this_dataset.group.all_samples_ordered(), dataset_samples=this_dataset.group.all_samples_ordered()) if not bool(sample_data): |