From d5b0c70b3b9388af2bf051da1b34bd11003628e8 Mon Sep 17 00:00:00 2001
From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr>
Date: Fri, 10 Jul 2020 10:14:48 +0200
Subject: [PATCH] src/find_interaction_cluster/community_finder.py: add
 multiple_stat_launcher function that is written in sf_and_communities.py file

---
 src/find_interaction_cluster/__main__.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/find_interaction_cluster/__main__.py b/src/find_interaction_cluster/__main__.py
index 1c25829b..184339c9 100644
--- a/src/find_interaction_cluster/__main__.py
+++ b/src/find_interaction_cluster/__main__.py
@@ -12,6 +12,7 @@ import lazyparser as lp
 from .config import ConfigGraph
 from typing import List
 from .install_hipMCL import install_hipmcl
+from .sf_and_communities import multiple_stat_launcher
 
 
 @lp.parse
@@ -37,8 +38,10 @@ def launcher(weight: List[int] = (1),
     """
     if not ConfigGraph.get_hipmcl_prog().is_file():
         install_hipmcl("INFO")
-    multiple_community_launcher(ps, weight, global_weight, same_gene, html_fig,
+    multiple_community_launcher(1, weight, global_weight, same_gene, html_fig,
                                 logging_level)
+    multiple_stat_launcher(ps, weight, global_weight, same_gene,
+                           logging_level)
 
 
 launcher()
\ No newline at end of file
-- 
GitLab