-
Notifications
You must be signed in to change notification settings - Fork 45
/
METABOLIC-C.pl
2420 lines (2177 loc) · 78.7 KB
/
METABOLIC-C.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env perl
###########################
# METABOLIC-C.pl
# METABOLIC => METabolic And BiogeOchemistry anaLyses In miCrobes
# This software gives a metabolic and biogeochemical function trait profile to given genome datasets
# [either metagenome-assembled genomes (MAGs), single-cell amplified genomes (SAGs) or pure culture sequenced genomes].
# It also integrates the genome coverage to make element cycling pathways.
# METABOLIC-C.pl is specifically for users who have metagenomic reads and want to include them in the community analysis.
# Written by Zhichao Zhou, zczhou2017@gmail.com
# July, 2019
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###########################
use 5.010;
use strict;
use warnings;
##modules
use Data::Dumper;
use POSIX qw(strftime);
use Getopt::Long;
use Statistics::Descriptive;
use Parallel::ForkManager;
use File::Spec;
use File::Basename;
=head1 DESCRIPTION
Takes a folder containing genome files to generate a profile of their metablic and biogeochemical functions
=head1 USAGE
perl METABOLIC-C.pl -t 40 -m-cutoff 0.75 -in Genome_proteins -kofam-db full -r omic_reads_parameters.txt -o METABOLIC_out
(When you also want to calculate genome coverages, you would have to add genome files with the same basename and the extention as ".fasta" in this folder)
perl METABOLIC-C.pl -t 40 -m-cutoff 0.75 -in-gn Genome_files -kofam-db full -r omic_reads_parameters.txt -o METABOLIC_out
perl METABOLIC-G.pl -test true
(use the 5 genomes to test the METABOLIC-C script)
perl METABOLIC-G.pl -test true -tax order
(to calculate MW-score contribution of microbial groups at the resolution of the "order" level)
perl METABOLIC-C.pl -t 40 -m-cutoff 0.75 -in-gn Genome_files -kofam-db full -r omic_reads_parameters.txt -st nanopore -o METABOLIC_out
(to use long reads generated by Oxford Nanopore sequencing)
=head1 OPTIONS
-t or -cpu [integer] The cpu numbers to run the hmmsearch (default: 20)
-m-cutoff or -module-cutoff [float] The cutoff value to assign the presence of a specific KEGG module (KEGG module step present numbers / KEGG module step total number) (default: 0.75)
-in [string] The folder pf given genome faa files [should also give the genome fasta files and genone gene files if the (meta)genome/(meta)transciptome datasets are included]
-in-gn [string] The folder of given genome fasta files (Prodigal will be used to annotate your genomes)
-kofam-db [string] To use the "small" size or "full" size of KOfam database in METABOLIC (default: 'full')
-p or -prodigal-method [string] "meta" or "single" for prodigal to annotate the orf
-r or -omic-reads [string] The file which indicates the address of omic reads
-rt or -reads-type [string] To use "metaG" or "metaT" to indicate whether you use the metagenomic reads or metatranscriptomic reads (default: 'metaG')
-st or -sequencing-type [string] To use "illumina" (for Illumina short reads), or "pacbio" (for PacBio CLR reads), or "pacbio_hifi" (for PacBio HiFi/CCS genomic reads (v2.19 or later)), or "pacbio_asm20" (for PacBio HiFi/CCS genomic reads (v2.18 or earlier)), or "nanopore" (for Oxford Nanopore reads) to indicate the sequencing type of metagenomes or metatranscriptomes (default: 'illumina'; Note that all "illumina", "pacbio", "pacbio_hifi", "pacbio_asm20", and "nanopore" should be provided as lowercase letters and the underscore "_" should not be typed as "-" or any other marks)
-tax or -taxonomy [string] To calculate MW-score contribution of microbial groups at the resolution of which taxonomical level (default: "phylum"; other options: "class", "order", "family", "genus", "species", and "bin" (MAG itself))
-o or -output [string] The METABOLIC output folder (default: current address)
-test [string] The option to test the performance of METABOLIC-G by 5 genomes; "true" or "false" to run the test option. The test option will use 5 CPUs to run the command.
=head1 INSTRUCTIONS
GitHub: https://github.com/AnantharamanLab/METABOLIC
=head1 OUTPUT
Prodigal-annotated protein and gene files will be given in the input folder.
The METABOLIC result table will be generated.
Biogeochemical pathway diagrams will be generated.
=head1 COPYRIGHT
Zhichao Zhou, zczhou2017@gmail.com
Patricia Tran, ptran5@wisc.edu
Karthik Anantharaman, karthik@bact.wisc.edu
Anantharaman Microbiome Laboratory
Department of Bacteriology, University of Wisconsin, Madison
=cut
# Intake the address of METABOLIC directory:
my $METABOLIC_dir = dirname(File::Spec->rel2abs(__FILE__));
# The options
# Option variables with default value
my $cpu_numbers = 20; # Parallel running cpu numbers
my $module_cutoff = 0.75; # The cutoff value to assign the existence of a module
my $input_protein_folder; # Input microbial genome protein files
my $input_genome_folder; # Input microbial genome fasta files
my $omic_reads_parameters; # The address of omic reads
my $prodigal_method = "meta"; # The prodigal method to annotate orfs
my $kofam_db_size = "full"; # The full kofam size
my $omic_reads_type = "metaG"; # Metagenomic reads
my $sequencing_type = "illumina"; # The sequencing type of input omics reads
my $output = `pwd`; # The output folder
my $taxonomy = "phylum"; # The taxonomy level to calculate MW-score table
my $version="METABOLIC-C.pl v4.0";
my $test = "false";
GetOptions(
'cpu|t=i' => \$cpu_numbers,
'module-cutoff|m-cutoff=f' => \$module_cutoff,
'in=s' => \$input_protein_folder,
'in-gn=s' => \$input_genome_folder,
'prodigal-method|p=s' => \$prodigal_method,
'omic-reads|r=s' => \$omic_reads_parameters,
'reads-type|rt=s' => \$omic_reads_type,
'sequencing-type|st=s' => \$sequencing_type,
'kofam-db=s' => \$kofam_db_size,
'taxonomy|tax=s' => \$taxonomy,
'output|o=s' => \$output,
'help|h' => sub{system('perldoc', $0); exit;},
'v|version'=>sub{print $version."\n"; exit;},
'test=s' => \$test
) or die("Getting options from the command line failed, please check your options");
## Pre-required files and documents
# METABOLIC hmm database files
my $METABOLIC_hmm_db_address = "$METABOLIC_dir/METABOLIC_hmm_db";
# KofamKOALA hmm database files
# Link: ftp://ftp.genome.jp/pub/db/kofam/
my $kofam_db_address = "$METABOLIC_dir/kofam_database/profiles";
my $kofam_db_KO_list = "$METABOLIC_dir/kofam_database/ko_list";
# Input hmm information table as a template
my $hmm_table_temp = "$METABOLIC_dir/METABOLIC_template_and_database/hmm_table_template.txt";
my $hmm_table_temp_2 = "$METABOLIC_dir/METABOLIC_template_and_database/hmm_table_template_2.txt";
# The KEGG module information
my $ko_module_table = "$METABOLIC_dir/METABOLIC_template_and_database/ko00002.keg";
# The KEGG module step db
my $ko_module_step_db = "$METABOLIC_dir/METABOLIC_template_and_database/kegg_module_step_db.txt";
# The pathway information to draw element cycling diagrams and metabolic handoff
my $R_pathways = "$METABOLIC_dir/METABOLIC_template_and_database/R_pathways.txt";
my $R_mh_01 = "$METABOLIC_dir/METABOLIC_template_and_database/Sequential_transformations_01.txt";
my $R_mh_02 = "$METABOLIC_dir/METABOLIC_template_and_database/Sequential_transformations_02.txt";
my $R_mh_tsv = "$METABOLIC_dir/METABOLIC_template_and_database/Sequential-transformations.tsv";
my $R_order_of_input_01 = "$METABOLIC_dir/METABOLIC_template_and_database/order_of_input_01.txt";
my $R_order_of_input_02 = "$METABOLIC_dir/METABOLIC_template_and_database/order_of_input_02.txt";
my $CAZy_map_address = "$METABOLIC_dir/METABOLIC_template_and_database/CAZy_map.txt";
# The MW-score reaction table template
my $MW_score_reaction_table = "$METABOLIC_dir/METABOLIC_template_and_database/MW-score_reaction_table.txt";
# The motif files to validate specific protein hits
my $motif_file = "$METABOLIC_dir/METABOLIC_template_and_database/motif.txt";
my $motif_pair_file = "$METABOLIC_dir/METABOLIC_template_and_database/motif.pair.txt";
# The test option:
if ($test eq "true"){
$input_genome_folder = "$METABOLIC_dir/METABOLIC_test_files/Guaymas_Basin_genome_files";
$output = "METABOLIC_out";
$cpu_numbers = "5";
$omic_reads_parameters = "$METABOLIC_dir/METABOLIC_test_files/Reads_address.txt";
}
# To make sure the input taxonomy is right
my %Tax2code = (); # Store the corresponding map of user-defined taxonomy to taxonomy level code
%Tax2code = ('phylum'=> '0', 'class'=> '1', 'order'=> '2', 'family'=> '3', 'genus'=> '4', 'species'=> '5', 'bin' => '6');
if (!exists $Tax2code{$taxonomy}){
die "Your input taxonomy is wrong, please check your spelling. It should be one of these taxonomies: phylum, class, order, family, genus, species or bin (MAG itself)\n";
}
# To make sure the input sequencing type should one of the five following values
if ($sequencing_type ne "illumina" and $sequencing_type ne "pacbio" and $sequencing_type ne "pacbio_asm20" and $sequencing_type ne "pacbio_hifi" and $sequencing_type ne "nanopore"){
die "Your input sequencing type is wrong, please check your spelling. It should be one of these: illumina, pacbio, pacbio_asm20, pacbio_hifi, nanopore\n";
}
## Main Body
# The present time
`mkdir $output`;
my $datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
my $starttime = $datestring; my $starttime_raw = time;
# Store the stdout and stderr into log
open STDOUT, "| tee -ai $output/METABOLIC_log.log";
open STDERR, "| tee -ai $output/METABOLIC_log.log";
# Store the hmm table template
my %Hmm_table_temp = (); # line no. => each line
my @Hmm_table_head = (); # The head of the hmm table template
my %METABOLIC_hmm2threshold = (); #hmm file id => threshold and score_type
open IN, "$hmm_table_temp";
while (<IN>){
chomp;
if (!/^#/){
my @tmp = split (/\t/);
$Hmm_table_temp{$tmp[0]} = $_;
if ($tmp[5] and $tmp[5] !~ /K\d\d\d\d\d/){
$METABOLIC_hmm2threshold{$tmp[5]} = $tmp[10];
}
}else{
my $line = $_; @Hmm_table_head = split (/\t/);
}
}
close IN;
# Store the hmm table template 2
my %Hmm_table_temp_2 = (); # line no. => each line;
open IN, "$hmm_table_temp_2";
while (<IN>){
chomp;
if (!/^#/){
my @tmp = split (/\t/);
$Hmm_table_temp_2{$tmp[0]}= $_;
}
}
close IN;
# The hash of hmm file and corresponding threshold and score_type
my %Total_hmm2threshold = (%METABOLIC_hmm2threshold, _get_kofam_db_KO_threshold($kofam_db_KO_list,$kofam_db_address));
`mkdir $output/intermediate_files`;
if ($input_genome_folder){
open OUT, ">$output/tmp_run_annotate.sh";
open OUT2, ">$output/tmp_run_annotate.sh.2";
open IN, "ls $input_genome_folder/*.fasta |";
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The Prodigal annotation is running...\n";
while (<IN>){
chomp;
my ($gn_id) = $_ =~ /^$input_genome_folder\/(.+?)\.fasta/;
print OUT "prodigal -i $input_genome_folder/$gn_id.fasta -a $input_genome_folder/$gn_id.faa -o $input_genome_folder/$gn_id.gff -f gff -p $prodigal_method -q\n";
print OUT2 "perl $METABOLIC_dir/Accessory_scripts/gff2fasta_mdf.pl -g $input_genome_folder/$gn_id.gff -f $input_genome_folder/$gn_id.fasta -o $input_genome_folder/$gn_id.gene\n";
}
close IN;
close OUT;
close OUT2;
_run_parallel("$output/tmp_run_annotate.sh", $cpu_numbers); `rm $output/tmp_run_annotate.sh`;
_run_parallel("$output/tmp_run_annotate.sh.2", $cpu_numbers); `rm $output/tmp_run_annotate.sh.2`;
$input_protein_folder = $input_genome_folder;
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The Prodigal annotation is finished\n";
}
my %Genome_id = (); # genome id => 1
my %Seqid2Genomeid = (); # seq id => genome id
my %Total_faa_seq = (); # Store the total faa file into a hash
my %Total_gene_seq = (); # Store the total gene file into a hash
open IN,"ls $input_protein_folder/*.faa |";
while (<IN>){
chomp;
my $file = $_;
my ($file_name) = $file =~ /^(.+?)\.faa$/;
# Store faa file into a hash
%Total_faa_seq = (%Total_faa_seq, _get_faa_seq($file));
if ($input_genome_folder){
%Total_gene_seq = (%Total_gene_seq, _get_gene_seq("$file_name\.gene"));
}
my ($gn_id) = $file =~ /^$input_protein_folder\/(.+?)\.faa/;
$Genome_id{$gn_id} = 1;
open IN_, "$file";
while (<IN_>){
if (/>/){
my ($seq) = $_ =~ /^>(.+?)\s/;
$Seqid2Genomeid{$seq} = $gn_id;
}
}
close IN_;
}
open OUT, ">$output/tmp_run_hmmsearch.sh";
`cat $input_protein_folder/*.faa > $input_protein_folder/faa.total; mv $input_protein_folder/faa.total $input_protein_folder/total.faa`;
`mkdir $output/intermediate_files/Hmmsearch_Outputs`;
open IN,"ls $input_protein_folder/total.faa |";
while (<IN>){
chomp;
my $file = $_;
foreach my $hmm (sort keys %Total_hmm2threshold){
my ($threshold,$score_type) = $Total_hmm2threshold{$hmm} =~ /^(.+?)\|(.+?)$/;
if ($score_type eq "full"){
if ($hmm !~ /K\d\d\d\d\d/){
print OUT "hmmsearch -T $threshold --cpu 1 --tblout $output/intermediate_files/Hmmsearch_Outputs/$hmm.total.hmmsearch_result.txt $METABOLIC_hmm_db_address/$hmm $input_protein_folder/total.faa\n";
}else{
print OUT "hmmsearch -T $threshold --cpu 1 --tblout $output/intermediate_files/Hmmsearch_Outputs/$hmm.total.hmmsearch_result.txt $kofam_db_address/$hmm $input_protein_folder/total.faa\n";
}
}else{
if ($hmm !~ /K\d\d\d\d\d/){
print OUT "hmmsearch --domT $threshold --cpu 1 --tblout $output/intermediate_files/Hmmsearch_Outputs/$hmm.total.hmmsearch_result.txt $METABOLIC_hmm_db_address/$hmm $input_protein_folder/total.faa\n";
}else{
print OUT "hmmsearch --domT $threshold --cpu 1 --tblout $output/intermediate_files/Hmmsearch_Outputs/$hmm.total.hmmsearch_result.txt $kofam_db_address/$hmm $input_protein_folder/total.faa\n";
}
}
}
}
close IN;
close OUT;
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The hmmsearch is running with $cpu_numbers cpu threads...\n";
# Parallel run hmmsearch
_run_parallel("$output/tmp_run_hmmsearch.sh", $cpu_numbers); `rm $output/tmp_run_hmmsearch.sh`;
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The hmmsearch is finished\n";
# Store motif validation files
my %Motif = _get_motif($motif_file); # protein id => motif sequences (DsrC => GPXKXXCXXXGXPXPXXCX)
my %Motif_pair = _get_motif_pair($motif_pair_file); # dsrC => tusE
# Summarize hmmsearch result and print table
my %Hmmscan_result = (); # genome_name => hmm => numbers
my %Hmmscan_hits = (); # genome_name => hmm => hits
my %Hmm_id = (); # hmm => 1
open IN, "find $output/intermediate_files/Hmmsearch_Outputs -type f -name '*.hmmsearch_result.txt' | ";
while (<IN>){
chomp;
my $file_name = $_;
my ($hmm) = $file_name =~ /^$output\/intermediate_files\/Hmmsearch_Outputs\/(.+?\.hmm)\./;
$Hmm_id{$hmm} = 1;
my $gn_id = "";
open INN, "$file_name";
while (<INN>){
chomp;
if (!/^#/){
my $line = $_; $line =~ s/\s+/\t/g;
my @tmp = split (/\t/,$line); $gn_id = $Seqid2Genomeid{$tmp[0]};
my ($threshold,$score_type) = $Total_hmm2threshold{$hmm} =~ /^(.+?)\|(.+?)$/;
if ($score_type eq "domain"){
if ($tmp[8] >= $threshold){
my ($hmm_basename) = $hmm =~ /^(.+?)\.hmm/;
if (exists $Motif{$hmm_basename}){
my $seq;
my $motif = $Motif{$hmm_basename}; $motif =~ s/X/\[ARNDCQEGHILKMFPSTWYV\]/g;
my %Seq_gn = _store_seq("$input_protein_folder/total.faa"); # Get the total genome sequences
$seq = $Seq_gn{">$tmp[0]"};
if ($seq =~ /$motif/){
if (! exists $Hmmscan_hits{$gn_id}{$hmm}){
$Hmmscan_hits{$gn_id}{$hmm} = $tmp[0];
}else{
$Hmmscan_hits{$gn_id}{$hmm} .= "\,".$tmp[0];
}
$Hmmscan_result{$gn_id}{$hmm}++;
}
}elsif(exists $Motif_pair{$hmm_basename}){
my $motif_hmm = "$METABOLIC_hmm_db_address/$hmm_basename.check.hmm";
my $motif_anti_hmm = "$METABOLIC_hmm_db_address/$Motif_pair{$hmm_basename}.check.hmm";
_get_1_from_input_faa("$input_protein_folder/total.faa",">$tmp[0]","$output/tmp.$hmm_basename.check.faa");
`hmmsearch --cpu 1 --tblout $output/tmp.$hmm_basename.check.hmmsearch_result.txt $motif_hmm $output/tmp.$hmm_basename.check.faa`;
`hmmsearch --cpu 1 --tblout $output/tmp.$Motif_pair{$hmm_basename}.check.hmmsearch_result.txt $motif_anti_hmm $output/tmp.$hmm_basename.check.faa`;
my $motif_check_score = _get_check_score("$output/tmp.$hmm_basename.check.hmmsearch_result.txt");
my $motif_anti_check_score = _get_check_score("$output/tmp.$Motif_pair{$hmm_basename}.check.hmmsearch_result.txt");
if ($motif_check_score >= $motif_anti_check_score and $motif_check_score != 0){
if (! exists $Hmmscan_hits{$gn_id}{$hmm}){
$Hmmscan_hits{$gn_id}{$hmm} = $tmp[0];
}else{
$Hmmscan_hits{$gn_id}{$hmm} .= "\,".$tmp[0];
}
$Hmmscan_result{$gn_id}{$hmm}++;
}
`rm $output/tmp.$hmm_basename.check.faa $output/tmp.$hmm_basename.check.hmmsearch_result.txt $output/tmp.$Motif_pair{$hmm_basename}.check.hmmsearch_result.txt`;
}else{ # Do not have motif check step
if (! exists $Hmmscan_hits{$gn_id}{$hmm}){
$Hmmscan_hits{$gn_id}{$hmm} = $tmp[0];
}else{
$Hmmscan_hits{$gn_id}{$hmm} .= "\,".$tmp[0];
}
$Hmmscan_result{$gn_id}{$hmm}++;
}
}
}else{
my ($hmm_basename) = $hmm =~ /^(.+?)\.hmm/;
if (exists $Motif{$hmm_basename}){
my $seq; # The protein seq
my $motif = $Motif{$hmm_basename}; $motif =~ s/X/\[ARNDCQEGHILKMFPSTWYV\]/g;
my %Seq_gn = _store_seq("$input_protein_folder/total.faa"); # get the total genome sequences
$seq = $Seq_gn{">$tmp[0]"};
if ($seq =~ /$motif/){
if (! exists $Hmmscan_hits{$gn_id}{$hmm}){
$Hmmscan_hits{$gn_id}{$hmm} = $tmp[0];
}else{
$Hmmscan_hits{$gn_id}{$hmm} .= "\,".$tmp[0];
}
$Hmmscan_result{$gn_id}{$hmm}++;
}
}elsif(exists $Motif_pair{$hmm_basename}){
my $motif_hmm = "$METABOLIC_hmm_db_address/$hmm_basename.check.hmm";
my $motif_anti_hmm = "$METABOLIC_hmm_db_address/$Motif_pair{$hmm_basename}.check.hmm";
_get_1_from_input_faa("$input_protein_folder/total.faa",">$tmp[0]","$output/tmp.$hmm_basename.check.faa");
`hmmsearch --cpu 1 --tblout $output/tmp.$hmm_basename.check.hmmsearch_result.txt $motif_hmm $output/tmp.$hmm_basename.check.faa`;
`hmmsearch --cpu 1 --tblout $output/tmp.$Motif_pair{$hmm_basename}.check.hmmsearch_result.txt $motif_anti_hmm $output/tmp.$hmm_basename.check.faa`;
my $motif_check_score = _get_check_score("$output/tmp.$hmm_basename.check.hmmsearch_result.txt");
my $motif_anti_check_score = _get_check_score("$output/tmp.$Motif_pair{$hmm_basename}.check.hmmsearch_result.txt");
if ($motif_check_score >= $motif_anti_check_score and $motif_check_score != 0){
if (! exists $Hmmscan_hits{$gn_id}{$hmm}){
$Hmmscan_hits{$gn_id}{$hmm} = $tmp[0];
}else{
$Hmmscan_hits{$gn_id}{$hmm} .= "\,".$tmp[0];
}
$Hmmscan_result{$gn_id}{$hmm}++;
}
`rm $output/tmp.$hmm_basename.check.faa $output/tmp.$hmm_basename.check.hmmsearch_result.txt $output/tmp.$Motif_pair{$hmm_basename}.check.hmmsearch_result.txt`;
}else{
if (! exists $Hmmscan_hits{$gn_id}{$hmm}){
$Hmmscan_hits{$gn_id}{$hmm} = $tmp[0];
}else{
$Hmmscan_hits{$gn_id}{$hmm} .= "\,".$tmp[0];
}
$Hmmscan_result{$gn_id}{$hmm}++;
}
}
}
}
close INN;
}
close IN;
`rm $input_protein_folder/total.faa`;
# Print out hmm result each tsv file
`mkdir $output/METABOLIC_result_each_spreadsheet`;
# Print worksheet1
open OUT, ">$output/METABOLIC_result_each_spreadsheet/METABOLIC_result_worksheet1.tsv";
# Print head
my @Hmm_table_head_worksheet1 = ();
for(my $i=0; $i<=9; $i++){
push @Hmm_table_head_worksheet1, $Hmm_table_head[($i+1)];
}
foreach my $gn_id (sort keys %Genome_id){
push @Hmm_table_head_worksheet1, "$gn_id Hmm presence";
push @Hmm_table_head_worksheet1, "$gn_id Hit numbers";
push @Hmm_table_head_worksheet1, "$gn_id Hits";
}
print OUT join("\t",@Hmm_table_head_worksheet1)."\n";
# Print body
foreach my $line_no (sort keys %Hmm_table_temp){
my $row = $line_no;
my @Hmm_table_body_worksheet1 = ();
my @tmp = split(/\t/,$Hmm_table_temp{$line_no});
my $hmm = $tmp[5];
for(my $i=0; $i<=9; $i++){
push @Hmm_table_body_worksheet1, $tmp[($i+1)];
}
foreach my $gn_id (sort keys %Genome_id){
my $hmm_presence = "Absent";
my $hit_num = 0;
my @Hits = ();
if ($hmm and $hmm !~ /\,\s/){
if ($Hmmscan_result{$gn_id}{$hmm}){
$hmm_presence = "Present";
push @Hits, $Hmmscan_hits{$gn_id}{$hmm};
$hit_num = $Hmmscan_result{$gn_id}{$hmm};
}else{
push @Hits, "None";
}
}elsif($hmm and $hmm =~ /\,\s/){
my @tmp = split (/\,\s/,$hmm);
my $sum = 0;
for(my $i=0; $i<=$#tmp; $i++){
if ($Hmmscan_result{$gn_id}{$tmp[$i]}){
$sum += $Hmmscan_result{$gn_id}{$tmp[$i]};
push @Hits, $Hmmscan_hits{$gn_id}{$tmp[$i]};
}else{
push @Hits, "None";
}
}
if ($sum){
$hmm_presence = "Present";
}
$hit_num = $sum;
}
push @Hmm_table_body_worksheet1,$hmm_presence;
push @Hmm_table_body_worksheet1,$hit_num;
push @Hmm_table_body_worksheet1,join("\;",@Hits);
}
print OUT join("\t",@Hmm_table_body_worksheet1)."\n";
}
close OUT;
# Print worksheet2
open OUT, ">$output/METABOLIC_result_each_spreadsheet/METABOLIC_result_worksheet2.tsv";
# Print head
my @Hmm_table_head_worksheet2 = ();
for(my $i=0; $i<=2; $i++){
push @Hmm_table_head_worksheet2, $Hmm_table_head[($i+1)];
}
foreach my $gn_id (sort keys %Genome_id){
push @Hmm_table_head_worksheet2, "$gn_id Function presence";
}
print OUT join("\t",@Hmm_table_head_worksheet2)."\n";
# Write the main body of hmm result to worksheet2
foreach my $line_no (sort keys %Hmm_table_temp_2){
my @Hmm_table_body_worksheet2 = ();
my @tmp_table_2 = split(/\t/,$Hmm_table_temp_2{$line_no});
for(my $i=0; $i<=2; $i++){
push @Hmm_table_body_worksheet2, $tmp_table_2[($i+2)];
}
my $line_no_4_table_1 = $tmp_table_2[1];
if ($line_no_4_table_1 !~ /\|\|/){
my @tmp_table_1 = split(/\t/,$Hmm_table_temp{$line_no_4_table_1});
my $hmm = $tmp_table_1[5];
foreach my $gn_id (sort keys %Genome_id){
my $hmm_presence = "Absent";
if ($hmm and $hmm !~ /\,\s/){
if ($Hmmscan_result{$gn_id}{$hmm}){
$hmm_presence = "Present";
}
}elsif($hmm and $hmm =~ /\,\s/){
my @tmp = split (/\,\s/,$hmm);
my $sum = 0; my @array_hit_num = ();
for(my $i=0; $i<=$#tmp; $i++){
if ($Hmmscan_result{$gn_id}{$tmp[$i]}){
$sum += $Hmmscan_result{$gn_id}{$tmp[$i]};
}
}
if ($sum){
$hmm_presence = "Present";
}
}
push @Hmm_table_body_worksheet2,$hmm_presence;
}
}else{
my @array_line_no_4_table_1 = split (/\|\|/, $line_no_4_table_1);
my @array_hmm = ();
foreach my $line_no_4_table_1 (@array_line_no_4_table_1){
my @tmp_table_1 = split(/\t/,$Hmm_table_temp{$line_no_4_table_1});
my $hmm = $tmp_table_1[5];
if ($hmm and $hmm !~ /\,\s/){
push @array_hmm, $hmm;
}elsif($hmm and $hmm =~ /\,\s/){
my @tmp = split (/\,\s/,$hmm);
foreach my $key (@tmp){
push @array_hmm, $key;
}
}
}
foreach my $gn_id (sort keys %Genome_id){
my $hmm_presence = "Absent";
my $sum = 0;
foreach my $hmm (@array_hmm){
if ($Hmmscan_result{$gn_id}{$hmm}){
$sum += $Hmmscan_result{$gn_id}{$hmm};
}
}
if ($sum){
$hmm_presence = "Present";
}
push @Hmm_table_body_worksheet2,$hmm_presence;
}
}
print OUT join("\t",@Hmm_table_body_worksheet2)."\n";
}
close OUT;
# Print out each hmm faa collection
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] Generating each hmm faa collection...\n";
`mkdir $output/Each_HMM_Amino_Acid_Sequence`;
foreach my $hmm (sort keys %Hmm_id){
my %Hmm_faa_seq = (); #Store the faa seqs in a hmm
my %Hmm_gene_seq = (); # Store the gene seqs in a hmm
foreach my $gn_id (sort keys %Hmmscan_hits){
if ($Hmmscan_hits{$gn_id}{$hmm}){
my @Hits = split (/\,/,$Hmmscan_hits{$gn_id}{$hmm});
foreach my $hit (@Hits){
my $seq_head = ">".$gn_id."~~".$hit;
if (exists $Total_faa_seq{$seq_head}){
$Hmm_faa_seq{$seq_head} = $Total_faa_seq{$seq_head}; #print "$Total_faa_seq{$seq_head}\n";
}
if (exists $Total_gene_seq{$seq_head}){
$Hmm_gene_seq{$seq_head} = $Total_gene_seq{$seq_head}; #print "$Total_faa_seq{$seq_head}\n";
}
}
}
}
if (%Hmm_faa_seq){
open OUT, ">$output/Each_HMM_Amino_Acid_Sequence/$hmm.collection.faa";
foreach my $key (sort keys %Hmm_faa_seq){
print OUT "$key\n$Hmm_faa_seq{$key}\n";
}
close OUT;
}
if (%Hmm_gene_seq){
open OUT, ">$output/Each_HMM_Amino_Acid_Sequence/$hmm.collection.gene";
foreach my $key (sort keys %Hmm_gene_seq){
print OUT "$key\n$Hmm_gene_seq{$key}\n";
}
close OUT;
}
}
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] Each hmm faa collection has been made\n";
# Do the KEGG module calculating
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The KEGG module result is calculating...\n";
# Store the KEGG module table
my %Cat2module = (); # module category => modules "\t"
my $head_cat2module = ""; # Central carbohydrate metabolism
open IN, "$ko_module_table";
while (<IN>){
chomp;
if (/^C /){
$head_cat2module = $_; $head_cat2module =~ s/^C //g;
if (!exists $Cat2module{$head_cat2module}){
$Cat2module{$head_cat2module} = "";
}
}elsif(/^D /){
my ($tmp) = $_ =~ /^D (M\d\d\d\d\d)/;
if (! $Cat2module{$head_cat2module}){
$Cat2module{$head_cat2module} = $tmp;
}else{
$Cat2module{$head_cat2module} .= "\t".$tmp;
}
}
}
close IN;
# Store the KEGG module step database
my %KEGG_module = (); # M00804+01 => 0: k_string 1: name (dTDP-D-forosamine biosynthesis)
my %KEGG_module2step_number = (); # M00804 => 3
my %KEGG_module2name = (); # M00804 => dTDP-D-forosamine biosynthesis
open IN, "$ko_module_step_db";
while (<IN>){
chomp;
if (!/^name/){
my @tmp = split (/\t/);
$KEGG_module{$tmp[2]}[0] = $tmp[1];
$KEGG_module{$tmp[2]}[1] = $tmp[0];
my ($module,$step_num) = $tmp[2] =~ /^(M.+?)\+(.+?)$/;
$KEGG_module2step_number{$module} = int($step_num);
$KEGG_module2name{$module} = $tmp[0];
}
}
close IN;
# The hmm to ko id hash
my %Hmm2ko = _get_hmm_2_KO_hash(%Hmm_table_temp); # Like: TIGR02694.hmm => K08355.hmm
# To see whether a module step exists for a given genome
my %Module_step_result = (); # M00804+01 => genome id => 1 / 0
foreach my $m_step (sort keys %KEGG_module){
foreach my $gn_id (sort keys %Genome_id){
my $k_string = $KEGG_module{$m_step}[0];
my @ko_hits = (); # All the ko hits for this genome
foreach my $hmm (sort keys %Hmm_id){
my $hmm_new = ""; # transfer all the hmm id to ko id
if (exists $Hmm2ko{$hmm}){
$hmm_new = $Hmm2ko{$hmm};
}elsif (!exists $Hmm2ko{$hmm} and $hmm =~ /^K\d\d\d\d\d/){
$hmm_new = $hmm;
}
my $hmm_new_wo_ext = "";
if ($hmm_new){
($hmm_new_wo_ext) = $hmm_new =~ /^(.+?)\.hmm/;
}
if ($hmm_new_wo_ext and $Hmmscan_result{$gn_id}{$hmm}){
push @ko_hits, $hmm_new_wo_ext;
}
}
$Module_step_result{$m_step}{$gn_id} = _determine_module_step($k_string, @ko_hits);
}
}
my %Module_result = (); # M00804 => genome name => Absent / Present
foreach my $module (sort keys %KEGG_module2step_number){
foreach my $gn_id (sort keys %Genome_id){
my $present_no = 0;
foreach my $module_step (sort keys %Module_step_result){
if ($module_step =~ /$module/){
if ($Module_step_result{$module_step}{$gn_id}){
$present_no += $Module_step_result{$module_step}{$gn_id};
}
}
}
my $ratio = $present_no / $KEGG_module2step_number{$module};
if ($ratio >= $module_cutoff){
$Module_result{$module}{$gn_id} = "Present";
}else{
$Module_result{$module}{$gn_id} = "Absent";
}
}
}
# Print worksheet3
# Write the head of hmm result to worksheet3
open OUT, ">$output/METABOLIC_result_each_spreadsheet/METABOLIC_result_worksheet3.tsv";
# Print head
my @Worksheet3_head = ();
push @Worksheet3_head, "Module ID";
push @Worksheet3_head, "Module";
push @Worksheet3_head, "Module Category";
foreach my $gn_id (sort keys %Genome_id){
push @Worksheet3_head, "$gn_id Module presence";
}
print OUT join("\t",@Worksheet3_head)."\n";
# Print the worksheet3 result
foreach my $module (sort keys %Module_result){
my @Worksheet3_body = ();
push @Worksheet3_body, $module;
push @Worksheet3_body, $KEGG_module2name{$module};
my $cat_4_module = ""; # The category name for module
foreach my $cat (sort keys %Cat2module){
if ($Cat2module{$cat} =~ /$module/){
$cat_4_module = $cat;
}
}
push @Worksheet3_body, $cat_4_module;
foreach my $gn_id (sort keys %Genome_id){
push @Worksheet3_body, $Module_result{$module}{$gn_id};
}
print OUT join("\t",@Worksheet3_body)."\n";
}
close OUT;
# Print worksheet4
# Write the head of hmm result to worksheet4
open OUT, ">$output/METABOLIC_result_each_spreadsheet/METABOLIC_result_worksheet4.tsv";
# Print head
my @Worksheet4_head = ();
push @Worksheet4_head, "Module step";
push @Worksheet4_head, "Module";
push @Worksheet4_head, "KO id";
push @Worksheet4_head, "Module Category";
foreach my $gn_id (sort keys %Genome_id){
push @Worksheet4_head, "$gn_id Module step presence";
}
print OUT join("\t",@Worksheet4_head)."\n";
# Print the worksheet4 result
foreach my $module_step (sort keys %Module_step_result){
my @Worksheet4_body = ();
push @Worksheet4_body, $module_step;
my ($module) = $module_step =~ /^(M.+?)\+/;
push @Worksheet4_body, $KEGG_module2name{$module};
push @Worksheet4_body, $KEGG_module{$module_step}[0];
my $cat_4_module = ""; # The category name for module
foreach my $cat (sort keys %Cat2module){
if ($Cat2module{$cat} =~ /$module/){
$cat_4_module = $cat;
}
}
push @Worksheet4_body, $cat_4_module;
foreach my $gn_id (sort keys %Genome_id){
my $module_step_presence = "Absent";
if ($Module_step_result{$module_step}{$gn_id}){
$module_step_presence = "Present";
}
push @Worksheet4_body, $module_step_presence;
}
print OUT join("\t",@Worksheet4_body)."\n";
}
close OUT;
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The KEGG identifier \(KO id\) result is calculating...\n";
# Print the KEGG KO hits
my %Hmmscan_result_for_KO = (); # new gn id => KO => numbers
my %Hmmscan_hits_for_KO = (); # new gn id => KO => hits
my %New_hmmid = (); # KOs (without extension) => 1
foreach my $genome_name (sort keys %Hmmscan_result){
my $gn = $genome_name;
foreach my $hmm (sort keys %Hmm_id){
my $hmm_new = ""; # Transfer all the hmm id to ko id
if (exists $Hmm2ko{$hmm}){
$hmm_new = $Hmm2ko{$hmm};
}elsif (!exists $Hmm2ko{$hmm} and $hmm =~ /^K\d\d\d\d\d/){
$hmm_new = $hmm;
}
my $hmm_new_wo_ext = "";
if ($hmm_new){
($hmm_new_wo_ext) = $hmm_new =~ /^(.+?)\.hmm/; $New_hmmid{$hmm_new_wo_ext} = 1;
$Hmmscan_result_for_KO{$gn}{$hmm_new_wo_ext} = $Hmmscan_result{$genome_name}{$hmm};
$Hmmscan_hits_for_KO{$gn}{$hmm_new_wo_ext} = $Hmmscan_hits{$genome_name}{$hmm};
}
}
}
`mkdir $output/KEGG_identifier_result`;
foreach my $gn_id (sort keys %Genome_id){
open OUT1, ">$output/KEGG_identifier_result/$gn_id.result.txt";
open OUT2, ">$output/KEGG_identifier_result/$gn_id.hits.txt";
foreach my $hmmid (sort keys %New_hmmid){
my $new_gn_id = $gn_id;
my $result = "";
if ($Hmmscan_result_for_KO{$new_gn_id}{$hmmid}){
$result = $Hmmscan_result_for_KO{$new_gn_id}{$hmmid};
}
print OUT1 "$hmmid\t$result\n";
my $hits = "";
if ($Hmmscan_hits_for_KO{$new_gn_id}{$hmmid}){
$hits = $Hmmscan_hits_for_KO{$new_gn_id}{$hmmid};
}
print OUT2 "$hmmid\t$hits\n";
}
close OUT1;
close OUT2;
}
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] The KEGG identifier \(KO id\) seaching result is finished\n";
# Run the dbCAN
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] Searching CAZymes by dbCAN2...\n";
`mkdir $output/intermediate_files/dbCAN2_Files`;
open OUT, ">$output/tmp_run_dbCAN2.sh";
open IN,"ls $input_protein_folder/*.faa |";
while (<IN>){
chomp;
my $file = $_;
my ($gn_id) = $file =~ /^$input_protein_folder\/(.+?)\.faa/;
print OUT "hmmscan --domtblout $output/intermediate_files/dbCAN2_Files/$gn_id.dbCAN2.out.dm --cpu 1 $METABOLIC_dir/dbCAN2/dbCAN-fam-HMMs.txt $file > $output/intermediate_files/dbCAN2_Files/$gn_id.dbCAN2.out;";
print OUT "python $METABOLIC_dir/Accessory_scripts/hmmscan-parser-dbCANmeta.py $output/intermediate_files/dbCAN2_Files/$gn_id.dbCAN2.out.dm > $output/intermediate_files/dbCAN2_Files/$gn_id.dbCAN2.out.dm.ps\n";
}
close IN;
close OUT;
# Parallel run dbCAN2
_run_parallel("$output/tmp_run_dbCAN2.sh", $cpu_numbers); `rm $output/tmp_run_dbCAN2.sh`;
my %dbCANout = (); # genome => hmmid => number
my %dbCANout2 = (); # genome => hmmid => hits
my %Hmm_dbCAN2_id = (); # hmm => 1
open IN, "ls $output/intermediate_files/dbCAN2_Files/*.dbCAN2.out.dm.ps |";
while (<IN>)
{
my $file = $_;
my ($gn_id) = $file =~ /^$output\/intermediate_files\/dbCAN2_Files\/(.+?)\.dbCAN2\.out\.dm\.ps/;
open INN, "$file";
while (<INN>){
if (/^GH|^PL/){
my @tmp = split(/\t/,$_);
my ($hmmid) = $tmp[0] =~ /(\S+?)\.hmm/;
my ($hmmid_p1,$hmmid_p2) = $hmmid =~ /^(\D+?)(\d+)/;
my $num=(sprintf "%03d", $hmmid_p2);
$hmmid = $hmmid_p1.$num;
$Hmm_dbCAN2_id{$hmmid} = 1;
my ($name) = $tmp[2];
$dbCANout{$gn_id}{$hmmid}++;
if (!exists $dbCANout2{$gn_id}{$hmmid}){
$dbCANout2{$gn_id}{$hmmid} = $name;
}else{
$dbCANout2{$gn_id}{$hmmid} .= "\;".$name;
}
}
}
close INN;
}
close IN;
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] dbCAN2 searching is done\n";
# Print worksheet5
# Write the head of hmm result to worksheet5
open OUT, ">$output/METABOLIC_result_each_spreadsheet/METABOLIC_result_worksheet5.tsv";
# Print head
my @Worksheet5_head = ();
push @Worksheet5_head, "CAZyme ID";
foreach my $gn_id (sort keys %Genome_id){
push @Worksheet5_head, "$gn_id Hit numbers";
push @Worksheet5_head, "$gn_id Hits";
}
print OUT join("\t",@Worksheet5_head)."\n";
# Print the worksheet5 result
foreach my $hmmid (sort keys %Hmm_dbCAN2_id){
my @Worksheet5_body = ();
push @Worksheet5_body,$hmmid;
foreach my $gn_id (sort keys %Genome_id){
my $hit_num = 0;
if ($dbCANout{$gn_id}{$hmmid}){
$hit_num = $dbCANout{$gn_id}{$hmmid};
}
push @Worksheet5_body,$hit_num;
my $hits = "None";
if ($dbCANout2{$gn_id}{$hmmid}){
$hits = $dbCANout2{$gn_id}{$hmmid};
}
push @Worksheet5_body,$hits;
}
print OUT join("\t",@Worksheet5_body)."\n";
}
close OUT;
# Run the MEROPS
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] Searching MEROPS peptidase...\n";
`mkdir $output/intermediate_files/MEROPS_Files`;
open OUT, ">$output/tmp_run_MEROPS.sh";
open IN,"ls $input_protein_folder/*.faa |";
while (<IN>){
chomp;
my $file = $_;
my ($gn_id) = $file =~ /^$input_protein_folder\/(.+?)\.faa/;
print OUT "diamond blastp -d $METABOLIC_dir/MEROPS/pepunit.db -q $file -o $output/intermediate_files/MEROPS_Files/$gn_id.MEROPSout.m8 -k 1 -e 1e-10 --query-cover 80 --id 50 --quiet -p 1 2> /dev/null\n";
}
close IN;
close OUT;
# Parallel run the MEROPS
_run_parallel("$output/tmp_run_MEROPS.sh", $cpu_numbers); `rm $output/tmp_run_MEROPS.sh`;
my %MEROPS_map; # MER id => all line
open IN, "$METABOLIC_dir/MEROPS/pepunit.lib";
while (<IN>){
chomp;
if (/>/){
$_ =~ tr/\015//d;
my ($mer_id) = $_ =~ /^>(.+?)\s/;
$MEROPS_map{$mer_id} = $_;
}
}
close IN;
my %MEROPSout = (); # genome => hmmid => number
my %MEROPSout2 = (); # genome => hmmid => hits
my %MEROPSid = (); # merops_id => 1
open IN, "ls $output/intermediate_files/MEROPS_Files/*.MEROPSout.m8 |";
while (<IN>)
{
my $file = $_;
my ($gn_id) = $file =~ /^$output\/intermediate_files\/MEROPS_Files\/(.+?)\.MEROPSout\.m8/;
open INN, "$file";
while (<INN>){
my @tmp = split(/\t/,$_);
my ($meropsid) = $MEROPS_map{$tmp[1]} =~ /\#(.+?)\#/; $MEROPSid{$meropsid} = 1;
my ($name) = $tmp[0];
$MEROPSout{$gn_id}{$meropsid}++;
if (!exists $MEROPSout2{$gn_id}{$meropsid}){
$MEROPSout2{$gn_id}{$meropsid} = $name;
}else{
$MEROPSout2{$gn_id}{$meropsid} .= "\;".$name;
}
}
close INN;
}
close IN;
$datestring = strftime "%Y-%m-%d %H:%M:%S", localtime;
print "\[$datestring\] MEROPS peptidase searching is done\n";
# Print worksheet6
# Write the head of hmm result to worksheet6
open OUT, ">$output/METABOLIC_result_each_spreadsheet/METABOLIC_result_worksheet6.tsv";
# Print head
my @Worksheet6_head = ();
push @Worksheet6_head, "MEROPS peptidase ID";