From e953b5c6c8135babc4176dbc0a7cda59e94fa488 Mon Sep 17 00:00:00 2001 From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr> Date: Thu, 17 Dec 2020 09:34:53 +0100 Subject: [PATCH] src/find_interaction_cluster/nt_and_community.py: fix the nucleotide list of interest --- src/find_interaction_cluster/nt_and_community.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/find_interaction_cluster/nt_and_community.py b/src/find_interaction_cluster/nt_and_community.py index 998d95b3..838dc6a5 100644 --- a/src/find_interaction_cluster/nt_and_community.py +++ b/src/find_interaction_cluster/nt_and_community.py @@ -840,7 +840,7 @@ def multiple_nt_lm_launcher(ps: int, logging.info(f"Checking if communities as an effect on {component_type} " "frequency") project = get_projects(global_weight, project) - cpnt_list = [get_features(component_type)[0]] + cpnt_list = get_features(component_type) condition = list(product([project], [weight], cpnt_list)) processes = [] pool = mp.Pool(processes=min(ps, len(condition))) -- GitLab