diff --git a/src/find_interaction_cluster/__main__.py b/src/find_interaction_cluster/__main__.py
index 71a3bcc3bec01abe717ee3219cf54c9199f32a99..78d1afaf90b0e1851104c4b2c79ea0ba5d6a9573 100644
--- a/src/find_interaction_cluster/__main__.py
+++ b/src/find_interaction_cluster/__main__.py
@@ -23,7 +23,7 @@ def launcher(weight: List[int] = (1),
              global_weight: List[int] = (0),
              same_gene: bool = True,
              ps: int = ConfigGraph.cpu,
-             html_fig: bool = False, feature: str = 'exon',
+             html_fig: bool = False, feature: str = 'exon', region: str = '',
              logging_level: str = "DISABLE"):
     """
     Script used to find communities inside  exon co-localized within a project
@@ -38,6 +38,8 @@ def launcher(weight: List[int] = (1),
     same gene (True) or not (False) (default True)
     :param  html_fig: True to display the html figure (default False).
     :param feature: The feature we want to analyse (default 'exon')
+    :param region: The region of a gene to analyse (used only if feature \
+    is 'gene') (default '').
     :param logging_level: The level of data to display (default 'DISABLE')
     """
     logging_def(ConfigGraph.community_folder, __file__, logging_level)
@@ -49,9 +51,10 @@ def launcher(weight: List[int] = (1),
         install_hipmcl("INFO")
     multiple_community_launcher(1, weight, global_weight, same_gene, html_fig,
                                 feature, logging_level)
-    # multiple_stat_launcher(ps, weight, global_weight, same_gene, feature,
-    #                        logging_level)
+    multiple_stat_launcher(ps, weight, global_weight, same_gene, feature,
+                           logging_level)
     multiple_nt_lmm_launcher(ps, weight, global_weight, same_gene, feature,
+                             region,
                              logging_level)