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
|
package PSL_parser;
use strict;
use warnings;
use Carp;
sub new {
my $packagename = shift;
my ($psl_file) = @_;
my $fh;
if (ref $psl_file eq "IO::Handle") {
$fh = $psl_file; # a filehandle not a file
}
else {
unless (-e $psl_file) {
confess "error, cannot find $psl_file";
}
open ($fh, $psl_file) or confess "Error, cannot open file $psl_file";
}
my $self = { file => $psl_file,
fh => $fh,
};
bless ($self, $packagename);
return($self);
}
sub get_next {
my $self = shift;
my $fh = $self->{fh};
while (my $line = <$fh>) {
if ($line =~ /^\d+\s/) {
return(PSL_entry->new($line));
}
}
return(undef); # no more lines
}
##################################################################################
package PSL_entry;
use strict;
use warnings;
use Carp;
sub new {
my $packagename = shift;
my ($psl_line) = @_;
my @fields = split(/\t/, $psl_line);
my $self = { fields => [@fields] };
bless ($self, $packagename);
return($self);
}
################
# blat format: # Q=cDNA T=genomic
################
# 0: match
# 1: mis-match
# 2: rep. match
# 3: N's
# 4: Q gap count
# 5: Q gap bases
# 6: T gap count
# 7: T gap bases
# 8: strand
# 9: Q name
# 10: Q size
# 11: Q start
# 12: Q end
# 13: T name
# 14: T size
# 15: T start
# 16: T end
# 17: block count
# 18: block Sizes
# 19: Q starts
# 20: T starts
# 21: Q seqs (pslx format)
# 22: T seqs (pslx format)
## All sequences start at 0 here; array-based.
sub get_line {
my $self = shift;
return(join("\t", @{$self->{fields}}));
}
sub get_match_count {
my $self = shift;
return($self->{fields}->[0]);
}
sub get_mismatch_count {
my $self = shift;
return($self->{fields}->[1]);
}
sub get_N_count {
my $self = shift;
return($self->{fields}->[3]);
}
sub get_Q_gap_count {
my $self = shift;
return($self->{fields}->[4]);
}
sub get_Q_gap_bases {
my $self = shift;
return($self->{fields}->[5]);
}
sub get_T_gap_count {
my $self = shift;
return($self->{fields}->[6]);
}
sub get_T_gap_bases {
my $self = shift;
return($self->{fields}->[7]);
}
sub get_strand {
my $self = shift;
return($self->{fields}->[8]);
}
sub get_Q_name {
my $self = shift;
return($self->{fields}->[9]);
}
sub get_Q_size {
my $self = shift;
return($self->{fields}->[10]);
}
sub get_Q_span {
my $self = shift;
return($self->{fields}->[11] + 1, $self->{fields}->[12]);
}
sub get_T_name {
my $self = shift;
return($self->{fields}->[13]);
}
sub get_T_size {
my $self = shift;
return($self->{fields}->[14]);
}
sub get_T_span {
my $self = shift;
return($self->{fields}->[15] + 1, $self->{fields}->[16]);
}
####
sub get_per_id {
my $self = shift;
my $matches = $self->get_match_count();
my $mismatches = $self->get_mismatch_count();
my $per_id = $matches / ($matches + $mismatches) * 100;
$per_id = sprintf("%.2f", $per_id);
return($per_id);
}
####
sub get_alignment_coords {
my $self = shift;
my @x = @{$self->{fields}};
my @alignment_segments;
my @cdna_coords = split (/,/, $x[19]);
my @genomic_coords = split (/,/, $x[20]);
my @lengths = split (/,/, $x[18]);
my $strand = $self->get_strand();
my $cdna_length = $self->get_Q_size();
my @ret_genome_coords;
my @ret_cdna_coords;
## report each segment match as a separate btab entry:
my $segment_number = 0;
my $num_segs = scalar(@genomic_coords);
for (my $i = 0; $i < $num_segs; $i++) {
$segment_number++;
my $length = $lengths[$i];
unless (defined $length) { next; }
my $cdna_coord = $cdna_coords[$i];
my $genomic_coord = $genomic_coords[$i];
my ($cdna_end5, $cdna_end3) = (++$cdna_coord, $cdna_coord + $length - 1);
my ($genomic_end5, $genomic_end3) = (++$genomic_coord, $genomic_coord + $length -1);
if ($strand eq "-") {
($cdna_end5, $cdna_end3) = ($cdna_length - $cdna_end5 + 1, $cdna_length - $cdna_end3 + 1);
}
push (@ret_genome_coords, [$genomic_end5, $genomic_end3]);
push (@ret_cdna_coords, [$cdna_end5, $cdna_end3]);
}
return(\@ret_genome_coords, \@ret_cdna_coords);
}
sub toString {
my $self = shift;
my $genome_acc = $self->get_T_name();
my $cdna_acc = $self->get_Q_name();
my $genome_length = $self->get_T_size();
my $cdna_length = $self->get_Q_size();
my $strand = $self->get_strand();
my ($genome_lend, $genome_rend) = $self->get_T_span();
my ($cdna_lend, $cdna_rend) = $self->get_Q_span();
my $per_id = sprintf("%.2f", $self->get_per_id());
my $ret_text = join("\t", $genome_acc, "($genome_length)", "$genome_lend-$genome_rend", $strand,
$cdna_acc, "($cdna_length)", "$cdna_lend-$cdna_rend", $per_id);
my ($genome_coords_aref, $cdna_coords_aref) = $self->get_alignment_coords();
my @genome_coords = @$genome_coords_aref;
my @cdna_coords = @$cdna_coords_aref;
my $align_text = "";
while (@genome_coords) {
my $genome_coordset = shift @genome_coords;
my $cdna_coordset = shift @cdna_coords;
if ($align_text) {
$align_text .= "....";
}
$align_text .= $genome_coordset->[0] . "(" . $cdna_coordset->[0] . ")-"
. $genome_coordset->[1] . "(" . $cdna_coordset->[1] . ")";
}
$ret_text .= "\n$align_text\n";
return ($ret_text);
}
1; #EOM
|