diff --git a/Visualisation_des_donnes_de_mapping.py b/Visualisation_des_donnes_de_mapping.py
index 60f2e77a9bab508c54a3e105cf76e25f086184aa..260585f14d8c410e4f24a34b21b09f2efb3fd5f5 100644
--- a/Visualisation_des_donnes_de_mapping.py
+++ b/Visualisation_des_donnes_de_mapping.py
@@ -45,8 +45,6 @@ def Distance_matrix_clustering (input_file,val_infini=50.2, n_clusters=5):
                 else:
                     matrice_pour_traitement[indice_ligne-ajustement_ligne][indice_colonne-ajustement_colonne]=data_tab[indice_ligne][indice_colonne]
 
-
-
 ##### Traitement de la matrice de distance
     nombre_de_clusters=n_clusters
     clustering = AgglomerativeClustering(n_clusters = nombre_de_clusters,  metric = "precomputed",linkage="complete").fit(matrice_pour_traitement)
@@ -67,16 +65,11 @@ def Distance_matrix_clustering (input_file,val_infini=50.2, n_clusters=5):
         Liste_de_nom_trier_selon_cluster.append(Liste_nieme_cluster)
         Liste_d_indice_trier_selon_cluster.append(Liste_nieme_indice_cluster)
 
-
-
 ###### visualisation
-
-    l_identifiants_de_graphes=[111,111,111,111,111,111,111,111,111,111,111,111,111,111]
-
     plt.figure(figsize=(15, 3))
     for num_graph in range (nombre_de_clusters):
         donnes_graph=[]
-        indentifiant_graphe=l_identifiants_de_graphes[num_graph]
+        indentifiant_graphe=111
         for sous_indice in range(len(Liste_de_nom_trier_selon_cluster[num_graph])):
             donnes_graph.append(matrice_pour_traitement[Liste_d_indice_trier_selon_cluster[num_graph][0]][Liste_d_indice_trier_selon_cluster[num_graph][sous_indice]])
             print(matrice_pour_traitement[Liste_d_indice_trier_selon_cluster[num_graph][0]][Liste_d_indice_trier_selon_cluster[num_graph][sous_indice]])
@@ -86,15 +79,12 @@ def Distance_matrix_clustering (input_file,val_infini=50.2, n_clusters=5):
     plt.suptitle('les differents clusters n='+str(n_clusters))
     plt.show()
 
-#Distance_matrix_clustering("C:\\Users\\mumec\\Desktop\\Mini_codes\\DistanceMatrix_compose_interet.xlsx")
 
 
 
 def visualisation_recouvrement (File, titre_du_graphique="Recouvrement moyen des différents pathways obtenues du mapping de ",numero_de_la_colonne_a_grapher=2,num_colonne_label=0):
     dataframe= pd.read_excel(File)
     colnames = list(dataframe.columns)
-
-# create figure and axes
     fig, ax1 = plt.subplots(nrows=1, ncols=1, figsize=(40, 5), sharex=False, sharey=False)
 
     p1 = sns.barplot(x=colnames[num_colonne_label], y=colnames[numero_de_la_colonne_a_grapher], data=dataframe, palette='Spectral', ax=ax1)
@@ -103,8 +93,6 @@ def visualisation_recouvrement (File, titre_du_graphique="Recouvrement moyen des
     p1.tick_params(axis='x', rotation=90, size=0.05,labelsize = 6) #rotation des ticklabels
     plt.show()
 
-#visualisation_recouvrement ("C:\\Users\\mumec\\Desktop\\Mini_codes\\resultats_recouvrement_Ltest_V0_Ramp.xlsx",titre_du_graphique="Recouvrement moyen des différentes voies métaboliques de la liste constructeurs sur KEGG")
-
 
 def color_pie(Data, Labels, Colors,Explode=None,fsize=(10,10)):
     plt.figure(figsize = fsize)
@@ -115,27 +103,17 @@ def color_pie(Data, Labels, Colors,Explode=None,fsize=(10,10)):
         autopct = lambda x: str(round(x, 1)) + '%')
     plt.legend(loc=1, fontsize=10)
     plt.show()
-"""
-x = [2608,363,49613,1301]
-y=["Reactome","KEGG","HMDB","Wikipathways"]
-exp=[0.02, 0.04,0.04, 0.04]
-co=["darkorange","firebrick","wheat","steelblue"]
-
-color_pie(x, y, co,Explode=exp,fsize=(10,10))
-"""
 
 def visualisation_frequences_metabolites (File, titre_du_graphique="fréquence des métabolites d'intérêts du mapping de ",numero_de_la_colonne_a_grapher=1, num_colonne_label=0):
     dataframe= pd.read_excel(File)
     colnames = list(dataframe.columns)
 
-# create figure and axes
     p1 = sns.barplot(x=colnames[num_colonne_label], y=colnames[numero_de_la_colonne_a_grapher], data=dataframe, palette='Spectral')
     p1.set(title=titre_du_graphique)
     p1.bar_label(p1.containers[0], fontsize=6, fmt='%.f') # add annotation
     p1.tick_params(axis='x', rotation=90, size=0.05,labelsize = 5) #rotation des ticklabels
     plt.show()
 
-#visualisation_frequences_metabolites ("C:\\Users\\mumec\\Desktop\\Mini_codes\\frequence_metabolites__R22_L100.xlsx", titre_du_graphique="fréquence des métabolites d'intérêts du mapping de Recon 2.2",numero_de_la_colonne_a_grapher=1, num_colonne_label=0)
 
 
 def boite_a_metabolites (File, titre_du_graphique="boîte à moustache",numero_de_la_colonne_a_grapher=1):
@@ -148,8 +126,6 @@ def boite_a_metabolites (File, titre_du_graphique="boîte à moustache",numero_d
     B1.set(title=titre_du_graphique)
     plt.show()
 
-#boite_a_metabolites ("C:\\Users\\mumec\\Desktop\\Mini_codes\\f_met_L100_HC.xlsx", titre_du_graphique="Fréquence des métabolites d'intérêts du mapping de la liste des 100 sur HumanCyc ",numero_de_la_colonne_a_grapher=1)
-