-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorthomclight.pl
executable file
·680 lines (592 loc) · 21.9 KB
/
orthomclight.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
#!/usr/bin/perl -w
## AUTHORS: Li Li, Feng Chen <[email protected]>
## EDITED BY: Cecilia Sensalari and Michiel Van Bel
## OrthoMCLight [2024-04-17] Edited OrthoMCL Version 1.4
## Copyright (C) 2004~2006 by University of Pennsylvania, Philadelphia, PA USA.
## All rights reserved.
## Before orthomclight.pl can be used, some variables (including directory variables
## or parameter variables) in orthomclight_module.pm need to be set, as described in
## README.
my $starttime = `date`;
use strict;
use Getopt::Long;
use File::Basename;
use lib dirname (__FILE__);
use orthomclight_module;
my ($mode,$fa_files,$pv_cutoff,$pi_cutoff,$pmatch_cutoff,%blast_flag,$inflation,$maximum_weight,$num_threads);
my ($usr_blast_file,$usr_bpo_file,$usr_gg_file,$usr_taxa_file,$former_run_dir); # For Mode 2, 3 or 4
my $command=basename($0)." ".join(' ',@ARGV)."\n";
&GetOptions(
"mode=i" => \$mode,
"fa_files=s" => \$fa_files,
"pv_cutoff=s" => \$pv_cutoff,
"pi_cutoff=f" => \$pi_cutoff,
"pmatch_cutoff=f" => \$pmatch_cutoff,
"inflation=f" => \$inflation,
"maximum_weight=i" => \$maximum_weight,
"blast_file=s" => \$usr_blast_file,
"bpo_file=s" => \$usr_bpo_file,
"gg_file=s" => \$usr_gg_file,
"taxa_file=s" => \$usr_taxa_file,
"former_run_dir=s" => \$former_run_dir,
"num_threads=i" => \$num_threads
);
if (!defined $mode) {printHelp();}
#set the default
$pv_cutoff = $pv_cutoff ? $pv_cutoff : $BLAST_PVALUE_CUTOFF_DEFAULT;
$pi_cutoff = $pi_cutoff ? $pi_cutoff : $PERCENT_IDENTITY_CUTOFF_DEFAULT;
$pmatch_cutoff = $pmatch_cutoff ? $pmatch_cutoff : $PERCENT_MATCH_CUTOFF_DEFAULT;
$inflation = $inflation ? $inflation : $MCL_INFLATION_DEFAULT;
$maximum_weight = $maximum_weight ? $maximum_weight : $MAX_WEIGHT_DEFAULT;
$num_threads = $num_threads ? $num_threads : $NUM_THREADS_DEFAULT;
if ($BLAST_FORMAT eq 'full') {
%blast_flag=( 'm' =>0,
'format' =>'blast',
'hsp'=>1
);
} elsif ($BLAST_FORMAT eq 'compact') {
%blast_flag=( 'm' =>8,
'format' =>'blasttable',
'hsp'=>1
);
} else {
die "\$BLAST_FORMAT can only be 'full' or 'compact'!\n";
}
my (%connect, %ortho);
if ($mode == 1) {
if (defined $fa_files) {
&constructDirectory($starttime);
my %seq_len=%{constructAllFasta($fa_files,$all_fa_file)}; #construct all.fa file
&executeFORMATDB($all_fa_file); # and run blast
&executeBLASTALL($all_fa_file,$blast_file,$all_fa_file,$pv_cutoff,\%blast_flag);
&blast_parse($blast_file,$bpo_file,$pv_cutoff,\%seq_len,\%blast_flag) unless (-e $bpo_file);
} else {dieWithUnexpectedError("In Mode 1, NAMES OF FASTA FILES need to be given!");}
}
elsif ($mode == 2) {
if (defined $former_run_dir) {
&constructDirectory($starttime,$former_run_dir);
&read_ggfile($genome_gene_file);
} else {dieWithUnexpectedError("In Mode 2, FORMER RUN DIRECTORY needs to be given!");}
}
elsif ($mode == 3) {
if ((defined $usr_blast_file) && (defined $usr_gg_file)) {
&constructDirectory($starttime);
$all_fa_file = 'N/A';
$genome_gene_file = $usr_gg_file;
read_ggfile($genome_gene_file);
$blast_file = $usr_blast_file;
&blast_parse($blast_file,$bpo_file,$pv_cutoff,{},\%blast_flag) unless (-e $bpo_file);
} else {dieWithUnexpectedError("In Mode 3, BLAST OUT FILE and GENOME-GENE FILE are required!");}
}
elsif ($mode == 4) {
if ((defined $usr_bpo_file) && (defined $usr_gg_file)) {
&constructDirectory($starttime);
$all_fa_file = 'N/A';
$genome_gene_file = $usr_gg_file;
$blast_file = 'N/A';
read_ggfile($genome_gene_file);
$bpo_file = $usr_bpo_file;
if ($usr_bpo_file =~ m/(\S+)\.(\S+)/) {
$bpo_idx_file = $1.'_bpo.idx';
$bpo_se_file = $1.'_bpo.se';
} else {
$bpo_idx_file = $usr_bpo_file.'_bpo.idx';
$bpo_se_file = $usr_bpo_file.'_bpo.se';
}
} else {dieWithUnexpectedError("In Mode 4, BPO (BLAST PARSE OUT) FILE and GG (GENOME-GENE RELATION) FILE are required!");}
}
elsif ($mode == 5) {
if ((defined $former_run_dir) && (defined $usr_taxa_file)) {
mode5($starttime,$command,$former_run_dir,$usr_taxa_file,$inflation,$num_threads);
my $endtime = `date`;
&write_endtime_in_parameter_log($endtime);
write_log("\nStart Time: $starttime\nEnd Time: $endtime\n");
die "\nStart Time: $starttime\nEnd Time: $endtime\n";
} else {dieWithUnexpectedError("In Mode 5, FORMER RUN DIR and TAXA LIST FILE are required!");}
}
else {dieWithUnexpectedError("Mode 1,2,3,4 or 5 needs to be given!");}
&write_parameter_log($starttime,$command,$mode,$pv_cutoff,$pi_cutoff,$pmatch_cutoff,$inflation,$maximum_weight,$num_threads);
&constructIDX_for_bpofile($bpo_file,$bpo_idx_file) unless (-e $bpo_idx_file);
&constructSE_for_bpofile($bpo_file,$bpo_se_file) unless (-e $bpo_se_file);
&open_bpofile($bpo_file);
&retrieve_from_file($bpo_idx_file,$bpo_se_file);
foreach my $taxon (@taxa) {
write_log("\nIdentifying inparalogs from $taxon\n");
@{$connect{$taxon.' '.$taxon}} = &makeInparalog($taxon); # identification of inparalogs
}
for(my $i=0;$i<scalar(@taxa)-1;$i++) {
for(my $j=$i+1;$j<scalar(@taxa);$j++) {
write_log("\nIdentifying ortholog pairs between $taxa[$i] and $taxa[$j]\n");
@{$connect{$taxa[$i].' '.$taxa[$j]}} = &makeOrtholog($taxa[$i],$taxa[$j]); # identification of orthologs
write_log("Appending co-ortholog pairs between $taxa[$i] and $taxa[$j]: ");
my $c_coortholog=0;
my %e;
my $edge_ref=$connect{$taxa[$i].' '.$taxa[$j]}->[0];
foreach my $pi (keys %$edge_ref) {@{$e{$pi}}=@{$edge_ref->{$pi}};} #make a copy of current edge data structure into %e
my %w = %{$connect{$taxa[$i].' '.$taxa[$j]}->[1]};
my $sumw = $connect{$taxa[$i].' '.$taxa[$j]}->[3];
my $c_ortholog = $connect{$taxa[$i].' '.$taxa[$j]}->[4];
my %p1 = %{$connect{$taxa[$i].' '.$taxa[$i]}->[0]};
my %p2 = %{$connect{$taxa[$j].' '.$taxa[$j]}->[0]};
my %para;
foreach my $p (keys %{$connect{$taxa[$i].' '.$taxa[$i]}->[0]}) {
push (@{$para{$p}}, @{$p1{$p}}); }
foreach my $p (keys %{$connect{$taxa[$j].' '.$taxa[$j]}->[0]}) {
push (@{$para{$p}}, @{$p2{$p}}); }
foreach my $n (keys %e) {
$ortho{$n} = 1;
my (@nodes1, @nodes2);
if (exists($para{$n})) {push (@nodes1, $n, @{$para{$n}});}
else {push (@nodes1, $n);}
foreach (@{$e{$n}}) {
if (exists($para{$_})) {push (@nodes2, $_, @{$para{$_}});}
else {push (@nodes2, $_);}
}
@nodes1=@{nonredundant_list(\@nodes1)}; #can be commented
@nodes2=@{nonredundant_list(\@nodes2)};
for(my $k=0;$k<scalar(@nodes1);$k++) {
for(my $l=0;$l<scalar(@nodes2);$l++) {
next if(exists($w{$nodes1[$k].' '.$nodes2[$l]}));
my ($pv1, $pv2);
if (blastqueryab($nodes1[$k],$nodes2[$l])) {
my ($s,$pm,$pe,$pi)=(blastqueryab($nodes1[$k],$nodes2[$l]))[0,3,4,5];
next if($pm.'e'.$pe > $pv_cutoff || $pi< $pi_cutoff);
if($pmatch_cutoff) {
next if(&simspan($s) < $pmatch_cutoff);
}
if($pm==0) { $pv1 = $maximum_weight;} else { $pv1 = -log($pm.'e'.$pe)/log(10); }
} else {next;}
if (blastqueryab($nodes2[$l],$nodes1[$k])) {
my ($s,$pm,$pe,$pi)=(blastqueryab($nodes2[$l],$nodes1[$k]))[0,3,4,5];
next if($pm.'e'.$pe > $pv_cutoff || $pi < $pi_cutoff);
if($pmatch_cutoff) {
next if(&simspan($s) < $pmatch_cutoff);
}
if($pm==0) { $pv2 = $maximum_weight;} else { $pv2 = -log($pm.'e'.$pe)/log(10); }
push (@{$edge_ref->{$nodes1[$k]}}, $nodes2[$l]);
push (@{$edge_ref->{$nodes2[$l]}}, $nodes1[$k]);
my $wt = ($pv1+$pv2)/2;
# use averaged score as edge weight
$w{$nodes1[$k].' '.$nodes2[$l]} = sprintf("%.3f", $wt);
$w{$nodes2[$l].' '.$nodes1[$k]} = sprintf("%.3f", $wt);
$sumw += $wt;
$c_coortholog++;
}
}
}
}
write_log("$c_coortholog pairs\n");
my $avgw = 'N/A';
if ($c_ortholog+$c_coortholog) {
$avgw = $sumw/($c_ortholog+$c_coortholog);
}
write_log("$taxa[$i] and $taxa[$j] average weight: $avgw\n");
foreach my $p (keys %w) {
$w{$p} = sprintf("%.3f", $w{$p}/$avgw);
}
$connect{$taxa[$i].' '.$taxa[$j]}->[1] = \%w;
}
}
%blastquery=();
%gindex=();
foreach my $taxon (@taxa) {
write_log("\ncalculate average weight from $taxon\n");
my %e = %{$connect{$taxon.' '.$taxon}->[0]};
my %w = %{$connect{$taxon.' '.$taxon}->[1]};
my $count=0; my $sum=0;
my $count_all=0; my $sum_all = 0;
foreach my $pair (keys %w) {
my ($n,$p) = split(' ',$pair);
$count_all++; $sum_all += $w{$n.' '.$p};
if ($ortho{$n} || $ortho{$p}) {
$count++;
$sum += $w{$n.' '.$p};
}
}
my $avgw;
# normalize the in-paralog weights by the average weight of inparalogs which have orthologs in other species
# common case, for eukaryotes and most prokaryotes
if ($count) {
$avgw = $sum/$count;
}
# OR normalize the in-paralog weights by the average weight of all inparalogs
# not common, useful for prokaryotes or pathogens
elsif ($count_all) {
$avgw = $sum_all/$count_all;
write_log("taxon average weight is calculated based on all inparalog pairs\n");
}
# OR no normalization since $count_all=0 and there is nothing stored in %weight
# not common, useful for prokaryotes or pathogens
else {
$avgw = 'N/A';
write_log("taxon average weight is not calculated because there's no inparalog pairs\n");
}
write_log("$taxon average weight: $avgw\n");
foreach my $p (keys %w) {
$w{$p} = sprintf("%.3f", $w{$p}/$avgw);
}
$connect{$taxon.' '.$taxon}->[1] = \%w;
}
%ortho=();
foreach my $p (keys %connect) {
my %e = %{$connect{$p}->[0]};
my %w = %{$connect{$p}->[1]};
foreach my $n (keys %e) {
push(@{$graph{$n}}, @{$e{$n}});
delete $e{$n};
}
%e=();
foreach my $n (keys %w) {
$weight{$n} = $w{$n};
delete $w{$n};
}
%w=();
delete $connect{$p};
}
%connect=();
write_matrix_index($matrix_file,$index_file);
%graph=();
%weight=();
executeMCL($matrix_file,$mcl_file,$inflation,$num_threads);
mcl_backindex($mcl_file,$mcl_bi_file);
%gindex2=();
my $endtime = `date`;
write_log("\nStart Time: $starttime\nEnd Time: $endtime\n");
&write_endtime_in_parameter_log($endtime);
#######################################SUBROUTINES###########################################
# This subroutine is an important part of OrthoMCL, used to
# look for inparalog (recent paralog) which is defined as
# reciprocal better hits here.
# Please refer to the OrthoMCL paper for more details.
# One Arguments:
# 1. String Variable: Taxon name
# Last modified: 10/02/06
sub makeInparalog {
my $taxon = $_[0];
my (%seqs, %inbest, %pvalue,%sim);
foreach (@{$gindex{$taxon}}) {$seqs{$_} = 1;}
foreach my $qid (keys %seqs) {
my ($sStart,$sEnd);
if (defined $blastquery{$qid}) {
($sStart,$sEnd)=split (";",$blastquery{$qid});
} else {next;}
my @sorted_simid=pvtie_sort($sStart,$sEnd,$taxon);
LINE:foreach (0..$#sorted_simid) {
my ($s,$sid,$pm,$pe,$pi)=(&getline_from_bpofile($sorted_simid[$_]))[0,3,5,6,7];
if ($sid ne $qid) {
last LINE unless ($seqs{$sid}); ## better hit not from the same species
last LINE if($pm.'e'.$pe > $pv_cutoff || $pi < $pi_cutoff); ## better hit not meet the cutoff
if($pmatch_cutoff) {
next LINE if(&simspan($s) < $pmatch_cutoff);
}
push(@{$inbest{$qid}}, $sid);
$pvalue{$qid.' '.$sid} = $pm.'e'.$pe;
}
}
}
my @b = keys %inbest;
write_log(scalar(@b)." sequences have better hits within species\n");
return &matrix(\%inbest, \%pvalue);
} ##makeInparalog
# This subroutine is an important part of OrthoMCL, used to
# look for ortholog which is defined as the reciprocal best
# hit between two species.
# Please refer to the OrthoMCL paper for more details.
# Two Arguments:
# 1. String Variable: Taxon name
# 2. String Variable: Taxon name
# Last modified: 10/02/06
sub makeOrtholog {
my ($ta,$tb) = @_;
my (@seqs,%best,%sim,%pvalue);
foreach my $qid (@{$gindex{$ta}}) {
my ($sStart,$sEnd);
if (defined $blastquery{$qid}) {
($sStart,$sEnd)=split (";",$blastquery{$qid});
} else {next;}
my ($lastpm,$lastpe);
my $hit_id=0;
LINE:foreach ($sStart..$sEnd) {
my ($s,$sid,$pm,$pe,$pi)=(&getline_from_bpofile($_))[0,3,5,6,7];
if (defined $gindex2{$sid}) {
if ($gindex2{$sid} eq $tb) {
$hit_id++;
if ($hit_id==1) {
push(@{$sim{$qid}},"$sid,$pm,$pe,$pi,$s");
$lastpm=$pm;$lastpe=$pe;
}
else {
if (($lastpm==$pm) && ($lastpe==$pe)) {
push(@{$sim{$qid}},"$sid,$pm,$pe,$pi,$s");
}
else {last LINE;}
}
}
} else {write_log("$sid gindex2 not defined; lineid: $_\n");}
}
}
foreach my $qid (@{$gindex{$tb}}) {
my ($sStart,$sEnd);
if (defined $blastquery{$qid}) {
($sStart,$sEnd)=split (";",$blastquery{$qid});
} else {next;}
my ($lastpm,$lastpe);
my $hit_id=0;
LINE:foreach ($sStart..$sEnd) {
my ($s,$sid,$pm,$pe,$pi)=(&getline_from_bpofile($_))[0,3,5,6,7];
if (defined $gindex2{$sid}) {
if ($gindex2{$sid} eq $ta) {
$hit_id++;
if ($hit_id==1) {
push(@{$sim{$qid}},"$sid,$pm,$pe,$pi,$s");
$lastpm=$pm;$lastpe=$pe;
}
else {
if (($lastpm==$pm) && ($lastpe==$pe)) {
push(@{$sim{$qid}},"$sid,$pm,$pe,$pi,$s");
}
else {last LINE;}
}
}
} else {write_log("$sid gindex2 not defined; lineid: $_\n");}
}
}
foreach my $q (keys %sim) {
foreach (@{$sim{$q}}) {
my @bla=split (',',$_);
next if($bla[1].'e'.$bla[2] > $pv_cutoff || $bla[3]< $pi_cutoff);
if($pmatch_cutoff) {
next if(&simspan($bla[4]) < $pmatch_cutoff);
}
push(@{$best{$q}}, $bla[0]);
$pvalue{$q.' '.$bla[0]} = $bla[1].'e'.$bla[2];
}
}
my @b = keys %best;
write_log(scalar(@b)." sequences have best hits from the other species\n");
return &matrix(\%best, \%pvalue);
} ## makeOrtholog
# This subroutine is used to choose two-way hits among one-way hits (best
# hits between two species or better hits within one species),
# calculate the weight between two nodes (minus logrithm of the p-value,
# or $MAX_WEIGHT_DEFAULT for p-value 0 ), and calculate average
# weight among all inparalogs within one species or all orthologs between
# two species. (Weighting process takes place in the main script)
# Two Arguments:
# 1. Reference Variable: reference to a hash which stores all the possible
# gene pairs (one-way best hit, or better hit).
# 2. Reference Variable: reference to a hash which stores the pvalue for
# the gene pairs.
# Last modified: 10/02/06
sub matrix {
my %best = %{$_[0]};
my %pvalue = %{$_[1]};
my (%edge, %weight);
my $count=0;
my $sumw=0;
foreach my $query (sort keys %best) {
foreach my $subject (@{$best{$query}}) {
next if($weight{$query.' '.$subject});
my $flag = 0;
foreach my $q (@{$best{$subject}}) {
if($q eq $query) { $flag = 1; }
}
if($flag == 1) {
push (@{$edge{$query}}, $subject);
push (@{$edge{$subject}}, $query);
#use -logP as weights and treat P=0 as -logP=$maximum_weight (DEFAULT=300)
my ($pv1, $pv2);
if($pvalue{$query.' '.$subject} == 0) {
$pv1 = $maximum_weight;
}else {
$pv1 = -log($pvalue{$query.' '.$subject})/log(10);
}
if($pvalue{$subject.' '.$query} == 0) {
$pv2 = $maximum_weight;
}else {
$pv2 = -log($pvalue{$subject.' '.$query})/log(10);
}
write_bbh("$query $subject ".$pvalue{$query.' '.$subject}." ".$pvalue{$subject.' '.$query}."\n");
my $w = ($pv1+$pv2)/2;
$sumw += $w;
$count++;
# use averaged score as edge weight
$weight{$query.' '.$subject} = sprintf("%.3f", $w);
$weight{$subject.' '.$query} = sprintf("%.3f", $w);
}
}
}
my $avgw = 'N/A';
if ($count) {
$avgw = $sumw/$count;
}
my $no_tmp = scalar(keys %weight)/2;
write_log("$no_tmp sequence pairs were identified as Reciprocal Better/Best Hit\n");
return (\%edge, \%weight, $avgw, $sumw, $count);
} ## matrix
# This subroutine is used by the subroutine makeInparalog,
# to solve the pv_tie problem. It rearranges the pv-tied blast hits
# so that the hits from a specific taxon are moved higher than hits from
# other species.
# Three Arguments:
# 1. Number Variable: starting line id (or similarity id) of bpo file (blast
# parse out file)
# 2. Number Variable: ending line id (or similarity id) of bpo file (blast
# parse out file)
# 3. String Variable: taxon
# Last modified: 07/20/04
sub pvtie_sort {
my ($sStart,$sEnd,$taxon)=@_;
my (@sorted_simid,@tmp);
my ($lastpm,$lastpe)=(getline_from_bpofile($sStart))[5,6];
foreach ($sStart..$sEnd) {
my ($s,$sid,$pm,$pe,$pi)=(&getline_from_bpofile($_))[0,3,5,6,7];
if (($lastpm==$pm) && ($lastpe==$pe)) {
if ($gindex2{$sid} eq $taxon) {
push (@sorted_simid,$s);
}
else {
push (@tmp,$s);
}
}
else {
if (scalar(@tmp)>0) {
push (@sorted_simid,@tmp);
@tmp=();
}
if ($gindex2{$sid} eq $taxon) {
push (@sorted_simid,$s);
}
else {
push (@tmp,$s);
}
}
$lastpm=$pm;$lastpe=$pe;
}
if (scalar(@tmp)>0) {push (@sorted_simid,@tmp);}
return @sorted_simid;
} ## pvtie_sort
# This subroutine, together with matchlen, are used to calculate
# how much of the query sequences match each other.
# One Argument:
# 1. Number Variable: line id (or similarity id) of bpo file (blast
# parse out file)
# Last modified: 07/21/04
sub simspan {
my $s = $_[0];
my (%sub_start, %sub_length, %query_start, %query_length);
my @hsp=split ('\.',(&getline_from_bpofile($s))[8]);
foreach (@hsp) {
if (/(\d+)\:(\d+)\-(\d+)\:(\d+)\-(\d+)/) {
$sub_start{$1}=$4;
$sub_length{$1}=$5-$4+1;
$query_start{$1}=$2;
$query_length{$1}=$3-$2+1;
}
}
my $match_lengths = &matchlen(\%sub_start,\%sub_length);
my $match_lengthq = &matchlen(\%query_start,\%query_length);
my ($lengthq,$lengths)=(&getline_from_bpofile($s))[2,4]; # June 3
if($lengths >= $lengthq) {
return 100*$match_lengthq/$lengthq;
}else{
return 100*$match_lengths/$lengths;
}
} ##simspan
# This subroutine, together with simspan, are used to calculate
# how much of the query sequences match each other.
# Two Arguments:
# 1. Reference Variable: reference to an hash which stores the starting
# position of each HSP.
# 2. Reference Variable: reference to an hash which stores the length
# of each HSP.
# Last modified: 07/19/04
sub matchlen {
my %start = %{$_[0]};
my %length = %{$_[1]};
my @starts = sort{$start{$a}<=>$start{$b}} (keys %start);
return $length{$starts[0]} if(scalar(@starts)==1);
my $i=1;
my $match_length = $length{$starts[0]};
my $pos = $length{$starts[0]} + $start{$starts[0]} ;
while($i<scalar(@starts)) {
if($length{$starts[$i]} + $start{$starts[$i]} <= $pos) {
$i++;
next;
}
if($start{$starts[$i]}> $pos) {
$match_length += $length{$starts[$i]};
$pos = $start{$starts[$i]} + $length{$starts[$i]};
}else {
$match_length += $length{$starts[$i]} - ($pos - $start{$starts[$i]});
$pos = $start{$starts[$i]} + $length{$starts[$i]};
}
$i++;
}
return $match_length;
} ## matchlen
# Last modified: 07/22/04
sub printHelp {
my (@foo) = <DATA>;
print STDERR "OrthoMCLight V$VERSION\n";
print STDERR @foo;
exit 1;
}
######################################USAGE OF ORTHOMCLIGHT.PL###################################
__DATA__
Copyright (C) 2004-2006 by University of Pennsylvania,
Philadelphia, PA USA. All rights reserved.
Before orthomclight.pl can be used, some variables
(including directory variables or parameter variables)
in orthomclight_module.pm need to be set, as described in
README.
Usage: orthomclight.pl --mode 1,2,3,4 or 5 <tagged arguments>
Modes:
~~~~~~
1: OrthoMCL analysis from FASTA files
% orthomclight.pl --mode 1 --fa_files Ath.fa,Hsa.fa,Sce.fa
2: OrthoMCL analysis based on former OrthoMCL run. No BLAST or BLAST
parsing performed.
% orthomclight.pl --mode 2 --former_run_dir Sep_8 --inflation 1.4
3: OrthoMCL analysis from user-provided BLAST result. No BLAST
performed.
% orthomclight.pl --mode 3 --blast_file AtCeHs_blast.out --gg_file
AtCeHs.gg
4: OrthoMCL analysis based on user-provided BPO (BLAST PARSE OUT)
file and GG (Genome-Gene Index) file
% orthomclight.pl --mode 4 --bpo_file AtCeHs.bpo --gg_file AtCeHs.gg
5: OrthoMCL analysis based on matrix of former OrthoMCL run, but with
LESS genomes
% orthomclight.pl --mode 5 --former_run_dir Sep_8 --taxa_file AtCeHs.gg
--inflation=1.1
Arguments:
~~~~~~~~~~
fa_files=<String> Protein FASTA file names, with each file
containing protein sequences from one species,
separated by comma(e.g. "Eco.fa,Sce.fa,Afu.fa")
pv_cutoff=<Float> P-Value or E-Value Cutoff in BLAST search and/or
ortholog clustering, 1e-5 (DEFAULT).
pi_cutoff=<Int> Percent Identity Cutoff <0-100> in ortholog
clustering, 0 (DEFAULT).
pmatch_cutoff=<Int> Percent Match Cutoff <0-100> in ortholog
clustering, 0 (DEFAULT).
inflation=<Float> Markov Inflation Index, used in MCL algorithm,
1.5 (DEFAULT). Increasing this index increases
cluster tightness, and the number of clusters.
former_run_dir=<String> Former run directory, required in Mode 2, e.g.
"July_21". Then the blast result file and bpo
file in former run directory will be used
instead of running from the very beginning.
blast_file=<String> Blast out file provided by user, required in
Mode 3. It will be parsed into BPO file, and
further used for ortholog clustering.
bpo_file=<String> BPO (Blast Parse Out) file provided by user,
required in Mode 4. Please refer to README
about its format.
gg_file=<String> GG (Genome Gene mapping) file provided by user,
required in Mode 3 & 4. Please refer to
README about its format.
taxa_file=<String> TAXA file provided by user, required in Mode 5.
Please refer to README about its
format.
num_threads=<Int> Number of threads when running the MCL command.