0
|
1 #!/usr/bin/perl
|
|
2
|
|
3 use strict;
|
|
4 use warnings;
|
|
5
|
|
6 my $num_args = $#ARGV + 1;
|
6
|
7 if ($num_args != 9) {
|
0
|
8 print "Il n'y a pas le bon nombre d'arguments !\n";
|
|
9 exit;
|
|
10 }
|
|
11
|
|
12 # INPUT_
|
|
13 my $matrix_file = $ARGV[0]; # fichier tabulé : une liste d'orthogroupes qui se retrouvent ou non dans les différentes souches
|
|
14 my $species_file = $ARGV[1]; # association de chaque souche à son espèce (fichier tabulé également)
|
|
15 my $annotation = $ARGV[2]; # collection de fichiers tabulés qui contiennent pour chaque gène la ou les catégories de COG associée(s)
|
|
16 my $order = $ARGV[3]; # cette entrée correspond simplement au nom des souches qui sont rentrées dans le même ordre que les fichiers d'annotation : cela permet de savoir pour un fichier COG à quelle souche et donc plus tard à quelle espèce il correspond
|
|
17 my $annotation_GFF = $ARGV[4]; # fichiers avec les GFF
|
6
|
18 # my $order_GFF = $ARGV[5];
|
0
|
19
|
|
20 # OUTPUT_
|
6
|
21 my $output = $ARGV[5]; # liste des espèces avec leurs orthogroupes (présence-absence)
|
|
22 my $output2 = $ARGV[6]; # fichier des moyennes
|
|
23 my $output3 = $ARGV[7]; # fichier de la liste des valeurs pour chaque catégorie de COG et pour chaque espèce
|
|
24 my $output4 = $ARGV[8]; # fichier avec les catégories de COG pour core-génome / génome accessoire / gènes spé
|
0
|
25
|
|
26
|
|
27 # print "ok\n";
|
|
28 # exit;
|
|
29
|
2
|
30 my @list_gff = split(',', $annotation_GFF); # liste des différents fichiers GFF (qui se retrouvent dans le dossier Annotation Maker)
|
0
|
31 my %hSpecies = (); # HASH -> key: N_Id (ex NF_AR12) ; val: nom de l'esp (ex Naegleria Fowleri)
|
|
32
|
|
33 ######################## LE SPECIES_FILE ###########################
|
|
34 open (S, $species_file);
|
|
35 while (my $line = <S>){
|
|
36
|
|
37 $line =~s/\n//g; $line =~s/\r//g;
|
|
38 my @sp = split('\t', $line);
|
|
39 # print "$line\n";
|
|
40 # exit;
|
2
|
41 $hSpecies{$sp[0]} = $sp[1]; # HASH -> key: N_Id ; val: name
|
0
|
42
|
|
43 }
|
|
44 my $nbr = keys (%hSpecies); #compter le nombre de souches max
|
|
45 # = taille de la table de hash
|
|
46 # print "J'ai $nbr clés\n";
|
|
47 # exit;
|
|
48
|
|
49 close (S);
|
|
50
|
|
51 #///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
52
|
|
53 ############################################ LA MATRICE ############################################
|
|
54
|
|
55 open(M, $matrix_file);
|
|
56
|
|
57 my $first_line = <M>;
|
|
58 $first_line =~s/\n//g; $first_line =~s/\r//g; # ne garder que la première ligne du tableau
|
|
59 my @samples = split(/\t/,$first_line); # mettre dans une liste (@samples) chaque intitulé de colonne = N_Id
|
|
60 # print "$first_line\n";
|
|
61 # exit;
|
|
62
|
|
63 # Le but ici est de récupérer les combinaisons associées à chaque espèce : NF, NG et NL
|
|
64 my %hCombination =(); # HASH -> key: N_Id ; val: combinaison
|
|
65
|
|
66 for (my $i=1; $i <= $#samples; $i++){ # on parcourt chaque colonne ($i) mais on ne regarde que le N_Id
|
|
67 my $header = $samples[$i]; # on récupère le N_Id dans $header (soit le nom de la colonne i)
|
|
68 my $species = $hSpecies{$header}; # on regarde dans la table avec N_Id => Nom esp et on attribue à chaque header (qui est ici une clé) sa valeur donc son nom d'esp correspondant
|
|
69 $hCombination{$species} .= "_".$i; # à chaque tour de boucle, pour une $species spé va ajouter le n° de colonne $i pour avoir la combinaison spé à chaque esp
|
|
70 # print "$header\n";
|
|
71 # exit;
|
|
72 }
|
|
73
|
|
74
|
|
75 # foreach my $species (keys (%hCombination)){
|
|
76 # my $combination = $hCombination{$species};
|
|
77 # # print "$species $combination\n";
|
|
78 # }
|
|
79
|
|
80
|
|
81 # exit;
|
|
82
|
|
83 # orthogrp présents :
|
|
84 my %hCombination_prs = (); # HASH -> key: combinaison ; val: liste des orthogroupes
|
|
85 # orthogrp absents :
|
|
86 my %hCombination_abs = (); # idem
|
|
87
|
|
88
|
|
89
|
|
90 my %coregenes = (); # HASH -> key: gene ; val: orthogroupe (pour core-genome)
|
|
91 my %specificgenes = (); # HASH -> key: gene ; val: orthogroupe (pour gènes spécifiques)
|
|
92 my %accessorygenes = (); # HASH -> key: gene ; val: orthogroupe (pour génome accessoire)
|
|
93
|
2
|
94 my $coregene_line;
|
|
95 my %coregenes2 = (); # HASH -> key1: colonne i ; key2: gène ; val: orthogroupe
|
12
|
96 my %specificgenes2 = (); # HASH -> key1: colonne i ; key2: gène ; val: orthogroupe
|
2
|
97
|
|
98 my %Genes_of_OG = (); # HASH -> key1: orthogroupe ; key2: colonne i ; val: gène
|
|
99
|
0
|
100
|
|
101 while(<M>) {
|
|
102
|
2
|
103 my $line = $_;
|
|
104 $line =~s/\n//g; $line =~s/\r//g;
|
0
|
105 my $nb_found = 0;
|
2
|
106 my @infos = split(/\t/,$line);
|
0
|
107 my $orthogroup = $infos[0]; # on récupère le nom de l'orthogroupe dans $orthogroup
|
|
108 my $first_column = $infos[1]; # ici on récupère les gènes de la première colonne qui vont nous servir pour le core-génome
|
|
109 my $combi_prs = "";
|
|
110 my $combi_abs = "";
|
|
111 my $val;
|
|
112 my $gene_random;
|
12
|
113 my $unique_col_detected;
|
0
|
114
|
2
|
115
|
0
|
116 for (my $i=1; $i <= $#infos; $i++){ # on travaille par ligne puis dans chaque ligne (while(<M>)), cellule par cellule (cette boucle for)
|
|
117
|
|
118 $val = $infos[$i]; # on récupère l'information contenue dans la case $i
|
|
119
|
|
120 if ($val =~/\w/){ # s'il cette cellule contient qq chose...
|
|
121 $combi_prs .= "_".$i; # ...on va concaténer notre chaine $combi_prs pour que cela forme une combinaison
|
|
122 $nb_found++; # on incrémente le compteur qui permet de savoir cb de fois notre orthogroupe est présent (le but sera de l'utiliser quand nb_found == 9)
|
|
123 $gene_random=$val; # on récupère la valeur de la case (les gènes)
|
12
|
124 $unique_col_detected = $i;
|
2
|
125
|
|
126 my @table_genes = split (',', $val);
|
|
127 my $premier_gene = $table_genes[0];
|
|
128 $Genes_of_OG{$i}{$orthogroup} = $premier_gene; # pour chaque orthorgoupe de chaque colonne, on récupère le premier gène
|
0
|
129 }
|
|
130
|
|
131 else { # si jamais il n'y a rien dans la cellule...
|
|
132 $combi_abs .= "_".$i; # ... on fait la même chose mais avec $combi_abs
|
|
133 }
|
|
134
|
|
135 }
|
|
136
|
|
137 # $hCount{$combi}++;
|
|
138 $hCombination_prs{$combi_prs}.=$orthogroup."\n"; # à la fin de chaque ligne, on va ajouter notre orthogroupe à la combinaison qui lui correspond
|
|
139 $hCombination_abs{$combi_abs}.=$orthogroup."\n";
|
|
140
|
|
141
|
|
142
|
|
143 if ($nb_found == $#infos){ # si nb_found = au nombre de souche, c'est qu'on a à faire à un core-génome
|
|
144 # print "$orthogroup\n";
|
|
145 # print "$nb_found\n=================\n";
|
2
|
146 for (my $i=1; $i <= $#infos; $i++){
|
|
147 my @list_of_genes = split (',', $infos[$i]); # ici va séparer tous les gènes (qui se présentent comme une liste, séparés par des ',')
|
|
148 my $first_gene = $list_of_genes[0]; # prend la valeur du premier gène uniquement !
|
|
149 $coregenes{$first_gene}= $orthogroup; # on va récupérer ce premier gène qu'on met dans un hash (pour y avoir accès facilement, d'où val = 1, ici ça n'a pas d'importance)
|
|
150 $coregenes2{$i}{$first_gene}= $orthogroup;
|
12
|
151
|
2
|
152 }
|
|
153 if (!$coregene_line){
|
|
154 $coregene_line = $line;
|
|
155 }
|
0
|
156 }
|
|
157 elsif ($nb_found == 1) { # si on a un gène spé
|
12
|
158
|
|
159 # print "$gene_random\n";
|
|
160 # print "$line\n";
|
|
161 # print "$unique_col_detected\n";
|
|
162
|
|
163
|
|
164
|
0
|
165 my @list_of_genes = split (',', $gene_random); # idem, on ne veut qu'un seul gène donc on crée la liste
|
|
166 my $first_gene = $list_of_genes[0]; # on ne prend que le premier
|
12
|
167 # print "$first_gene\n";
|
|
168 # exit;
|
0
|
169 $specificgenes{$first_gene}= $orthogroup; # et pareil on crée la table de hash
|
12
|
170 $specificgenes2{$unique_col_detected}{$first_gene}= $orthogroup;
|
0
|
171 }
|
|
172
|
|
173 else { # là c'est le génome accessoire, i.e tout le reste !
|
|
174 my @list_of_genes = split (',', $gene_random);
|
|
175 my $first_gene = $list_of_genes[0];
|
|
176 $accessorygenes{$first_gene}= $orthogroup;
|
|
177 }
|
|
178
|
|
179 }
|
2
|
180
|
|
181 my %hCol_Annotated = (); # HASH -> key: colonne ; val: 1 (colonnes pour lesquelles les GFF sont présents)
|
|
182
|
|
183 # Le but ici est de ne garder que les colonnes (donc les souches) qui ont un fichier GFF associé
|
|
184 my @list_column = split ('\t', $coregene_line);
|
|
185 for (my $i=1; $i <= $#list_column; $i++){
|
|
186 my @list_genes = split (', ', $list_column[$i]);
|
|
187 my $premier_gene = $list_genes[0];
|
|
188 my $strain = $samples[$i]; # récupérer le nom de la souche
|
|
189
|
|
190
|
|
191 foreach my $gff (@list_gff){
|
|
192 my $result_grep = `grep $premier_gene $gff`;
|
|
193
|
|
194 if ($result_grep){
|
|
195 $hCol_Annotated{$i}=$strain;
|
|
196
|
|
197 }
|
|
198 # print "$result_grep\n";
|
|
199 }
|
|
200 }
|
|
201 # exit;
|
12
|
202 # foreach my $i (sort keys (%specificgenes2)){ # parcours de la table %hCount2 au niveau des catégories
|
|
203 # foreach my $gene (keys %{$specificgenes2{$i} }){ # parcours de la table %hCount2 au niveau des espèces
|
|
204 # print "$i\t$gene\t".$specificgenes2{$i}{$gene}."\n";
|
2
|
205 # }
|
|
206 # }
|
12
|
207 # exit;
|
2
|
208 # while (my ($k,$v) = each(%strain_specie)) {
|
|
209 # print "i=$k strain=$v\n";
|
0
|
210 # }
|
|
211 # exit;
|
|
212 # foreach my $oups (keys (%coregenes)) {
|
|
213 # print "$oups\n";
|
|
214 # }
|
2
|
215 # exit;
|
0
|
216
|
|
217 close (M);
|
|
218
|
2
|
219 my %Hash_Specific = ();
|
|
220
|
0
|
221 open (OUT, '>', $output) or die $!;
|
|
222 print OUT "$annotation\n";
|
|
223 foreach my $species (keys (%hCombination)){ # parcours de la table de hash %hCombination (key: nom esp ; val: combi)
|
|
224 my $combination = $hCombination{$species}; # on récupère dans la variable $combination la valeur de chaque clé {species} (= nom esp) de la table de hash %hCombination
|
|
225 my $ortho_presents = $hCombination_prs{$combination}; # $ortho_presents prend la valeur de chaque clé {combination} (récupérée juste au-dessus) de la table de hash %hCombination
|
|
226 my $ortho_absents = $hCombination_abs{$combination}; # en somme on a 3 combi possibles (_1_2_3_4_5 | _6 | _7_8_9) donc pour ces 3 combi-là, qui sont les clés de %hCombination_prs ou_abs, on va retrouver la liste des orthogroupes qui correspondent
|
|
227
|
|
228 # open (OUT,">results.list.txt");
|
|
229
|
|
230 if ($ortho_presents){
|
|
231 print OUT "> $species - present\n";
|
|
232 print OUT "$ortho_presents\n";
|
2
|
233 my @orthogroups_name = split ('\n', $ortho_presents);
|
|
234 foreach my $ortho (@orthogroups_name){
|
|
235 $Hash_Specific{$ortho} = $species;
|
|
236 }
|
0
|
237 }
|
|
238
|
|
239 if ($ortho_absents){
|
|
240 # open (OUT2,">$species.$combination.absents.list.txt");
|
|
241 print OUT "> $species - absent\n";
|
|
242 print OUT "$ortho_absents\n";
|
|
243 }
|
|
244
|
|
245 # close(OUT2);
|
|
246 }
|
|
247
|
|
248 close(OUT);
|
|
249
|
|
250 #//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
251
|
|
252 ############################################### COG ###############################################
|
|
253
|
|
254 # STEP 1 : CORRESPONDANCE ENTRE LES DIFFERENTS FICHIERS DE COG ET L'ORDRE --------------------------------------------
|
|
255 my @files = split(',', $annotation); # liste des différents fichiers COG (qui se retrouvent dans le dossier Naegleria)
|
|
256 my @list = split(',', $order); # liste de l'ordre des souches
|
5
|
257 #my ($f,$l);
|
0
|
258
|
|
259 my %hCorrespondance = (); #HASH -> key: un fichier COG ; val: un nom de souche (ces 2 données sont entrées en input = $annotation et $order)
|
|
260
|
|
261 # ++++++++++++ parcours de 2 listes en même temps ++++++++++++ #
|
8
|
262 my $l = 1;
|
5
|
263 foreach my $f (@files){
|
|
264 $hCorrespondance{$f} = $list[$l]; # on fait correspondre pour chaque fichier de COG, un nom de souche
|
|
265 $l++;
|
0
|
266 }
|
|
267
|
|
268 # #Affichage du hash
|
5
|
269 # foreach my $f (keys %hCorrespondance){
|
0
|
270 # print $f."=>".$hCorrespondance{$f}."\n"
|
|
271 # }
|
5
|
272 # exit;
|
0
|
273
|
|
274 # STEP 2 : POUR CHAQUE FICHIER DE COG, FAIRE CORRESPONDRE L'ESPECE (ET NON LA SOUCHE) -------------------------------------
|
|
275 my %hCorresp_file_species = (); # HASH -> key: un fichier de COG ; val: une espèce
|
|
276 my %species_names; # HASH -> key: nom d'espèce ; val: 1
|
|
277
|
|
278 foreach my $h (keys (%hCorrespondance)){ # parcours de la table de hash {fichier COG => nom souche}
|
|
279 my $smpl = $hCorrespondance{$h}; # $smpl prend la valeur de la clé (donc d'un nom de souche)
|
|
280 my $espece = $hSpecies{$smpl}; # on regarde la correspondance entre ce $smpl et les nom qu'on a dans notre table de hash %hSpecies (fichier "species.txt") pour avoir le nom de l'espèce dans $espece
|
|
281 $species_names{$espece} = 1; # on garde sous le coude nos nom d'espèce dans cette nouvelle table de hash
|
|
282 $hCorresp_file_species{$h} = $espece; # BUT ATTEINT : on donne pour chaque fichier de COG le nom de l'espèce qui lui correspond
|
|
283 }
|
|
284 # while (my ($k,$v) = each(%hCorresp_file_species)) {
|
|
285 # print "file=$k sp=$v\n";
|
|
286 # }
|
|
287 # exit;
|
|
288
|
|
289 # STEP 3 : COMPTAGE DES CATEGORIES DE COG ------------------------------------------------------------------------------
|
|
290 my %hCount2 = (); # HASH -> key1: catégorie de COG ; key2: espèce associée ; val: comptage
|
|
291
|
|
292 # comptage du core-genome / des gènes spé / du génome accessoire
|
|
293 my %hCore_Count = (); # HASH -> key: catégorie de COG ; val: comptage (ce hash ne sera utilisé que pour le core-genome)
|
|
294 my %hSpecific_Count = (); # HASH -> key: catégorie de COG ; val: comptage
|
|
295 my %hAccessory_Count = (); # HASH -> key: catégorie de COG ; val: comptage
|
|
296
|
|
297 # hash pour récupérer le gène
|
|
298 my %hCore_Cat = (); # HASH -> key: catégorie de COG ; val: gène
|
|
299 my %hAccessory_Cat = (); # HASH -> key: catégorie de COG ; val: gène
|
|
300 my %hSpecific_Cat = (); # HASH -> key: catégorie de COG ; val: gène
|
|
301
|
|
302 # hash pour récupérer le gène
|
|
303 my %hCore_Cat_Esp = (); # HASH -> key1: catégorie de COG ; key2: espèce ; val: gène
|
|
304 my %hAccessory_Cat_Esp = (); # HASH -> key1: catégorie de COG ; key2: espèce ; val: gène
|
|
305 my %hSpecific_Cat_Esp = (); # HASH -> key1: catégorie de COG ; key2: espèce ; val: gène
|
|
306
|
2
|
307 my %Cog_of_gene = (); # HASH -> key: gène ; val: cat de COG
|
|
308 my %Specie_of_gene = (); # HASH -> key: gène ; val: souche
|
0
|
309
|
|
310 foreach my $file(@files){ # parcours de la liste des fichiers
|
|
311 my $esp = $hCorresp_file_species{$file}; # on récupère l'espèce pour chaque fichier de COG dans $esp
|
|
312 # print $esp."\n";
|
|
313 # exit;
|
|
314
|
|
315 my %hCount = (); # HASH -> key: catégorie de COG ; val: comptage
|
|
316
|
|
317
|
|
318 open (A, $file); # on va parcourir maintenant chaque fichier un à un
|
|
319
|
|
320 while (my $line2 = <A>){
|
|
321
|
|
322 $line2 =~s/\n//g; $line2 =~s/\r//g; # on procède ligne par ligne
|
|
323 my @Genes = split('\t', $line2);
|
|
324 my $gene = $Genes[0];
|
|
325 my $first_cat = $Genes[2];
|
|
326 $Cog_of_gene{$gene} = $first_cat;
|
|
327
|
|
328 for (my $j=2; $j <= $#Genes; $j++) {
|
|
329 my $cat = $Genes[$j]; # on récupère la ou les catégorie(s) de COG
|
|
330 $hCount{$cat}++; # pour la catégorie donnée, on incrémente son nb d'occurences
|
|
331
|
|
332 if ($coregenes{$gene}){ # si le $gene fait bien partie du core-genome (donc de notre table de hash %coregenes)
|
|
333 $hCore_Count{$cat}++; # on incrémente le hash
|
|
334 $hCore_Cat{$cat}=$gene; # on récupère le nom du gène
|
|
335 }
|
|
336 if ($accessorygenes{$gene}){ # s'il fait partie des gènes accessoires
|
|
337 $hAccessory_Count{$cat}++;
|
|
338 $hAccessory_Cat{$cat}=$gene;
|
|
339 }
|
|
340 if ($specificgenes{$gene}){ # s'il fait partie des gènes spécifiques
|
|
341 $hSpecific_Count{$cat}++;
|
|
342 $hSpecific_Cat{$cat}=$gene;
|
|
343 }
|
|
344 # $hCount2{$cat}{$esp}++; # TABLE DE HASH AVEC CLES=CAT DE COG + ESPECE VAL=COMPTAGE
|
|
345 }
|
|
346
|
|
347 }
|
|
348 close (A);
|
|
349
|
|
350 # print "$file $esp\n=============\n";
|
|
351 while (my ($k,$v) = each(%hCount)) { # parcours de la table de hash de comptage
|
|
352 # print "cat=$k nb=$v\n";
|
|
353 $hCount2{$k}{$esp}.= "$v,"; # pour un $k (= une catégorie de COG) on lui associe son espèce et on donne la valeur du comptage qui vient de %hCount
|
|
354 # le but ici est en fait pour une espèce et une catégorie données on veut le nombre d'occurences par souche (pour NF par ex on aura 5 valeurs car il y a 5 souches)
|
|
355 }
|
|
356
|
|
357 # Récupérer les gènes du core-génome
|
|
358 while (my ($cat_core,$gene_core) = each(%hCore_Cat)) {
|
|
359 $hCore_Cat_Esp{$cat_core}{$esp}=$gene_core;
|
|
360 }
|
|
361 # Récupérer les gènes du génome-accessoire
|
|
362 while (my ($cat_acc,$gene_acc) = each(%hAccessory_Cat)) {
|
|
363 $hAccessory_Cat_Esp{$cat_acc}{$esp}=$gene_acc;
|
|
364 }
|
|
365 # Récupérer les gènes spécifique
|
|
366 while (my ($cat_spe,$gene_spe) = each(%hSpecific_Cat)) {
|
|
367 $hSpecific_Cat_Esp{$cat_spe}{$esp}=$gene_spe;
|
|
368 }
|
|
369
|
|
370 }
|
|
371 # foreach my $category (sort keys (%hSpecific_Cat_Esp)) { # parcours au niveau de la 1ere clé
|
|
372
|
|
373 # foreach my $especeee (keys %{$hSpecific_Cat_Esp{$category} }) { # parcours au niveau de la 2e clé pour la $category donnée
|
|
374
|
|
375 # print "$category\t$especeee\t$hSpecific_Cat_Esp{$category}{$especeee}\n"; # on crée une sortie qui affiche en somme notre hash %hCount2
|
|
376 # }
|
|
377 # }
|
|
378 # exit;
|
|
379
|
|
380 # STEP 4 : AFFICHAGE DANS LE FICHIER DE SORTIE ------------------------------------------------------------------------------
|
|
381 open (OUT4, ">$output4") or die $!;
|
|
382
|
|
383 print OUT4 "Species"."\t"."COG categories"."\t"."Core-genome"."\t"."Accessory genome"."\t"."Specific genes"."\n";
|
|
384
|
|
385 foreach my $category (sort keys (%hCount2)){ # parcours de la table %hCount2 au niveau des catégories
|
|
386 foreach my $especeee (keys %{$hCount2{$category} }){ # parcours de la table %hCount2 au niveau des espèces
|
|
387 print OUT4 "$especeee\t$category\t"; # affichage des esp puis des cat
|
|
388
|
|
389 # if ($hCore_Cat_Esp{$category}{$especeee}) {
|
|
390 # print OUT4 "$hCore_Cat_Esp{$category}{$especeee}\t";
|
|
391 # }
|
|
392 my $c = 0;
|
|
393 if ($hCore_Count{$category}){ # si cette catégorie existe dans le core-génome
|
|
394 $c = ($hCore_Count{$category}/scalar keys (%coregenes))*100; # calcul du % du comptage
|
|
395 }
|
|
396 print OUT4 "$c\t"; # affichage du %
|
|
397
|
|
398 # if ($hAccessory_Cat_Esp{$category}{$especeee}) {
|
|
399 # print OUT4 "$hAccessory_Cat_Esp{$category}{$especeee}\t";
|
|
400 # }
|
|
401 my $acc = 0;
|
|
402 if ($hAccessory_Count{$category}){ # si cette catégorie existe dans le génome accessoire
|
|
403 $acc = ($hAccessory_Count{$category}/scalar keys (%accessorygenes))*100; # calcul du % du comptage
|
|
404 }
|
|
405 print OUT4 "$acc\t"; # affichage du %
|
|
406
|
|
407 # if ($hSpecific_Cat_Esp{$category}{$especeee}) {
|
|
408 # print OUT4 "$hSpecific_Cat_Esp{$category}{$especeee}\t";
|
|
409 # }
|
|
410 my $s = 0;
|
|
411 if ($hSpecific_Count{$category}){ # si cette catégorie existe dans les gènes spécifiques
|
|
412 $s = ($hSpecific_Count{$category}/scalar keys (%specificgenes))*100; # calcul du % du comptage
|
|
413 }
|
|
414 print OUT4 "$s\n"; # affichage du %
|
|
415 }
|
|
416 }
|
|
417 close (OUT4);
|
|
418
|
|
419 open (OUT3, ">$output3") or die $!;
|
|
420 foreach my $category (sort keys (%hCount2)) { # parcours au niveau de la 1ere clé
|
|
421
|
|
422 foreach my $especeee (keys %{$hCount2{$category} }) { # parcours au niveau de la 2e clé pour la $category donnée
|
|
423
|
|
424 print OUT3 "$category\t$especeee\t$hCount2{$category}{$especeee}\n"; # on crée une sortie qui affiche en somme notre hash %hCount2
|
|
425 }
|
|
426 }
|
|
427
|
|
428 close (OUT3);
|
|
429
|
|
430
|
|
431 open (OUT2, ">$output2") or die $!;
|
|
432
|
|
433 print OUT2 "category";
|
|
434 foreach my $e (sort keys (%species_names)){ # on parcours le hash d'espèces...
|
|
435 print OUT2 "\t".$e; #... où on récupère le nom de celles-ci
|
|
436 }
|
|
437 print OUT2 "\n";
|
|
438
|
|
439 foreach my $category (sort keys (%hCount2)) { # on parcourt de nouveau les catégories de notre hash à 2 clés
|
|
440 print OUT2 $category;
|
|
441
|
|
442 foreach my $especes (sort keys (%species_names)) { # on parcourt également le hash d'espèces
|
|
443
|
|
444 my $nbr = 0;
|
|
445 if ($hCount2{$category}{$especes}) { # si pour une catégorie et une espèce données, on a un nombre : $nbr prend la valeur de ce dernier
|
|
446 $nbr = $hCount2{$category}{$especes};
|
|
447 }
|
|
448 # $nbr =~s/\n//g; $nbr =~s/\r//g;
|
|
449
|
|
450
|
|
451 my @liste = split(',', $nbr); # vu qu'il peut y avoir plusieurs nombres on les dissocie
|
|
452
|
|
453 my $somme=0;
|
|
454 my $n=0;
|
|
455 my $moyenne=0;
|
|
456 #print "\nma liste de $nbr: ".join("%",@liste)."\n";
|
|
457 foreach my $x (@liste) { # on parcourt nos nombres
|
|
458 $somme=$somme+$x;
|
|
459 $n=$n+1;
|
|
460 }
|
|
461
|
|
462 if ($n>0){
|
|
463 $moyenne = $somme/$n; # on fait le calcul de la moyenne
|
|
464 }
|
|
465 # print "$category, $especes: $hCount2{$category}{$especes}\t";
|
|
466 # print "moyenne = $moyenne\n=============\n";
|
|
467
|
|
468 print OUT2 "\t".$moyenne; # fichier de sortie
|
|
469 }
|
|
470 print OUT2 "\n";
|
|
471 }
|
|
472
|
|
473 close (OUT2);
|
|
474
|
|
475 # foreach my $cat (keys (%hCore_Cat)){
|
|
476 # print OUT4 $c_gene."\t";
|
|
477 # }
|
|
478
|
|
479
|
|
480 #//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
481
|
|
482 ############################################### GFF ###############################################
|
|
483
|
2
|
484
|
6
|
485 # my @order_gff = split(',', $order_GFF); # liste de l'ordre des souches
|
0
|
486 my ($g,$o);
|
|
487
|
|
488 my %hgff_order = (); #HASH -> key: un fichier GFF ; val: un nom de souche (ces 2 données sont entrées en input = $annotation_GFF et $order_GFF)
|
|
489 my %Gene_position = ();
|
|
490 my %Cat_genes = ();
|
12
|
491 my %Cat_genes2 = ();
|
0
|
492
|
2
|
493 my %hash_of_genes = ();
|
0
|
494
|
6
|
495
|
0
|
496 foreach $g (@list_gff){
|
2
|
497 # print "$g\n";
|
6
|
498 # $hgff_order{$g} = $order_gff[$o++]; # on fait correspondre pour chaque fichier GFF, un nom de souche
|
0
|
499 open (G, $g);
|
|
500 while (<G>) {
|
|
501 my @table_gff = split (/\t/, $_);
|
|
502 my $chr = $table_gff[0];
|
|
503 my $start = $table_gff[3];
|
|
504 my $end = $table_gff[4];
|
|
505 my $gene_name = $table_gff[8];
|
|
506 my $type = $table_gff[2];
|
|
507
|
|
508
|
12
|
509 #or $type eq "CDS"
|
|
510 if ($type && $type eq "mRNA" && $gene_name =~ /ID=([^;]+);/){
|
0
|
511 my $gene = $1;
|
|
512 # print $gene."\n";
|
|
513 # exit;
|
2
|
514 $hash_of_genes{$gene}=1;
|
|
515
|
0
|
516 foreach my $cog (keys (%hCore_Cat)){
|
|
517 if ($hCore_Cat{$cog} eq $gene){
|
|
518 $Cat_genes{$gene}=$cog;
|
|
519 }
|
|
520 }
|
12
|
521 foreach my $cog_bis (keys (%hSpecific_Cat)){
|
|
522 if ($hSpecific_Cat{$cog_bis} eq $gene){
|
|
523 $Cat_genes2{$gene}=$cog_bis;
|
|
524 }
|
|
525 }
|
|
526
|
0
|
527 $Gene_position{$gene}="$chr\t$start\t$end";
|
|
528 }
|
|
529
|
2
|
530 # foreach my $gene (keys (%hash_of_genes)){
|
|
531 # my $orthogrp = $hGene_OG{$gene};
|
|
532 # print "$orthogrp\n";
|
|
533 # }
|
0
|
534 }
|
|
535
|
|
536 close (G);
|
|
537 }
|
|
538
|
4
|
539 my %Hash_Convert = ( "A"=>1, "B"=>2, "C"=>3, "D"=>4, "E"=>5, "F"=>6, "G"=>7, "H"=>8, "I"=>9, "J"=>10, "K"=>11, "L"=>12, "M"=>13, "N"=>14, "O"=>15, "P"=>16, "Q"=>17, "R"=>18,"S"=>19, "T"=>20, "U"=>21, "V"=>22, "W"=>23, "X"=>24, "Y"=>25, "Z"=>26, "unknown"=>27);
|
|
540
|
2
|
541 mkdir("Core");
|
|
542 foreach my $i (keys (%coregenes2)){
|
0
|
543
|
2
|
544 if (!$hCol_Annotated{$i}) { # si le fichier GFF n'existe pas
|
|
545 next;
|
|
546 }
|
|
547
|
|
548
|
|
549 my $strain_name = $hCol_Annotated{$i};
|
|
550
|
|
551 my $specie_name = $hSpecies{$strain_name};
|
0
|
552
|
|
553
|
|
554
|
2
|
555 open (OUT5, "> Core/$strain_name.$specie_name.txt") or die "Cannot create file $!\n";
|
8
|
556 print OUT5 "Orthogroup\tGene\tChromosome\tStart\tEnd\tCOG categories\tNumber assigned\n";
|
0
|
557
|
2
|
558 my $refcoregenes2 = $coregenes2{$i};
|
|
559 my %subhash = %$refcoregenes2;
|
|
560 foreach my $gene (keys (%subhash)){
|
|
561 # print "$gene\n";
|
|
562 my $cat = "unknown";
|
|
563 if ($Cog_of_gene{$gene}){
|
|
564 $cat = $Cog_of_gene{$gene};
|
|
565 }
|
|
566 # if (!$Gene_position{$gene}){
|
|
567 # print "$gene\n coucou"; exit;
|
|
568 # }
|
|
569
|
|
570 # if (!$subhash{$gene}){
|
|
571 # print "$gene\n";
|
|
572 # }
|
4
|
573 print OUT5 $subhash{$gene}."\t"."$gene\t".$Gene_position{$gene}."\t".$cat."\t".$Hash_Convert{$cat}."\n";
|
2
|
574
|
|
575 }
|
|
576
|
|
577 close (OUT5);
|
0
|
578 }
|
|
579
|
12
|
580 mkdir("StrainSpecific");
|
|
581 foreach my $i (keys (%specificgenes2)){
|
|
582
|
|
583 if (!$hCol_Annotated{$i}) { # si le fichier GFF n'existe pas
|
|
584 next;
|
|
585 }
|
|
586
|
|
587
|
|
588 my $strain_name = $hCol_Annotated{$i};
|
|
589
|
|
590 my $specie_name = $hSpecies{$strain_name};
|
|
591
|
|
592
|
|
593
|
|
594 open (OUT7, "> StrainSpecific/$strain_name.$specie_name.txt") or die "Cannot create file $!\n";
|
|
595 print OUT7 "Orthogroup\tGene\tChromosome\tStart\tEnd\tCOG categories\tNumber assigned\n";
|
|
596
|
|
597 my $refspecificgenes2 = $specificgenes2{$i};
|
|
598 my %subhash = %$refspecificgenes2;
|
|
599 foreach my $gene (keys (%subhash)){
|
|
600 # print "$gene\n"; exit;
|
|
601 my $cat = "unknown";
|
|
602 if ($Cog_of_gene{$gene}){
|
|
603 $cat = $Cog_of_gene{$gene};
|
|
604 }
|
|
605 # if (!$Gene_position{$gene}){
|
|
606 # print "$gene\n coucou"; exit;
|
|
607 # }
|
|
608
|
|
609 # if (!$subhash{$gene}){
|
|
610 # print "$gene\n";
|
|
611 # }
|
|
612 print OUT7 $subhash{$gene}."\t"."$gene\t".$Gene_position{$gene}."\t".$cat."\t".$Hash_Convert{$cat}."\n";
|
|
613
|
|
614 }
|
|
615
|
|
616 close (OUT7);
|
|
617 }
|
|
618
|
2
|
619
|
|
620 mkdir("GroupSpecific");
|
|
621 foreach my $i (keys (%Genes_of_OG)){
|
|
622 if (!$hCol_Annotated{$i}) { # si le fichier GFF n'existe pas
|
|
623 next;
|
|
624 }
|
|
625
|
|
626 my $strain_name = $hCol_Annotated{$i};
|
|
627
|
|
628 my $specie_name = $hSpecies{$strain_name};
|
|
629
|
|
630 open (OUT6, "> GroupSpecific/$strain_name.$specie_name.txt") or die "Cannot create file $!\n";
|
8
|
631 print OUT6 "Orthogroup\tGene\tChromosome\tStart\tEnd\tCOG categories\tNumber assigned\n";
|
2
|
632
|
|
633 my $refGenes_of_OG = $Genes_of_OG{$i};
|
|
634 my %subhash = %$refGenes_of_OG;
|
|
635
|
|
636 foreach my $orthogroup (keys (%subhash)){
|
|
637 if ($Hash_Specific{$orthogroup} && $Hash_Specific{$orthogroup} eq $specie_name){
|
|
638 my $gene = $subhash{$orthogroup};
|
|
639
|
|
640 my $cat = "unknown";
|
|
641 if ($Cog_of_gene{$gene}){
|
|
642 $cat = $Cog_of_gene{$gene};
|
|
643 }
|
4
|
644 print OUT6 $orthogroup."\t".$subhash{$orthogroup}."\t".$Gene_position{$gene}."\t".$cat."\t".$Hash_Convert{$cat}."\n";
|
2
|
645 }
|
|
646
|
|
647 }
|
|
648 close (OUT6);
|
|
649 }
|