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 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
|
=head1 LICENSE
Copyright [2015-2018] EMBL-European Bioinformatics Institute
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=head1 NAME
Bio::DB::HTS::Alignment -- The HTS alignment object
=head1 SYNOPSIS
use Bio::DB::HTS;
my $sam = Bio::DB::HTS->new(-fasta=>"data/ex1.fa",
-bam =>"data/ex1.bam");
my @alignments = $sam->get_features_by_location(-seq_id => 'seq2',
-start => 500,
-end => 800);
for my $a (@alignments) {
my $seqid = $a->seq_id;
my $start = $a->start;
my $end = $a->end;
my $strand = $a->strand;
my $ref_dna= $a->dna;
my $query_start = $a->query->start;
my $query_end = $a->query->end;
my $query_strand = $a->query->strand;
my $query_dna = $a->query->dna;
my $cigar = $a->cigar_str;
my @scores = $a->qscore; # per-base quality scores
my $score = $a->qstring; # TAM-style quality string
my $match_qual= $a->qual; # quality of the match
my $paired = $a->get_tag_values('PAIRED');
}
=head1 DESCRIPTION
The Bio::DB::HTS::Alignment and Bio::DB::HTS::AlignWrapper classes
together represent an alignment between a sequence read (the "query")
and a reference sequence (the "target"). Bio::DB::HTS::Alignment
adheres strictly to the C-level BAM library's definition of a bam1_t*
and is used in the Bio::DB::HTS low-level API The latter adds
convenience methods that make it similar to a BioPerl Bio::SeqFeatureI
object. This manual page describes both.
=head1 High-level Bio::DB::HTS::Alignment methods
These methods are provided by Bio::DB::HTS::Alignment, and are
intended to be compatible with the Bio::SeqFeatureI interfaces. Note
that these objects are B<not> compatible with Bio::Align::AlignI, as
the BAM API is fundamentally incompatible with the BioPerl API for
alignments (the first deals with the alignment of a single read
against the reference sequence, while the second deals with a multiple
alignment).
Note that the high-level API return Bio::DB::HTS::AlignWrapper objects
B<except> in the case of the callback to the fast_pileup() method. In
this case only, the object returned by calling $pileup->b() is a
Bio::DB::HTS::Alignment object for performance reasons.
=over 4
=item $seq_id = $align->seq_id
Return the seq_id of the reference (target) sequence. This method is only
available in the Bio::DB::HTS::AlignWrapper extension.
=item $start = $align->start
Return the start of the alignment in 1-based reference sequence
coordinates.
=item $end = $align->end
Return the end of the alignment in 1-based reference sequence
coordinates.
=item $len = $align->length
Return the length of the alignment on the reference sequence.
=item $mseqid = $align->mate_seq_id
Return the seq_id of the mate's reference (target) sequence. This method
is only available in the Bio::DB::AlignWrapper extension.
=item $mstart = $align->mate_start
For paired reads, return the start of the mate's alignment in
1-based reference sequence coordinates.
=item $mend = $align->mate_end
For paired reads, return the end position of the mate's alignment in
1-based reference sequence coordinates.
=item $mlen = $align->mate_len
For mate-pairs, retrieve the length of the mate's alignment on the
reference sequence.
=item $strand = $align->strand
Return the strand of the alignment as -1 for reversed, +1 for
forward.
=item $mstrand = $align->mstrand
If the read has a mate pair, return the strand of the mate in the
format -1 or +1.
=item $ref_dna = $align->dna
Returns the B<reference> sequence's DNA across the aligned region. If
an MD tag is present in the alignment, it will be used preferentially
to reconstruct the reference sequence. Otherwise the reference DNA
access object passed to Bio::DB::HTS->new() will be used.
=item $ref_dna = $align->seq
The B<reference> sequence's DNA as a Bio::PrimarySeqI object (useful
for passing to BioPerl functions and for calculating subsequences and
reverse complements).
=item $query = $align->query
This method returns a Bio::DB::Alignment::Query object that can be
used to retrieve information about the query sequence. The next few
entries show how to use this object.
=item $read_name = $align->query->name
The name of the read.
=item $q_start = $align->query->start
This returns the start position of the query (read) sequence in
1-based coordinates. It acts via a transient Bio::DB::HTS::Query
object that is provided for Bio::Graphics compatibility (see
L<Bio::Graphics>).
=item $q_end = $align->query->end
This returns the end position of the query sequence in 1-based
coordinates.
=item $q_len = $align->query->length
Return the length of the alignment on the read.
=item $scores = $align->query->score
Return an array reference containing the unpacked quality scores for
each base of the query sequence. The length of this array reference
will be equal to the length of the read.
=item $read_dna = $align->query->dna
The read's DNA string.
=item $read_seq = $align->query->seq
The read's DNA as a Bio::PrimarySeqI object.
=item $target = $align->target;
The target() method is similar to query(), except that it follows
Bio::AlignIO conventions for how to represent minus strand
alignments. The object returned has start(), end(), qscore(), dna()
and seq() methods, but for minus strand alignments the sequence will
be represented as it appears on the reverse strand, rather than on the
forward strand. This has the advantage of giving you the read as it
came off the machine, before being reverse complemented for use in the
SAM file.
=item $query = $align->hit
The hit() method is identical to target() and returns information
about the read. It is present for compatibility with some of the
Bio::Graphics glyphs, which use hit() to represent the non-reference
sequence in aligned sequences.
=item $primary_id = $align->primary_id
This method synthesizes a unique ID for the alignment which can be
passed to $sam->get_feature_by_id() to retrieve the alignment at a
later date.
=item @tags = $align->get_all_tags
Return all tag names known to this alignment. This includes SAM flags
such as M_UNMAPPED, as well as auxiliary flags such as H0. The
behavior of this method depends on the value of -expand_flags when the
SAM object was created. If false (the default), then the standard SAM
flags will be concatenated together into a single string and stored in
a tag named 'FLAGS'. The format of this tag value is the list of one
or more flag constants separated by the "|" character, as in:
"PAIRED|MAP_PAIR|REVERSED|SECOND_MATE". If -expand_flags was true,
then each flag becomes its own named tag, such as "MAP_PAIR".
=item @values = $align->get_tag_values($tag)
Given a tag name, such as 'PAIRED' or 'H0', return its
value(s). -expand_flags must be true in order to use the standard SAM
flag constants as tags. Otherwise, they can be fetched by asking for
the "FLAGS" tag, or by using the low-level methods described below.
=item $is_true = $align->has_tag($tag)
Return true if the alignment has the indicated tag.
=item $string = $align->cigar_str
Return the CIGAR string for this alignment in conventional human
readable format (e.g. "M34D1M1").
=item $arrayref = $align->cigar_array
Return a reference to an array representing the CIGAR string. This is
an array of arrays, in which each subarray consists of a CIGAR
operation and a count. Example:
[ ['M',34], ['D',1], ['M',1] ]
=item ($ref,$matches,$query) = $align->padded_alignment
Return three strings that show the alignment between the reference
sequence (the target) and the query. It will look like this:
$ref AGTGCCTTTGTTCA-----ACCCCCTTGCAACAACC
$matches |||||||||||||| |||||||||||||||||
$query AGTGCCTTTGTTCACATAGACCCCCTTGCAACAACC
=item $str = $align->aux
Returns the text version of the SAM tags, e.g.
"XT:A:M NM:i:2 SM:i:37 AM:i:37 XM:i:1 XO:i:1 XG:i:1 MD:Z:6^C0A47"
=item $str = $align->tam_line
Returns the TAM (text) representation of the alignment (available in
the high-level "AlignWrapper" interface only).
=item $tag = $align->primary_tag
This is provided for Bio::SeqFeatureI compatibility. Return the string
"match".
=item $tag = $align->source_tag
This is provided for Bio::SeqFeatureI compatibility. Return the string
"sam/bam".
=item @parts = $align->get_SeqFeatures
Return subfeatures of this alignment. If you have fetched a
"read_pair" feature, this will be the two mate pair objects (both of
type Bio::DB::HTS::AlignWrapper). If you have -split_splices set to
true in the Bio::DB::HTS database, calling get_SeqFeatures() will
return the components of split alignments. See
L<Bio::DB::HTS/Bio::DB::HTS Constructor and basic accessors> for an
example of how to use this.
=back
=head1 Low-level Bio::DB::HTS::Alignment methods
These methods are available to objects of type Bio::DB::HTS::Alignment
as well as Bio::DB::HTS::AlignWrapper and closely mirror the native C
API.
=over 4
=item $align = Bio::DB::HTS::Alignment->new
Create a new, empty alignment object. This is usually needed when
iterating through a HTS file using Bio::DB::HTS->read1().
=item $tid = $align->tid( [$new_tid] )
Return the target ID of the alignment. Optionally you may change the
tid by providing it as an argument (currently this is the only field
that you can change; the functionality was implemented as a proof of
principle).
=item $read_name = $align->qname
Returns the name of the read.
=item $pos = $align->pos
0-based leftmost coordinate of the aligned sequence on the reference
sequence.
=item $end = $align->calend
The 0-based rightmost coordinate of the aligned sequence on the
reference sequence after taking alignment gaps into account.
=item $len = $align->cigar2qlen
The length of the query sequence calculated from the CIGAR string.
=item $quality = $align->qual
The quality score for the alignment as a whole.
=item $flag = $align->flag
The bitwise flag field (see the SAM documentation).
=item $mtid = $align->mtid
For paired reads, the target ID of the mate's alignemnt.
=item $mpos = $align->mpos
For paired reads, the 0-based leftmost coordinate of the mate's
alignment on the reference sequence.
=item $n_cigar = $align->n_cigar
Number of CIGAR operations in this alignment.
=item $length = $align->l_qseq
The length of the query sequence (the read).
=item $dna = $align->qseq
The actual DNA sequence of the query. As in the SAM file, reads that
are aligned to the minus strand of the reference are returned in
reverse complemented form.
=item $score_str = $align->_qscore
A packed binary string containing the quality scores for each base of
the read. It will be the same length as the DNA. You may unpack it
using unpack('C*',$score_str), or use the high-level qscore() method.
=item $score_arry = $align->qscore
=item @score_arry = $align->qscore
In a scalar context return an array reference containing the unpacked
quality scores for each base of the query sequence. In a list context
return a list of the scores. This array is in the same orientation as
the reference sequence.
=item $score_str = $align->qstring
Returns the quality string in the same format used in the SAM (TAM)
file.
=item $length = $align->isize
The calculated insert size for mapped paired reads.
=item $length = $align->l_aux
The length of the align "auxiliary" data.
=item $value = $align->aux_get("tag")
Given an auxiliary tag, such as "H0", return its value.
=item @keys = $align->aux_keys
Return the list of auxiliary tags known to this alignment.
=item $data = $align->data
Return a packed string containing the alignment data (sequence,
quality scores and cigar string).
=item $length = $align->data_len
Return the current length of the alignment data.
=item $length = $align->m_data
Return the maximum length of the alignment data.
=item $is_paired = $align->paired
Return true if the aligned read is part of a mate/read pair
(regardless of whether the mate mapped).
=item $is_proper = $align->proper_pair
Return true if the aligned read is part of a mate/read pair and both
partners mapped to the reference sequence.
=item $is_unmapped = $align->unmapped
Return true if the read failed to align.
=item $mate_is_unmapped = $align->munmapped
Return true if the read's mate failed to align.
=item $reversed = $align->reversed
Return true if the aligned read was reverse complemented prior to
aligning.
=item $mate_reversed = $align->mreversed
Return true if the aligned read's mate was reverse complemented prior
to aligning.
=item $isize = $align->isize
For mate-pairs, return the computed insert size.
=item $arrayref = $align->cigar
This returns the CIGAR data in its native BAM format. You will receive
an arrayref in which each operation and count are packed together into
an 8-bit structure. To decode each element you must use the following
operations:
use Bio::DB::HTS::Constants;
my $c = $align->cigar;
my $op = $c->[0] & BAM_CIGAR_MASK;
my $len = $c->[0] >> BAM_CIGAR_SHIFT;
=back
=head1 AUTHOR
Rishi Nag E<lt>rishi@ebi.ac.uk<gt>
=cut
package Bio::DB::HTS::Alignment;
$Bio::DB::HTS::Alignment::VERSION = '3.01';
use strict;
use warnings;
use Bio::DB::HTS::Query;
use Bio::DB::HTS::Target;
use Bio::DB::HTS::Constants;
sub each_tag_value { shift->get_tag_values(@_) }
sub get_tag_values {
my $self = shift;
my $tag = shift;
defined $tag or return;
if ( my $mask = RFLAGS->{ uc $tag } ) { # special tag
# to avoid warnings when making numeric comps
return ( $self->flag & $mask ) == 0 ? 0 : 1;
}
elsif ( $tag eq 'FLAGS' ) {
$self->flag_str;
}
else {
$self->aux_get($tag);
}
}
sub has_tag {
my $self = shift;
my $tag = shift;
defined $tag or return;
if ( my $mask = RFLAGS->{ uc $tag } ) { # special tag
return 1;
}
elsif ( $tag eq 'FLAGS' ) {
return 1;
}
else {
my %keys = map { $_ => 1 } $self->aux_keys;
return exists $keys{ uc $tag };
}
}
sub get_all_tags {
my $self = shift;
my @aux_tags = $self->aux_keys;
my @flag_tags = keys %{ RFLAGS() };
return ( @aux_tags, @flag_tags );
}
sub start {
my $self = shift;
return if $self->pos < 0 || $self->unmapped;
return $self->pos + 1;
}
sub end {
my $self = shift;
return if $self->unmapped;
return $self->calend;
}
sub stop { shift->end }
# in SAM format, alignment is always to the forward strand
sub strand {
return shift->reversed ? -1 : 1;
}
sub abs_strand { shift->strand }
sub mstrand {
my $self = shift;
return $self->mreversed ? -1 : 1;
}
sub display_name {
return shift->qname;
}
sub qscore {
my $self = shift;
my $scores = $self->_qscore;
my @scores = unpack( 'C*', $scores );
return wantarray ? @scores : \@scores;
}
sub qstring {
return join( '', map { chr( $_ + 33 ) } shift->qscore );
}
sub primary_id {
my $self = shift;
return join ';',
map { s/;/%3B/g; $_ } ( $self->display_name, $self->tid, $self->start,
$self->end, $self->strand );
}
sub cigar_str {
my $self = shift;
my $cigar = $self->cigar;
my $result = '';
for my $c (@$cigar) {
my $op = $c & BAM_CIGAR_MASK;
my $l = $c >> BAM_CIGAR_SHIFT();
my $symbol = CIGAR_SYMBOLS()->[$op];
$result .= "${l}${symbol}";
}
return $result;
}
sub cigar_array {
my $self = shift;
my $cigar = $self->cigar;
my @result;
for my $c (@$cigar) {
my $op = $c & BAM_CIGAR_MASK();
my $l = $c >> BAM_CIGAR_SHIFT();
my $symbol = CIGAR_SYMBOLS()->[$op];
push @result, [ $symbol, $l ];
}
return \@result;
}
sub flag_str {
my $self = shift;
my $flag = $self->flag;
my $flags = FLAGS;
return join '|',
map { $flags->{$_} }
grep { $flag & $_ } sort { $a <=> $b } keys %{$flags};
}
sub length {
my $self = shift;
my $end = $self->end || 0;
my $start = $self->start || 0;
return $end - $start + 1;
}
sub mate_start {
my $self = shift;
return if $self->mpos < 0 || $self->munmapped;
return $self->mpos + 1;
}
sub mate_len {
my $self = shift;
my $ins_len = $self->isize or return;
my $len = $self->length;
my $adjust = 0;
my @cigar = $self->cigar_array;
for my $event (@cigar) {
my ( $op, $len ) = @$event;
$adjust += $len if $op eq 'I';
$adjust -= $len if $op eq 'D';
}
return $adjust + $ins_len + ( $self->start - $self->mate_start )
if $ins_len > 0;
return $adjust + $self->mate_start - ( $self->start + $ins_len )
if $ins_len < 0;
}
sub mate_end {
my $self = shift;
return unless $self->mate_len;
return $self->mate_start + $self->mate_len - 1;
}
sub query {
my $self = shift;
return Bio::DB::HTS::Query->new($self);
}
sub get_SeqFeatures { return; }
# Target is the same as Query, but with meaning of start() and end() reversed
# for compatibility with Bio::DB::GFF and its ilk. Please use Query if you can!
sub target {
my $self = shift;
return Bio::DB::HTS::Target->new($self);
}
sub primary_tag { 'match' }
sub source_tag { 'sam/bam' }
sub hit { shift->target(@_); }
1;
=head1 SEE ALSO
L<Bio::Perl>, L<Bio::DB::HTS>, L<Bio::DB::HTS::Constants>
=cut
|