forked from DaehwanKimLab/centrifuge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcentrifuge-BuildSharedSequence.pl
executable file
·526 lines (470 loc) · 11.8 KB
/
centrifuge-BuildSharedSequence.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
#!/usr/bin/env perl
use strict ;
use Getopt::Long;
use File::Basename;
my $usage = "perl ".basename($0)." file_list [-prefix tmp -kmerSize 53 -kmerPortion 0.01 -nucmerIdy 99 -overlap 250 [-fragment] ]" ;
my @fileNames ; # Assume the genes for each subspecies are concatenated.
my @used ;
my $i ;
my $j ;
my $k ;
my %globalKmer ;
my $kmerSize = 53 ;
my $useKmerPortion = 0.01 ;
my %localKmer ;
my $id = 0 ;
my $kmer ;
my %chroms ;
my %shared ;
my $id = "" ;
my $seq = "" ;
my $index ;
my $prefix = "tmp";
my %sharedKmerCnt ;
my $nucmerIdy = 99 ;
my $overlap = 250 ;
my $fragment = 0 ;
my $jellyfish = "jellyfish";
#print `jellyfish --version`;
GetOptions (
"prefix=s" => \$prefix,
"kmerSize=s" => \$kmerSize,
"kmerPortion=s" => \$useKmerPortion,
"nucmerIdy=s" => \$nucmerIdy,
"overlap=s" => \$overlap,
"fragment" => \$fragment,
"jellyfish=s" => \$jellyfish)
or die("Error in command line arguments. \n\n$usage");
die "$usage\n" if ( scalar( @ARGV ) == 0 ) ;
open FP1, $ARGV[0] ;
# Create the temporary files, while making sure the header id is unique within each file
my $listSize = 0 ;
while ( <FP1> )
{
chomp ;
open FP2, $_ ;
my $fileName = $prefix."_".$listSize.".fa" ;
open FPtmp, ">$fileName" ;
my $chromCnt = 0 ;
while ( <FP2> )
{
if ( /^>/ )
{
s/\s/\|$chromCnt / ;
print FPtmp ;
++$chromCnt ;
}
else
{
print FPtmp ;
}
}
++$listSize ;
}
# Read in the file names
#while ( <FP1> )
#{
# chomp ;
# push @fileNames, $_ ;
# push @used, 0 ;
# ++$index ;
#}
#close( FP1 ) ;
for ( my $i = 0 ; $i < $listSize ; ++$i )
{
my $fileName = $prefix."_".$i.".fa" ;
push @fileNames, $fileName ;
push @used, 1 ;
++$index ;
}
# Count and select kmers
print "Find the kmers for testing\n" ;
system_call("$jellyfish count -o tmp_$prefix.jf -m $kmerSize -s 5000000 -C -t 8 @fileNames") ;
system_call("$jellyfish dump tmp_$prefix.jf > tmp_$prefix.jf_dump") ;
srand( 17 ) ;
open FP1, "tmp_$prefix.jf_dump" ;
open FP2, ">tmp_$prefix.testingKmer" ;
while ( <FP1> )
{
my $line = $_ ;
$kmer = <FP1> ;
#chomp $kmer ;
#++$testingKmer{ $kmer} if ( rand() < $useKmerPortion ) ;
print FP2 "$line$kmer" if ( rand() < $useKmerPortion ) ;
}
close FP1 ;
close FP2 ;
print "Get the kmer profile for each input file\n" ;
for ( $i = 0 ; $i < scalar( @fileNames ) ; ++$i )
{
my $fileName = $fileNames[ $i ] ;
system_call("$jellyfish count --if tmp_$prefix.testingKmer -o tmp_$prefix.jf -m $kmerSize -s 5000000 -C -t 8 $fileName") ;
system_call("$jellyfish dump tmp_$prefix.jf > tmp_$prefix.jf_dump") ;
open FP1, "tmp_$prefix.jf_dump";
while ( <FP1> )
{
chomp ;
my $cnt = substr( $_, 1 ) ;
if ( $cnt eq "0" )
{
$kmer = <FP1> ;
next ;
}
#print "$cnt\n" ;
$kmer = <FP1> ;
chomp $kmer ;
$localKmer{$i}->{$kmer} = 1 ;
}
close FP1 ;
}
# Get the genome sizes
sub GetGenomeSize
{
open FPfa, $_[0] ;
my $size = 0 ;
while ( <FPfa> )
{
next if ( /^>/ ) ;
$size += length( $_ ) - 1 ;
}
close FPfa ;
return $size ;
}
my $longestGenome = 0 ;
for ( $i = 0 ; $i < scalar( @fileNames ) ; ++$i )
{
my $size = GetGenomeSize( $fileNames[$i] ) ;
if ( $size > $longestGenome )
{
$longestGenome = $size ;
}
}
#for ( $i = 0 ; $i < scalar( @fileNames ) ; ++$i )
print "Begin merge files\n" ;
my $maxSharedKmerCnt = -1 ;
while ( 1 )
{
# Find the suitable files
my @maxPair ;
my $max = 0 ;
print "Selecting two genomes to merge.\n" ;
foreach $i (keys %localKmer )
{
foreach $j ( keys %localKmer )
{
next if ( $i <= $j ) ;
my $cnt = 0 ;
if ( defined $sharedKmerCnt{ "$i $j" } )
{
$cnt = $sharedKmerCnt{ "$i $j" }
}
else
{
foreach $kmer ( keys %{$localKmer{ $i } } )
{
#print $kmer, "\n" ;
if ( defined $localKmer{ $j }->{ $kmer} )
{
++$cnt ;
}
}
$sharedKmerCnt{ "$i $j" } = $cnt ;
}
if ( $cnt > $max )
{
$max = $cnt ;
$maxPair[0] = $i ;
$maxPair[1] = $j ;
}
}
}
$maxSharedKmerCnt = $max if ( $maxSharedKmerCnt == -1 ) ;
last if ( $max == 0 || $max < $maxSharedKmerCnt * 0.01 ) ;
my @commonRegion ;
my $fileNameA ;
my $fileNameB ;
$i = $maxPair[0] ;
$j = $maxPair[1] ;
if ( $i < scalar( @fileNames ) )
{
$fileNameA = $fileNames[ $i ] ;
}
else
{
$fileNameA = $prefix."_".$i.".fa" ;
}
if ( $j < scalar( @fileNames ) )
{
$fileNameB = $fileNames[ $j ] ;
}
else
{
$fileNameB = $prefix."_".$j.".fa" ;
}
if ( GetGenomeSize( $fileNameA ) < 0.01 * $longestGenome || GetGenomeSize( $fileNameB ) < 0.01 * $longestGenome )
{
last ;
}
my $nucmerC = 3 * $overlap ;
my $nucmerG = 10 ;
my $nucmerB = 10 ;
if ( $i >= scalar( @fileNames ) && $j >= scalar( @fileNames ) )
{
$nucmerG = 5 ;
$nucmerB = 5 ;
}
print "nucmer --maxmatch --coords -l $kmerSize -g $nucmerG -b $nucmerB -c $nucmerC -p nucmer_$prefix $fileNameA $fileNameB\n" ;
my $nucRet = system("nucmer --maxmatch --coords -l $kmerSize -g $nucmerG -b $nucmerB -c $nucmerC -p nucmer_$prefix $fileNameA $fileNameB") ; # if the call to nucmer failed, we just not compress at all.
open FPCoords, "nucmer_$prefix.coords" ;
my $line ;
$line = <FPCoords> ;
$line = <FPCoords> ;
$line = <FPCoords> ;
$line = <FPCoords> ;
$line = <FPCoords> ;
#1 5195 | 1 5195 | 5195 5195 | 99.98 | gi|385223048|ref|NC_017374.1| gi|385230889|ref|NC_017381.1|
print "Merging $fileNameA $fileNameB\n" ;
my $cnt = 0 ;
while ( <FPCoords> )
{
chomp ;
$line = $_ ;
my @cols = split /\s+/, $line ;
shift @cols if ( $cols[0] eq "" ) ;
next if ( $cols[6] <= 3 * $overlap || $cols[9] < $nucmerIdy ) ;
++$cnt ;
my $ind = scalar( @commonRegion ) ;
push @{ $commonRegion[$ind] }, ( $cols[11], $cols[0] + $overlap, $cols[1] - $overlap ) ;
if ( $cols[3] < $cols[4] )
{
push @{ $commonRegion[ $ind ] }, ( $cols[12], $cols[3] + $overlap, $cols[4] - $overlap ) ;
}
else
{
push @{ $commonRegion[ $ind ] }, ( $cols[12], $cols[4] + $overlap, $cols[3] - $overlap ) ;
}
}
last if ( $cnt == 0 ) ;
close FPCoords ;
my $outputSeq = "" ;
my $outputHeader = ">${prefix}_${index}" ;
# Use fileNameA to represent the shared sequences
if ( $fragment == 0 )
{
# Just a big chunk.
open FP1, $fileNameA ;
while ( <FP1> )
{
chomp ;
next if ( /^>/ ) ;
$outputSeq .= $_ ;
#print "$_\n$outputSeq\n" ;
}
close FP1 ;
}
else
{
open FP1, $fileNameA ;
$id = "" ;
$seq = "" ;
undef %chroms ;
undef %shared ;
while ( <FP1> )
{
chomp ;
if ( /^>/ )
{
$chroms{ $id } = $seq if ( $id ne "" ) ;
$id = ( split /\s+/, substr( $_, 1 ) )[0] ;
#print $id, "\n" ;
$seq = "" ;
@#{ $shared{ $id } } = length( $seq ) + 1 ;
}
else
{
$seq .= $_ ;
}
}
$chroms{ $id } = $seq if ( $id ne "" ) ;
@#{ $shared{ $id } } = length( $seq ) + 1 ;
close FP1 ;
for ( $i = 0 ; $i < scalar( @commonRegion) ; ++$i )
{
#print "hi $i $commonRegion[$i]->[1] $commonRegion[$i]->[2]\n" ;
my $tmpArray = \@{ $shared{ $commonRegion[$i]->[0] } } ;
$commonRegion[$i]->[1] -= $overlap if ( $commonRegion[$i]->[1] == $overlap + 1 ) ;
$commonRegion[$i]->[2] += $overlap if ( $commonRegion[$i]->[2] + $overlap == length( $chroms{ $commonRegion[$i]->[0] } ) ) ;
for ( $j = $commonRegion[$i]->[1] - 1 ; $j < $commonRegion[$i]->[2] ; ++$j ) # Shift the coordinates
{
$tmpArray->[$j] = 1 ;
}
}
# Print the information of genome A, including the shared part
my $fileName = $prefix."_".$index.".fa" ;
open fpOut, ">$fileName" ;
foreach $i (keys %chroms )
{
my $tmpArray = \@{ $shared{ $i } } ;
my $len = length( $chroms{ $i } ) ;
my $header = ( split /\|Range:/, $i )[0] ;
my $origStart = ( split /-/, ( ( split /\|Range:/, $i )[1] ) )[0] ;
for ( $j = 0 ; $j < $len ; )
{
if ( $tmpArray->[$j] == 1 )
{
my $start = $j ;
my $end ;
for ( $end = $j + 1 ; $end < $len && $tmpArray->[$end] == 1 ; ++$end )
{
;
}
--$end ;
my $rangeStart = $origStart + $start ;
my $rangeEnd = $origStart + $end ;
print fpOut ">$header|Range:$rangeStart-$rangeEnd shared\n" ;
print fpOut substr( $chroms{$i}, $start, $end - $start + 1 ), "\n" ;
$j = $end + 1 ;
}
else
{
my $start = $j ;
my $end ;
for ( $end = $j + 1 ; $end < $len && $tmpArray->[$end] == 0 ; ++$end )
{
;
}
--$end ;
my $rangeStart = $origStart + $start ;
my $rangeEnd = $origStart + $end ;
print fpOut ">$header|Range:$rangeStart-$rangeEnd non-shared\n" ;
print fpOut substr( $chroms{$i}, $start, $end - $start + 1 ), "\n" ;
$j = $end + 1 ;
}
}
}
} # end if fragment. There might be bugs in the fragment mode
# Print the sequence from genome B, only including the non-shared part
open FP1, $fileNameB ;
$id = "" ;
$seq = "" ;
undef %chroms ;
undef %shared ;
while ( <FP1> )
{
chomp ;
if ( /^>/ )
{
$chroms{ $id } = $seq if ( $id ne "" ) ;
$id = ( split /\s+/, substr( $_, 1 ) )[0] ;
$seq = "" ;
@#{ $shared{ $id } } = length( $seq ) + 1 ;
}
else
{
$seq .= $_ ;
}
}
$chroms{ $id } = $seq if ( $id ne "" ) ;
@#{ $shared{ $id } } = length( $seq ) + 1 ;
close FP1 ;
for ( $i = 0 ; $i < scalar( @commonRegion) ; ++$i )
{
my $tmpArray = \@{ $shared{ $commonRegion[$i]->[3] } } ;
$commonRegion[$i]->[4] -= $overlap if ( $commonRegion[$i]->[4] == $overlap + 1 ) ;
$commonRegion[$i]->[5] += $overlap if ( $commonRegion[$i]->[5] + $overlap == length( $chroms{ $commonRegion[$i]->[3] } ) ) ;
for ( $j = $commonRegion[$i]->[4] - 1 ; $j < $commonRegion[$i]->[5] ; ++$j )
{
$tmpArray->[$j] = 1 ;
}
}
foreach $i (keys %chroms )
{
my $tmpArray = \@{ $shared{ $i } } ;
my $len = length( $chroms{ $i } ) ;
my $header = ( split /\|Range:/, $i )[0] ;
my $origStart = ( split /-/, ( ( split /\|Range:/, $i )[1] ) )[0] ;
for ( $j = 0 ; $j < $len ; )
{
if ( $tmpArray->[$j] == 1 )
{
++$j ;
next ;
}
my $start = $j ;
my $end ;
for ( $end = $j + 1 ; $end < $len && $tmpArray->[$end] == 0 ; ++$end )
{
;
}
--$end ;
$j = $end + 1 ;
next if ( $end - $start < $overlap ) ;
my $rangeStart = $origStart + $start ;
my $rangeEnd = $origStart + $end ;
if ( $fragment == 0 )
{
#print length( $outputSeq ), "\n" ;
$outputSeq .= substr( $chroms{$i}, $start, $end - $start + 1 ) ;
#print length( $outputSeq ), "\n" ;
}
else
{
my $fileName = $prefix."_".$index.".fa" ;
#open fpOut, ">>$fileName" ;
print fpOut ">$header|Range:$rangeStart-$rangeEnd non-shared\n" ;
print fpOut substr( $chroms{$i}, $start, $end - $start + 1 ), "\n" ;
#close fpOut ;
}
}
}
delete $localKmer{ $maxPair[0] } ;
delete $localKmer{ $maxPair[1] } ;
#print defined( $localKmer{ $maxPair[0] }) ;
unlink glob("$fileNameA") ; #if ( $maxPair[0] >= scalar( @fileNames ) ) ;
unlink glob("$fileNameB") ; #if ( $maxPair[1] >= scalar( @fileNames ) ) ;
# Count the kmer for the new genome
my $fileName = $prefix."_".$index.".fa" ;
if ( $fragment == 0 )
{
open fpOut, ">$fileName" ;
print fpOut "$outputHeader\n$outputSeq\n" ;
}
close fpOut ;
system_call("$jellyfish count --if tmp_$prefix.testingKmer -o tmp_$prefix.jf -m $kmerSize -s 5000000 -C -t 4 $fileName") ;
system_call("$jellyfish dump tmp_$prefix.jf > tmp_$prefix.jf_dump") ;
open FP1, "tmp_$prefix.jf_dump";
while ( <FP1> )
{
chomp ;
my $cnt = substr( $_, 1 ) ;
if ( $cnt eq "0" )
{
$kmer = <FP1> ;
next ;
}
$kmer = <FP1> ;
chomp $kmer ;
$localKmer{$index}->{$kmer} = 1 ;
}
close FP1 ;
++$index ;
} # while 1
#foreach $i (keys %localKmer )
#{
# if ( $i < scalar( @fileNames ) )
# {
# my $path = $fileNames[ $i ] ;
# my $fileName = $prefix."_".$i.".fa" ;
# system_call("cp $path $fileName") ;
# }
#}
# clean up
unlink glob("tmp_$prefix.jf tmp_$prefix.jf_dump tmp_$prefix.testingKmer") ;
unlink glob("nucmer_$prefix*") ;
print "Finish.\n" ;
sub system_call {
print STDERR "SYSTEM CALL: ".join(" ",@_)."\n" ;
system(@_) == 0
or die "system @_ failed: $?";
print STDERR " finished\n";
}