diff --git a/src/find_interaction_cluster/config.py b/src/find_interaction_cluster/config.py
index dcac9bb65830427ac9aea99828e371a6c7dce816..e5d2f7768e64a375e85346570f9d465a6979ef01 100644
--- a/src/find_interaction_cluster/config.py
+++ b/src/find_interaction_cluster/config.py
@@ -24,7 +24,7 @@ def get_community_file(project: str, weight: int, global_weight: int,
     same gene
     :return: The filename of interest
     """
-    folder = ConfigGraph.output_folder
+    folder = ConfigGraph.community_folder
     folder.mkdir(exist_ok=True, parents=True)
     if is_fig:
         ext = '.html'
@@ -40,7 +40,9 @@ class ConfigGraph:
     Class containing all the variables that will be used in this submodule
     """
     data = Config.data
+    cpu = Config.cpu
     db_file = Config.db_file
     results = Config.results
     output_folder = results / 'community_of_co-localized-exons'
+    community_folder = output_folder / 'communities'
     get_community_file = get_community_file