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
|
###########################
### Class Alignment_segment
###########################
=head1 NAME
package CDNA::Alignment_segment
=head1 DESCRIPTION
Provides an object representation of alignment segments which are built into a single CDNA_alignment object.
=cut
package CDNA::Alignment_segment;
use strict;
use Data::Dumper;
=over 4
=item new()
B<Description:> Instantiates a new Alignment_segment object.
B<Parameters:> $genomic_end5, $genomic_end3, $cdna_end5, $cdna_end3, $per_id
B<Returns:> Alignment_segment_obj
Alignment_segment_obj is an object of type CDNA::Alignment_object
Use the methods described below. In addition, the following fields are supported:
B<orientation> (orientation of the alignment segment)
B<lend> (left end of the alignment segment corresponding to the genomic sequence)
B<rend> (right end of the alignmetn segment corresponding to the genomic sequence)
note: lend <= rend in all cases; must use the B<orientation> field to determine cDNA alignment orientation for the segment.
B<mlend> (the cDNA coordinate corresponding to the lend alignment coordinate)
B<mrend> (the cDNA coordinate corresponding to the rend alignment coordinate)
=back
=cut
sub new {
my $packagename = shift;
my ($genomic_end5, $genomic_end3, $cdna_end5, $cdna_end3, $per_id) = @_;
my $orientation = '?'; #initialize
my ($lend, $rend, $mlend, $mrend) = ($genomic_end5, $genomic_end3, $cdna_end5, $cdna_end3);
#reorient coordsets so that cdna coordinates are always in forward orientation.
if ($cdna_end5 > $cdna_end3) { #swap coordsets
($lend, $rend) = ($rend, $lend);
($mlend, $mrend) = ($mrend, $mlend);
}
## Check orientation and adjust lend, rend accordingly.
if ($lend > $rend) {
$orientation = '-';
($lend, $rend) = ($rend, $lend);
($mlend, $mrend) = ($mrend, $mlend);
} elsif ($lend < $rend) { #keep coords way they are.
$orientation = '+';
}
my $self = {
orientation=>$orientation, ## should be [+-]
lend=>$lend,
rend=>$rend,
mlend=>$mlend, ## cDNA coordinate that maps to lend of alignment.
mrend=>$mrend,
per_id => $per_id,
type=>undef(), # [first|last|internal|single]
has_left_splice_junction=>0, #flag indicating whether the consensus is present.
has_right_splice_junction=>0,
left_splice_site_chars=>undef(), #store the two characters at that splice junction.
right_splice_site_chars=>undef()
};
bless ($self, $packagename);
return ($self);
}
sub set_coords {
my $self = shift;
my ($c1, $c2) = @_;
($c1, $c2) = sort {$a<=>$b} ($c1, $c2);
$self->{lend} = $c1;
$self->{rend} = $c2;
}
####
sub get_aligned_orientation {
my $self = shift;
return ($self->{orientation});
}
=over 4
=item get_coords()
B<Description:> Retrieves the lend, rend for the alignment segment.
B<Parameters:> none.
B<Returns:> ($lend, $rend)
=back
=cut
sub get_coords {
my $self = shift;
return ($self->{lend}, $self->{rend});
}
# private.
sub set_mcoords () {
my $self = shift;
my ($mlend, $mrend) = @_;
$self->{mlend} = $mlend;
$self->{mrend} = $mrend;
}
=over 4
=item get_mcoords()
B<Description:> Retrieves the mlend, mrend for the cDNA coordinates.
B<Parameters:> none
B<Returns:> ($mlend, $mrend)
=back
=cut
sub get_mcoords () {
my $self = shift;
return ($self->{mlend}, $self->{mrend});
}
=over 4
=item get_per_id()
B<Description:> Retrieves the per_id for the alignment segment
B<Parameters:> none
B<Returns:> $per_id
=back
=cut
sub get_per_id {
my $self = shift;
return ($self->{per_id});
}
#private
sub set_orientation {
my $self = shift;
my $orientation = shift;
$self->{orientation} = $orientation;
}
=over 4
=item get_orientation()
B<Description:> Retrieves the orientation for an alignment segment.
B<Parameters:> none
B<Returns:> [+|-]
=back
=cut
sub get_orientation {
my $self = shift;
return ($self->{orientation});
}
sub set_type {
my $self = shift;
my $type = shift;
unless ($type =~ /first|last|internal|single/) {
die "Incompatible segment type provided: $type\n";
}
$self->{type} = $type;
}
=over 4
=item get_type()
B<Description:>Retrieves the classification of the alignment segment
B<Parameters:> none
B<Returns:> [first|last|internal|single]
=back
=cut
sub get_type {
my $self = shift;
return ($self->{type});
}
sub is_first {
my $self = shift;
return ($self->{type} eq "first") ;
}
sub is_internal {
my $self = shift;
return ($self->{type} eq "internal");
}
sub is_last {
my $self = shift;
return ($self->{type} eq "last");
}
sub is_single_segment {
my $self = shift;
return ($self->{type} eq "single");
}
sub set_left_splice_junction {
my $self = shift;
my $value = shift;
$self->{has_left_splice_junction} = $value;
}
=over 4
=item has_left_splice_junction()
B<Description:> Provides result of a left splice junction test.
B<Parameters:> none
B<Returns:> [1|0]
1=true
0=false
=back
=cut
sub has_left_splice_junction {
my $self = shift;
return ($self->{has_left_splice_junction});
}
sub set_right_splice_junction {
my $self = shift;
my $value = shift;
$self->{has_right_splice_junction} = $value;
}
=over 4
=item has_right_splice_junction()
B<Description:> Provides the result of a right splice junction test.
B<Parameters:> none
B<Returns:> [1|0]
=back
=cut
sub has_right_splice_junction {
my $self = shift;
return ($self->{has_right_splice_junction});
}
sub set_left_splice_site_chars () {
my $self = shift;
my $chars = shift;
$self->{left_splice_site_chars} = $chars;
}
=over 4
=item get_left_splice_site_chars()
B<Description:> Retrieves the two characters representing the left splice site
B<Parameters:> none.
B<Returns:> $twochars
ie. Typically, this will return AG or AC depending on the spliced orientation.
=back
=cut
sub get_left_splice_site_chars () {
my $self = shift;
return ($self->{left_splice_site_chars});
}
sub set_right_splice_site_chars() {
my $self = shift;
my $chars = shift;
$self->{right_splice_site_chars} = $chars;
}
=over 4
=item get_right_splice_chars()
B<Description:> Retrieves the two characters representing the right splice site
B<Parameters:> none.
B<Returns:> $two_chars
ie. typcially returns GT or CT depending on the spliced orientation.
=back
=cut
sub get_right_splice_site_chars() {
my $self = shift;
return ($self->{right_splice_site_chars});
}
sub toString() {
my $self = shift;
return( "segment\* orient: " . $self->{orientation} . " coords: " . $self->{lend} . "-" . $self->{rend} . " type: " . $self->{type}
. " lsplice: " . $self->has_left_splice_junction() . " rsplice: " . $self->has_right_splice_junction() . "\n");
}
sub toToken() {
my $segment = shift;
my $token = "";
my $type = $segment->get_type();
my ($lend, $rend) = $segment->get_coords();
my ($mlend, $mrend) = $segment->get_mcoords();
if ($type =~ /internal|last/) {
# check splice site
my $left_splice = $segment->get_left_splice_site_chars();
if ($segment->has_left_splice_junction()) {
$left_splice = uc $left_splice;
} else {
$left_splice = lc $left_splice;
}
$token .= $left_splice . "<";
}
$token .= $lend;
if ($mlend) {
$token .= "($mlend)";
}
$token .= "-$rend";
if ($rend) {
$token .= "($mrend)";
}
if ($type =~ /internal|first/) {
# check splice site
my $right_splice = $segment->get_right_splice_site_chars();
if ($segment->has_right_splice_junction()) {
$right_splice = uc $right_splice;
} else {
$right_splice = lc $right_splice;
}
$token .= ">$right_splice";
}
return ($token);
}
=over 4
=item clone()
B<Description:> Clones an Alignment_segment object into a new Alignment_segment object with the same attribute values.
B<Parameters:> none
B<Returns:> new CDNA::Alignment_segment
=back
=cut
sub clone {
my $self = shift;
my $packagename = ref $self;
my $clone = {};
foreach my $key (keys %$self) {
$clone->{$key} = $self->{$key};
}
bless ($clone, $packagename);
return ($clone);
}
=over 4
=item get_length()
B<Description:> Calculates the length of the alignment segment.
B<Parameters:> none
B<Returns:> int
=back
=cut
sub get_length {
my $self = shift;
my ($lend, $rend) = $self->get_coords();
my $length = abs ($rend - $lend) + 1;
return ($length);
}
1; #EOM
|