-
Notifications
You must be signed in to change notification settings - Fork 129
/
cd-hit-2d-para.pl
executable file
·483 lines (425 loc) · 12.3 KB
/
cd-hit-2d-para.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
#!/usr/bin/env perl
# =============================================================================
# CD-HIT
# http://cd-hit.org/
# http://bioinformatics.burnham.org/cd-hi
#
# program written by
# Weizhong Li
# UCSD, San Diego Supercomputer Center
# La Jolla, CA, 92093
# Email [email protected]
# =============================================================================
use strict;
no strict "refs";
my $script_name = $0;
my $script_dir = $0;
$script_dir =~ s/[^\/]+$//;
$script_dir = "./" unless ($script_dir);
chop($script_dir);
my $arg;
my $in;
my $indb2;
my $out;
my $arg_pass = "";
my $para = "";
my $host_no = 0;
my @hosts = ();
my $cd_hit_div_exe = "$script_dir/cd-hit-div";
my $cd_hit_div_pl = "$script_dir/cd-hit-div.pl";
my $cd_hit_2d_exe = "$script_dir/cd-hit-2d";
my $cd_hit_est_2d_exe = "$script_dir/cd-hit-est-2d";
my $clstr_merge_exe = "$script_dir/clstr_merge.pl";
my $seg_no = 2;
my $seg_no2 = 8;
my $restart_in = "";
my $queue = 0;
my $local_cpu = 0;
my $queue_type = "PBS";
my $prog = "cd-hit-2d";
my %stable_files = ();
while ($arg=shift) {
if ($arg eq "-h" ) { print_usage();}
elsif ($arg eq "-i" ) { $in = shift; }
elsif ($arg eq "-i2") { $indb2 = shift; }
elsif ($arg eq "-o" ) { $out = shift; }
elsif ($arg eq "--B") { $para = shift; }
elsif ($arg eq "--L") { $local_cpu = shift; }
elsif ($arg eq "--P") { $prog = shift; }
elsif ($arg eq "--S") { $seg_no = shift; }
elsif ($arg eq "--S2") { $seg_no2 = shift; }
elsif ($arg eq "--Q" ) { $queue = shift; }
elsif ($arg eq "--T" ) { $queue_type = shift; }
elsif ($arg eq "--R" ) { $restart_in = shift; }
else {$arg_pass .= " $arg "; }
}
($in and $out) || print_usage();
if (not ($seg_no2 >1)) {
die "You are not dividing 2nd input db, parallel mode won't help";
}
if ($prog eq "cd-hit-est") {
$cd_hit_2d_exe = $cd_hit_est_2d_exe;
}
my $pwd = `pwd`; chop($pwd);
my $work_dir = "$out.cd-hit-para-tmp";
my $restart_file = "$out.restart";
my $indiv = "$work_dir/$in.div";
my $indiv2 = "$work_dir/$indb2.div";
my @commands = ();
my @command_status = ();
my $command_no = 0;
my $cmd;
my ($i, $j, $k, $i1, $j1, $k1);
# readin a list of hosts
if ($para) {
open(PARA, "$para") || die "can not open $para";
while(my $ll= <PARA>){
chop($ll); $ll =~ s/\s//g;
next unless ($ll);
push(@hosts, $ll); $host_no++;
}
close(PARA);
}
if ($queue) {
for ($i=0; $i<$queue; $i++) {
push(@hosts, "queue_host.$i");
}
$host_no = $queue;
}
if ($local_cpu) {
for ($i=0; $i<$local_cpu; $i++) {
push(@hosts, "localhost.$i");
}
$host_no = $local_cpu;
}
die "no host" unless $host_no;
if ($host_no > $seg_no2) {
print "$indb2 was divided into $seg_no2 pieces, ";
print "Your number of hosts ($host_no) is more than $seg_no, ";
print "So, not all of hosts will be used\n";
}
if (-e $restart_in) {
read_restart();
}
else {
$cmd = `mkdir $work_dir`;
assign_commands();
write_restart();
}
#dbdiv run on master node?
if ($command_status[0] eq "wait") {
$cmd = `$commands[0]`;
$command_status[0] = "done";
write_restart();
for ($i=0; $i<$seg_no; $i++) {
my $idb = "$indiv-$i";
$stable_files{$idb} = 1;
}
}
if ($command_status[1] eq "wait") {
$cmd = `$commands[1]`;
$command_status[1] = "done";
write_restart();
for ($i=0; $i<$seg_no2; $i++) {
my $idb = "$indiv2-$i";
$stable_files{$idb} = 1;
}
}
#main runing loop
my $sleep_time = 1;
while(1) {
#refresh job status by checking output files
#check whether all jobs are done or not
my $finish_flag = 1;
my $status_change = 0;
for ($i=2; $i<$command_no; $i++) {
next if ($command_status[$i] eq "done");
$finish_flag = 0;
my $tcmd = $commands[$i];
my $output = "";
if ($tcmd =~ / -o\s+(\S+)/) {
$output = $1;
if ((-s $output) or (-s "$output.clstr")) {
$command_status[$i] = "done";
$status_change = 1;
}
}
}
if ($status_change) {
write_restart();
}
else {
sleep($sleep_time); print ".";
}
last if $finish_flag;
my $job_sent = 0;
for ($i=2; $i<$command_no; $i++) {
next if ($command_status[$i] eq "done");
next if ($command_status[$i] eq "run");
my $tcmd = $commands[$i];
my $in1 = "";
my $in2 = "";
my $out_done = "";
if ($tcmd =~ / -i\s+(\S+)/ ) {$in1 = $1;}
if ($tcmd =~ / -i2\s+(\S+)/) {$in2 = $1;}
if ($tcmd =~ / -o\s+(\S+)/ ) {$out_done = "$1.done";}
my $input_flag = 0;
if (($in1 =~ /\S/) and ($in2 =~ /\S/)) {
$input_flag = 1 if ((-s $in1) and (-s $in2));
}
elsif ($in1 =~ /\S/) {
$input_flag = 1 if (-s $in1);
}
else {
die "Error at $tcmd\n";
}
next unless $input_flag;
#now input files are ready, wait
wait_stable_file($in1);
wait_stable_file($in2);
my $thost_idx = wait_for_available_host();
my $thost = $hosts[$thost_idx];
my $tsh = "$work_dir/$out.$$.$thost_idx.sh";
my $tlock = "$work_dir/$out.$$.$thost_idx.lock";
my $trm = "";
$trm = "rm -f $in2" if ($in2 =~ /\S/);
open(TSH, "> $tsh") || die;
$cmd = `date > $tlock`;
print TSH <<EOD;
date > $tlock
$tcmd
$trm
rm -f $tlock
date > $out_done
EOD
close(TSH);
if ($local_cpu) {
$cmd = `sh $tsh >/dev/null 2>&1 &`;
$command_status[$i] = "run";
print "run at $thost $tcmd\n";
}
elsif ($queue and ($queue_type eq "PBS")) {
my $t = "para-$thost_idx";
open(QUEUE,"| qsub -N $t -o $t.log -e $t.err");
print QUEUE "cd $pwd; sh $tsh";
close(QUEUE);
$command_status[$i] = "run";
}
elsif ($queue and ($queue_type eq "SGE")) {
my $t = "para-$thost_idx";
open(QUEUE,"| qsub -N $t");
print QUEUE <<EOD;
#!/bin/sh
#$ -S /bin/bash
#$ -v PATH
cd $pwd
sh $tsh
EOD
close(QUEUE);
$command_status[$i] = "run";
}
else {
$cmd = `ssh -xqf $thost 'cd $pwd; sh $tsh >/dev/null 2>&1 &'`;
$command_status[$i] = "run";
print "run at $thost $tcmd\n";
}
$sleep_time = 1;
$job_sent = 1;
last;
}
if ((not $job_sent) and ($sleep_time < 60)) {
$sleep_time +=5;
}
} ############ main run loop
######## merge all .clstr file
my $out_clstr = "$out.clstr";
if (not -s $out_clstr) {
my @indb2_left = ();
for ($i=0; $i<$seg_no; $i++) {
my @t_clstr = ();
for ($j=0; $j<$seg_no2; $j++) {
my $tclstr = "$indiv2-$j.vs.$i.clstr";
if (-s $tclstr) {push(@t_clstr,$tclstr); }
else {die "No file $tclstr\n";}
if ($i==($seg_no-1)) {
push(@indb2_left, "$indiv2-$j.vs.$i");
}
}
#merge
my $tclstrs = join(" ", @t_clstr);
if (@t_clstr > 1) {
print "$clstr_merge_exe $tclstrs >> $out_clstr\n";
$cmd = `$clstr_merge_exe $tclstrs >> $out_clstr`;
}
else {
print "cat $tclstrs >> $out_clstr";
$cmd = `cat $tclstrs >> $out_clstr`;
}
}
my $out_clstr_ren = "$out.clstr.$$";
open(TMP, $out_clstr) || die;
open(OTMP, "> $out_clstr_ren") || die;
my $no = 0;
my $cno;
my $ll;
while($ll=<TMP>){
if ($ll =~ /^>Cluster (\d+)/) {
print OTMP ">Cluster $no\n"; $no++;
$cno = 0;
}
else {
$ll =~ s/^\d+/$cno/;
print OTMP $ll;
$cno++;
}
}
close(TMP);
close(OTMP);
sleep(10);
$cmd = `mv $out_clstr_ren $out_clstr`;
my $reps = join(" ", @indb2_left);
$cmd = `cat $reps > $out`;
}
if (1) {
$cmd = `grep CPU $work_dir/*log`;
my @lls = split(/\n/, $cmd);
my $cpu = 0;
my $ll;
foreach $ll (@lls) {
if ($ll =~ /CPU\s+time\s+(\d+)/) {
$cpu += $1;
}
}
print "Total CPU time: $cpu\n";
}
sub wait_for_available_host {
my ($i, $j, $k);
my $sleep = 30;
while(1) {
for ($i=0; $i<$host_no; $i++) {
my $thost = $hosts[$i];
my $tlock = "$work_dir/$out.$$.$i.lock";
next if (-e $tlock);
return $i;
}
sleep($sleep);
$sleep +=30;
if ($sleep >= 300) { $sleep = 30; }
}
}
########## END wait_for_available_host
sub wait_stable_file {
my ($i, $j, $k);
my $f = shift;
return if ($stable_files{$f});
return unless (-e $f);
if (-e "$f.done") { $stable_files{$f} = 1; return; }
my $size0 = -s $f;
while(1) {
sleep(10);
my $size1 = -s $f;
if ($size0 == $size1) { $stable_files{$f} = 1; last; }
else {$size0 = $size1; }
}
}
########## END wait_stable_file
sub write_restart {
my ($i, $j, $k);
open(RES, "> $restart_file") || die;
for ($i=0; $i<$command_no; $i++) {
print RES "$commands[$i]\n$command_status[$i]\n";
}
close(RES);
}
########## END write_restart
sub assign_commands {
my ($i, $j, $k);
my $cmd;
my ($idb, $idbo, $jdb, $jdbo, $idbout, $idblog, $jdblog);
$command_no = 0;
if ($seg_no >1) {$cmd = "$cd_hit_div_exe -i $in -o $indiv -div $seg_no";}
elsif ($seg_no==1) {$cmd = "ln -s ../$in $indiv-0";}
else {die "Wrong --S option";}
push(@commands, $cmd);
push(@command_status, "wait");
$command_no++;
if ($seg_no2 >1){$cmd = "$cd_hit_div_pl $indb2 $indiv2 $seg_no2";}
elsif ($seg_no2==1){$cmd = "ln -s ../$indb2 $indiv2-0"; }
push(@commands, $cmd);
push(@command_status, "wait");
$command_no++;
for ($j=0; $j<$seg_no2; $j++) {
#j for db2
$jdb = "$indiv2-$j";
$jdblog = "$jdb.log";
for ($i=0; $i<$seg_no; $i++) {
$idb = "$indiv-$i";
$jdbo = "$indiv2-$j.vs.$i";
$cmd = "$cd_hit_2d_exe -i $idb -i2 $jdb -o $jdbo $arg_pass >> $jdblog";
push(@commands, $cmd);
push(@command_status, "wait");
$command_no++;
$jdb = $jdbo;
}
}
} #### END assign_commands
sub read_restart {
$command_no = 0;
open(RRRR, "$restart_in") || die;
my $ll;
while ($ll = <RRRR>) {
chop($ll);
push(@commands, $ll);
$ll = <RRRR>;
chop($ll);
push(@command_status, $ll);
$command_no++;
}
close(RRRR);
}
########## END read_restart
sub print_usage {
print <<EOD;
Usage: $script_name options
This script divide a big clustering job into pieces and submit
jobs to remote computers over a network to make it parallel.
After all the jobs finished, the script merge the clustering
results as if you just run a single cd-hit-2d or cd-hit-est-2d.
You can also use it to divide big jobs on a single computer if
your computer does not have enough RAM (with -L option).
Requirements:
1 When run this script over a network, the directory where you
run the scripts and the input files must be available on
all the remote hosts with identical path.
2 If you choose "ssh" to submit jobs, you have to have
passwordless ssh to any remote host, see ssh manual to
know how to set up passwordless ssh.
3 I suggest to use queuing system instead of ssh,
I currently support PBS and SGE
4 cd-hit-2d cd-hit-est-2d cd-hit-div cd-hit-div.pl must be
in same directory where this script is in.
Options
-i input filename for 1st db in fasta format, required
-i2 input filename for 2nd db in fasta format, required
-o output filename, required
--P program, "cd-hit-2d" or "cd-hit-est-2d", default "cd-hit-2d"
--B filename of list of hosts,
requred unless -Q or -L option is supplied
--L number of cpus on local computer, default $local_cpu
when you are not running it over a cluster, you can use
this option to divide a big clustering jobs into small
pieces, I suggest you just use "--L 1" unless you have
enough RAM for each cpu
--S Number of segments to split 1st db into, default $seg_no
--S2 Number of segments to split 2nd db into, default $seg_no2
--Q number of jobs to submit to queue queuing system, default $queue
by default, the program use ssh mode to submit remote jobs
--T type of queuing system, "PBS", "SGE" are supported, default $queue_type
--R restart file, used after a crash of run
-h print this help
More cd-hit-2d/cd-hit-est-2d options can be speicified in command line
Questions, bugs, contact Weizhong Li at liwz\@sdsc.edu
EOD
exit;
}
#### END print_usage