diff options
author | zsloan | 2022-10-04 17:54:49 +0000 |
---|---|---|
committer | zsloan | 2022-10-04 17:55:00 +0000 |
commit | 7172968b074de40d721864140a895e82fb9d4e07 (patch) | |
tree | a3ac539f7a4d2f631a9266c7d39f22271872e3cf | |
parent | de5aa0645cb870f728bb24ed095f28465012eb24 (diff) | |
download | genenetwork2-7172968b074de40d721864140a895e82fb9d4e07.tar.gz |
Pass redis_conn to get_samplelist
-rw-r--r-- | wqflask/wqflask/correlation_matrix/show_corr_matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/correlation_matrix/show_corr_matrix.py b/wqflask/wqflask/correlation_matrix/show_corr_matrix.py index 17c174b1..617f5c2e 100644 --- a/wqflask/wqflask/correlation_matrix/show_corr_matrix.py +++ b/wqflask/wqflask/correlation_matrix/show_corr_matrix.py @@ -197,7 +197,7 @@ class CorrelationMatrix: temp_dataset = create_dataset( dataset_name="Temp", dataset_type="Temp", group_name=this_group_name) - temp_dataset.group.get_samplelist() + temp_dataset.group.get_samplelist(redis_conn=get_redis_conn()) pca_temp_traits = generate_pca_temp_traits(species=temp_dataset.group.species, group=this_group_name, traits_data=self.trait_data_array, corr_array=self.pca_corr_results, |