diff --git a/src/find_interaction_cluster/__main__.py b/src/find_interaction_cluster/__main__.py
index 1c25829babec0028465a9338865c418fdbdcfcbc..184339c9e9295cc462b8808c7e714b6be5726731 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