-
Notifications
You must be signed in to change notification settings - Fork 2
/
group_coords.pl
executable file
·557 lines (482 loc) · 20 KB
/
group_coords.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
#!/usr/bin/perl
=head1
group_coords.pl
=head1 SYNOPSIS
group_coords.pl -i [coords file] -g [gap size] -r [fasta] -q [fasta] -c [agp] -s [agp]
=head1 COMMAND-LINE OPTIONS
-i COORDS file created by show-coords (required)
-u Sequence ID of chromosome with unmapped contigs
-r Fasta file of reference (required)
-q Fasta file of query (assembled and singleton BACs, required)
-g Gap size allowed between aligned clusters in the reference sequence, typically the mean/median scaffold gap (required)
-c Contig or component AGP file for reference (includes scaffold gaps)
-s Chromosome AGP file for reference (with only scaffolds and gaps)
-t Print header (T/F)
-d Debug messages (T/F)
-h Help
=head1 TODO
See github issues.
=cut
use strict;
use warnings;
use Getopt::Std;
use File::Slurp;
use Bio::GenomeUpdate::AlignmentCoords;
use Bio::GenomeUpdate::AlignmentCoordsGroup;
use Bio::GenomeUpdate::AGP;
use Bio::DB::Fasta;
our ( $opt_i, $opt_g, $opt_r, $opt_q, $opt_u, $opt_t, $opt_h, $opt_c, $opt_s, $opt_d );
getopts("i:g:r:q:u:c:s:t:h:d");
if ( !$opt_i || !$opt_g || !$opt_r || !$opt_q ) {
print STDERR "\nRequired files or gap parameter missing!! exiting..\n\n";
help();
}
if ($opt_h) {
help();
}
unless ( -e $opt_i ) {
print STDERR "COORDS file $opt_i not found. exiting..\n";
exit;
}
unless ( -e $opt_r ) {
print STDERR "Fasta file $opt_r not found. exiting..\n";
exit;
}
unless ( -e $opt_q ) {
print STDERR "Fasta file $opt_q not found. exiting..\n";
exit;
}
if ( defined $opt_c ) {
unless ( -e $opt_c ) {
print STDERR
"Contig or component AGP file $opt_c not found. exiting..\n";
exit;
}
}
if ( defined $opt_s ) {
unless ( -e $opt_s ) {
print STDERR "Chromosome AGP file $opt_s not found. exiting..\n";
exit;
}
}
my $input_file;
my $gap_size_allowed;
my $unmapped_ID;
my ($debug,$print_header);
$input_file = $opt_i || die("-i input_file required\n");
if ($opt_g) {
$gap_size_allowed = $opt_g;
}
if ($opt_u) {
$unmapped_ID = $opt_u;
print STDERR "Gg: $opt_u\n";
}
else {
$unmapped_ID = 'NA'; #not required
}
if ($opt_t) {
if ( $opt_t eq "T" ) {
$print_header = "T";
}
elsif ( $opt_t eq "F" ) {
$print_header = "F";
}
else {
die("-t must be T or F\n");
}
}
else{
$print_header = "T";
}
if ($opt_d) {
if ( $opt_d eq "T" ) {
$debug = 1 ;
}
elsif ( $opt_d eq "F" ) {
$debug = 0 ;
}
else {
die("-d must be T or F\n");
}
}
else{
$debug = 0 ; #false by default
}
open( MIXED, ">mixed_${opt_i}_group_coords.out" )
or die
"Could not create mixed_${opt_i} for writing out BACs aligned to ref chr in mixed orientation";
open( NONCOLINEAR, ">noncolinear_${opt_i}_group_coords.out" )
or die
"Could not create noncolinear_${opt_i} for writing out BACs aligned non co-linearly to ref chr, i.e. different order of aligned tiles on BAC and ref chr. Shows miassembly on ref chr or BAC";
my ($contig_agp,$chr_agp);
if ($opt_c && $opt_s){
my $contig_agp_input_file = $opt_c;
my $contig_input_agp = read_file($contig_agp_input_file)
or die "Could not open contig AGP input file: $contig_agp_input_file\n";
$contig_agp = Bio::GenomeUpdate::AGP->new();
$contig_agp->parse_agp($contig_input_agp);
my $chr_agp_input_file = $opt_s;
my $chr_input_agp = read_file($chr_agp_input_file)
or die "Could not open chr AGP input file: $chr_agp_input_file\n";
$chr_agp = Bio::GenomeUpdate::AGP->new();
$chr_agp->parse_agp($chr_input_agp);
}
my $total = 0;
my $total_smaller_than_20k = 0; #for alignments covering < 20k on ref
my $total_mixed = 0;
my $total_noncolinear = 0;
my $total_over = 0;
my $total_alt = 0;
my $total_full_length = 0;
my $total_to_end = 0;
my $total_extend = 0;
my $total_ref_covered = 0;
my $total_ref_Ns_covered = 0;
my $total_query_Ns_covered = 0;
my $total_complete_contig_gaps_covered = 0;
my $total_complete_contig_gap_length_covered = 0;
my $total_partial_contig_gaps_covered = 0;
my $total_partial_contig_gap_length_covered = 0;
my $total_complete_chr_gaps_covered = 0;
my $total_complete_chr_gap_length_covered = 0;
my $total_partial_chr_gaps_covered = 0;
my $total_partial_chr_gap_length_covered = 0;
my $ref_db = Bio::DB::Fasta->new( $opt_r, '-reindex' => 1 );
my $query_db = Bio::DB::Fasta->new( $opt_q, '-reindex' => 1 );
print STDERR "G0: $gap_size_allowed\n";
print STDERR "Number of reference sequences: ";
print STDERR scalar $ref_db->get_all_ids();
print STDERR "\nNumber of query sequences: ";
print STDERR scalar $query_db->get_all_ids();
print STDERR "\n\n";
my @lines = read_file($input_file);
my $startline = 5;
my $currentline = 0;
my @alignment_coords_array;
my @query_valid_hits;
my @query_invalid_hits;
my $last_line_query_id;
my $last_query_id;
my $last_query_length;
if ($print_header eq 'T'){
print
"query\treference\tref_start\tref_end\tlength\tq_start\tq_end\tq_length\tseq_in_clusters\tdirection_check\tref_count\tincludes_0\tfull_length\tfrom_start\tfrom_end\tinternal_gap\tis_overlapping\tsize_of_alt\talternates\t\n";
print MIXED
"query\treference\tref_start\tref_end\tlength\tq_start\tq_end\tq_length\tseq_in_clusters\tdirection_check\tref_count\tincludes_0\tfull_length\tfrom_start\tfrom_end\tinternal_gap\tis_overlapping\tsize_of_alt\talternates\t\n";
print NONCOLINEAR
"query\treference\tref_start\tref_end\tlength\tq_start\tq_end\tq_length\tseq_in_clusters\tdirection_check\tref_count\tincludes_0\tfull_length\tfrom_start\tfrom_end\tinternal_gap\tis_overlapping\tsize_of_alt\talternates\t\n";
}
#parse coords file
#[S1] [E1] [S2] [E2] [LEN 1] [LEN 2] [% IDY] [LEN R] [LEN Q] [COV R] [COV Q] [FRM] [TAGS]
foreach my $line (@lines) {
$currentline++;
if ( $currentline < $startline ) {
next;
}
my @row;
@row = split( '\t', $line );
my $current_query_id = $row[14];
my $current_query_length = $row[8];
if ( !defined($last_line_query_id) ) {
$last_line_query_id = $current_query_id;
}
#exec if query ID changes, i.e., coords for next assembled or singleton BAC aligned to chr
if ( !( $current_query_id eq $last_line_query_id ) ) {
#print info for prev query (assembled or singleton BAC ) to STDOUT
calc_and_print_info( \@alignment_coords_array, $last_query_id,
$last_query_length );
@alignment_coords_array = ();
}
my $aln_coords = Bio::GenomeUpdate::AlignmentCoords->new();
$aln_coords->set_reference_id( $row[13] );
$aln_coords->set_query_id( $row[14] );
$aln_coords->set_reference_start_coord( $row[0] );
$aln_coords->set_reference_end_coord( $row[1] );
$aln_coords->set_reference_strand( $row[11] );
$aln_coords->set_query_start_coord( $row[2] );
$aln_coords->set_query_end_coord( $row[3] );
$aln_coords->set_query_strand( $row[12] );
push( @alignment_coords_array, $aln_coords );
#deal with last row since no more alignments for query after this
if ( $currentline == scalar(@lines) ) {
#calc_and_print_info(\@alignment_coords_array, $current_query_id, $current_query_length,$gap_size_allowed);
calc_and_print_info( \@alignment_coords_array, $current_query_id,
$current_query_length );
@alignment_coords_array = ();
}
$last_line_query_id = $current_query_id;
$last_query_id = $current_query_id;
$last_query_length = $current_query_length;
}
=item C<calc_and_print_info (@alignment_coords_array, $last_query_id, $last_query_length)>
Prints info to STDOUT. No return value.
=cut
sub calc_and_print_info {
my ( $aref, $q_id, $q_length ) = @_;
my $align_group = Bio::GenomeUpdate::AlignmentCoordsGroup->new();
#assign all coords for query/assembled or singleton BAC to obj
$align_group->set_array_of_alignment_coords($aref);
my $zero_chromosome_id = $unmapped_ID;
#Returns IDs, start and end coordinates, total aligned sequence length, and direction for the longest proximity-grouped
#alignment clusters sorted by longest to shortest length of non-overlapping sequence covered by alignment clusters.
#The proximity grouping is done using the specified length of an allowed gap between aligned clusters in the reference sequence ($gap allowed).
#$sequence_aligned_in_clusters is the total length of ref covered by alignment grp
my (
$ref_id, $query_id,
$ref_start, $ref_end,
$query_start, $query_end,
$sequence_aligned_in_clusters, $direction_check,
$colinear_order_check,
$is_overlapping, $size_of_next_largest_match,
$alternates
)
= $align_group->get_id_coords_and_direction_of_longest_alignment_cluster_group($gap_size_allowed);
my $is_full_length;
my $start_gap_length = $query_start - 1; #region of query before aligned part
my $end_gap_length = $q_length - $query_end; #region of query after aligned part
#for calculating any gaps within the BAC alignment. It doesn’t count gaps at the beginning or end of the BAC
#(those may be from the BAC extending beyond the contig. Large gaps within the BAC could indicate a problem
my $internal_gap_length =
( $q_length - $sequence_aligned_in_clusters ) -
( $start_gap_length + $end_gap_length );
if ( ( $query_start == 1 ) && ( $query_end == $q_length ) ) {
$is_full_length =
"Contains"; #entire query is covered in the alignment grp
}
else {
$is_full_length = "Partial";
}
my $flagged = 0; #flag 1 for potential problem
$total++;
#problem alignments
if ( $direction_check == 0 ) { #query aligns to both + and - strand of ref
$total_mixed++;
$flagged = 1;
print MIXED $q_id . "\t";
print MIXED $ref_id . "\t";
print MIXED $ref_start . "\t";
print MIXED $ref_end . "\t";
print MIXED $ref_end - $ref_start . "\t";
print MIXED $query_start . "\t";
print MIXED $query_end . "\t";
print MIXED $q_length . "\t";
print MIXED $sequence_aligned_in_clusters . "\t";
print MIXED $direction_check . "\t"; #both alignments on same strand? +1 if yes, else -1, 0 if mixed
print MIXED $align_group->get_count_of_reference_sequence_ids() . "\t";
print MIXED $align_group->includes_reference_id($zero_chromosome_id)
. "\t";
print MIXED $is_full_length . "\t";
print MIXED $start_gap_length . "\t";
print MIXED $end_gap_length . "\t";
print MIXED $internal_gap_length . "\t";
print MIXED $is_overlapping . "\t";
print MIXED $size_of_next_largest_match . "\t";
print MIXED $alternates . "\t";
print MIXED "\n";
}
if ( $colinear_order_check == 1 ) { #query BACs aligned non co-linearly to ref chr, i.e. different order of aligned tiles on BAC and ref chr. Shows miassembly on ref chr or BAC
$total_noncolinear++;
$flagged = 1;
print NONCOLINEAR $q_id . "\t";
print NONCOLINEAR $ref_id . "\t";
print NONCOLINEAR $ref_start . "\t";
print NONCOLINEAR $ref_end . "\t";
print NONCOLINEAR $ref_end - $ref_start . "\t";
print NONCOLINEAR $query_start . "\t";
print NONCOLINEAR $query_end . "\t";
print NONCOLINEAR $q_length . "\t";
print NONCOLINEAR $sequence_aligned_in_clusters . "\t";
print NONCOLINEAR $direction_check . "\t"; #both alignments on same strand? +1 if yes, else -1, 0 if mixed
print NONCOLINEAR $align_group->get_count_of_reference_sequence_ids() . "\t";
print NONCOLINEAR $align_group->includes_reference_id($zero_chromosome_id)
. "\t";
print NONCOLINEAR $is_full_length . "\t";
print NONCOLINEAR $start_gap_length . "\t";
print NONCOLINEAR $end_gap_length . "\t";
print NONCOLINEAR $internal_gap_length . "\t";
print NONCOLINEAR $is_overlapping . "\t";
print NONCOLINEAR $size_of_next_largest_match . "\t";
print NONCOLINEAR $alternates . "\t";
print NONCOLINEAR "\n";
}
if ( $is_overlapping == 1 ) { #query alignment tiles overlap
$total_over++;
$flagged = 1;
}
if ( $size_of_next_largest_match > 10000 ) {
$total_alt++;
$flagged = 1;
}
if ( $ref_end - $ref_start < 20000 ) {
$total_smaller_than_20k++;
#$flagged=1;#short alignment may be for a BAC end so not always a negative
}
#good alignments
if ( $start_gap_length < 10 && $end_gap_length < 10 && $flagged == 0 )
{ #alignments cover query
$total_full_length++;
}
if ( ( $start_gap_length < 10 || $end_gap_length < 10 ) && $flagged == 0 )
{ #alignments cover till one end of query
$total_to_end++;
}
if ( $flagged == 0 ) {
if($debug){
print STDERR "**",join(' ',$query_id, $ref_start, $ref_end, $query_start, $query_end, $sequence_aligned_in_clusters, $start_gap_length,
$end_gap_length, $internal_gap_length, $start_gap_length + $end_gap_length + $internal_gap_length),"\n\n";
}
$total_extend +=
$start_gap_length + $end_gap_length + $internal_gap_length;
$total_ref_covered += $sequence_aligned_in_clusters;
my $ref_aligned_seq = $ref_db->seq( $ref_id, $ref_start, $ref_end );
if($debug){
print STDERR "** ref_id: ",$ref_id,"\n";
print STDERR "** ref_start: ",$ref_start,"\n";
print STDERR "** ref_end: ",$ref_end,"\n";
print STDERR "** ref_aligned_seq: ",$ref_aligned_seq,"\n";
print STDERR "** total_ref_Ns_covered: ",$total_ref_Ns_covered,"\n";
}
$total_ref_Ns_covered += ( $ref_aligned_seq =~ tr/N// );
$total_ref_Ns_covered += ( $ref_aligned_seq =~ tr/n// );
my $query_aligned_seq = $query_db->seq( $query_id, $query_start, $query_end );
$total_query_Ns_covered += ( $query_aligned_seq =~ tr/N// );
$total_query_Ns_covered += ( $query_aligned_seq =~ tr/n// );
if ($opt_c && $opt_s){
my ($cov_gap_count, $cov_gap_length,
$par_cov_gap_count, $par_cov_gap_length
) = $contig_agp->get_gap_overlap( $ref_start, $ref_end );
$total_complete_contig_gaps_covered += $cov_gap_count;
$total_complete_contig_gap_length_covered += $cov_gap_length;
$total_partial_contig_gaps_covered += $par_cov_gap_count;
$total_partial_contig_gap_length_covered += $par_cov_gap_length;
($cov_gap_count, $cov_gap_length,
$par_cov_gap_count, $par_cov_gap_length
) = $chr_agp->get_gap_overlap( $ref_start, $ref_end );
$total_complete_chr_gaps_covered += $cov_gap_count;
$total_complete_chr_gap_length_covered += $cov_gap_length;
$total_partial_chr_gaps_covered += $par_cov_gap_count;
$total_partial_chr_gap_length_covered += $par_cov_gap_length;
}
print $q_id. "\t";
print $ref_id. "\t";
print $ref_start. "\t";
print $ref_end. "\t";
print $ref_end - $ref_start . "\t";
print $query_start. "\t";
print $query_end. "\t";
print $q_length. "\t";
print $sequence_aligned_in_clusters. "\t";
print $direction_check. "\t"; #both alignments on same strand? +1 if yes, else -1, 0 if mixed
print $align_group->get_count_of_reference_sequence_ids() . "\t";
print $align_group->includes_reference_id($zero_chromosome_id) . "\t";
print $is_full_length. "\t";
print $start_gap_length. "\t";
print $end_gap_length. "\t";
print $internal_gap_length. "\t";
print $is_overlapping. "\t";
print $size_of_next_largest_match. "\t";
print $alternates. "\t";
print "\n";
}
}
#cleanup
unlink "${opt_r}.index";
unlink "${opt_q}.index";
close(MIXED);
if ($total_mixed == 0) { unlink "mixed_${opt_i}_group_coords.out";}
close(NONCOLINEAR);
if ($total_noncolinear == 0) { unlink "noncolinear_${opt_i}_group_coords.out";}
##summary info
print STDERR "\nTotal queries:\t\t\t\t\t\t\t$total\n";
print STDERR
"Total queries with alignments smaller than 20,000 on ref:\t$total_smaller_than_20k\n";
print STDERR "Total queries with mixed orientation:\t\t\t\t$total_mixed\n";
print STDERR "Total queries with non co-linear alignments:\t\t\t$total_noncolinear\n";
print STDERR
"Total queries with overlapping alignment clusters:\t\t$total_over\n";
print STDERR
"Total queries with alternate alignments > 10,000:\t\t$total_alt\n";
print STDERR "Total queries aligned full length:\t\t\t\t$total_full_length\n";
print STDERR
"Total queries with alignment to at least one end:\t\t$total_to_end\n";
print STDERR "Total reference extended by valid BAC hits:\t\t\t$total_extend\n"
; #new seqs from query
print STDERR
"Total reference covered by valid BAC hits:\t\t\t$total_ref_covered\n"
; #includes gaps ($gap_size_allowed) between alignment clusters
print STDERR
"Total N's within reference covered by valid BAC hits:\t\t$total_ref_Ns_covered\n"
; #includes gaps ($gap_size_allowed) between alignment clusters
print STDERR
"Total N's within queries covered by valid reference hits:\t$total_query_Ns_covered\n"
; #includes gaps ($gap_size_allowed) between alignment clusters
#if ( $total_extend > $total_ref_Ns_covered ){ #new sequence beyond ends of chromosome
# print STDERR "Total novel sequence beyond chr ends from valid BAC hits:\t",$total_extend - $total_ref_Ns_covered,"\n";
#}
if ($opt_c && $opt_s){
print STDERR "\nStatistics from AGPs\n";
print STDERR "Contig or component AGP (contigs and contig gaps)\n";
print STDERR
"\tTotal gaps completely covered from contig AGP:\t\t\t$total_complete_contig_gaps_covered\n";
print STDERR
"\tTotal length of gaps completely covered from contig AGP:\t$total_complete_contig_gap_length_covered\n";
if ( $total_complete_contig_gaps_covered > 0){
print STDERR "\tAvg length of gaps completely covered from contig AGP:\t\t"
. $total_complete_contig_gap_length_covered /
$total_complete_contig_gaps_covered . "\n";
}
print STDERR
"\tTotal gaps partially covered from contig AGP:\t\t\t$total_partial_contig_gaps_covered\n";
print STDERR
"\tTotal length of gaps partially covered from contig AGP:\t\t$total_partial_contig_gap_length_covered\n";
print STDERR "Chromosome AGP (scaffolds and scaffold gaps)\n";
print STDERR
"\tTotal gaps completely covered from chr AGP:\t\t\t$total_complete_chr_gaps_covered\n";
print STDERR
"\tTotal length of gaps completely covered from chr AGP:\t\t$total_complete_chr_gap_length_covered\n";
if ($total_complete_chr_gaps_covered > 0){
print STDERR "\tAvg length of gaps completely covered from chr AGP:\t\t\t"
. $total_complete_chr_gap_length_covered / $total_complete_chr_gaps_covered
. "\n";
}
print STDERR
"\tTotal gaps partially covered from chr AGP:\t\t\t$total_partial_chr_gaps_covered\n";
print STDERR
"\tTotal length of gaps partial covered from chr AGP:\t\t$total_partial_chr_gap_length_covered\n";
}
sub help {
print STDERR <<EOF;
$0:
Description:
This script groups aligned clusters and creates a tab delimited file with BAC alignment details. Mixed and out of order alignments are written to separate files.
Usage:
group_coords.pl -i [coords file] -g [gap size] -r [fasta] -q [fasta] -c [agp] -s [agp]
Flags:
-i COORDS file created by show-coords (required)
-u Sequence ID of chromosome with unmapped contigs
-r Fasta file of reference (required)
-q Fasta file of query (assembled and singleton BACs)
-g Gap size allowed between aligned clusters in the reference sequence, typically the mean/median scaffold gap (required)
-c Contig or component AGP file for reference (includes scaffold gaps)
-s Chromosome AGP file for reference (with only scaffolds and gaps)
-t Print header (T/F)
-d Debug messages (T/F)
-h Help
EOF
exit(1);
}
=head1 LICENSE
Same as Perl.
=head1 AUTHORS
Surya Saha <suryasaha at cornell.edu, @SahaSurya>
=cut
__END__
[S1] [E1] [S2] [E2] [LEN 1] [LEN 2] [% IDY] [LEN R] [LEN Q] [COV R] [COV Q] [FRM] [TAGS]
794498 870595 1 76098 76098 76098 99.99 65875088 76098 0.12 100.00 1 1 SL2.50ch05 gi|108743801|gb|AC187148.1| [CONTAINS]
632723 750165 117443 1 117443 117443 100.00 65875088 117443 0.18 100.00 1 -1 SL2.50ch05 gi|110431384|gb|AC188778.1| [CONTAINS]
38351613 38505235 153623 1 153623 153623 100.00 68045021 153623 0.23 100.00 1 -1 SL2.50ch07 gi|117165387|emb|CU024881.7| [CONTAINS]
84085410 84193187 107778 1 107778 107778 99.99 98543444 107778 0.11 100.00 1 -1 SL2.50ch01 gi|118344475|gb|AC193779.1| [CONTAINS]
7850690 7969210 1 118521 118521 118521 100.00 56302525 118521 0.21 100.00 1 1 SL2.50ch11 gi|118344479|gb|AC171734.2| [CONTAINS]
34049026 34050620 117470 115876 1595 1595 99.69 49751636 137379 0.00 1.16 1 -1 SL2.50ch06 gi|119371448|dbj|AP009271.1|
64063464 64221573 1 158110 158110 158110 100.00 65866657 158110 0.24 100.00 1 1 SL2.50ch08 gi|119371464|dbj|AP009287.1| [CONTAINS]
50117537 50118617 57136 56056 1081 1081 99.72 68045021 153195 0.00 0.71 1 -1 SL2.50ch07 gi|126153618|emb|CU074307.9|