Bio::SearchIO
blasttable
Summary
Bio::SearchIO::blasttable - Driver module for SearchIO for parsing NCBI -m 8/9 format
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
# do not use this module directly
use Bio::SearchIO;
my $parser = new Bio::SearchIO(-file => $file,
-format => 'blasttable');
while( my $result = $parser->next_result ) {
}
Description
This module will support parsing NCBI -m 8 or -m 9 tabular output.
Methods
Methods description
Title : next_result Usage : my $result = $parser->next_result Function: Parse the next result from the data stream Returns : Bio::Search::Result::ResultI Args : none |
Title : start_element Usage : $eventgenerator->start_element Function: Handles a start element event Returns : none Args : hashref with at least 2 keys 'Data' and 'Name' |
Title : start_element Usage : $eventgenerator->end_element Function: Handles an end element event Returns : none Args : hashref with at least 2 keys 'Data' and 'Name' |
Title : element Usage : $eventhandler->element({'Name' => $name, 'Data' => $str}); Function: Convience method that calls start_element, characters, end_element Returns : none Args : Hash ref with the keys 'Name' and 'Data' |
Title : characters Usage : $eventgenerator->characters($str) Function: Send a character events Returns : none Args : string |
Title : _mode Usage : $obj->_mode($newval) Function: Example : Returns : value of _mode Args : newvalue (optional) |
Title : within_element Usage : if( $eventgenerator->within_element($element) ) {} Function: Test if we are within a particular element This is different than 'in' because within can be tested for a whole block. Returns : boolean Args : string element name |
Title : in_element Usage : if( $eventgenerator->in_element($element) ) {} Function: Test if we are in a particular element This is different than 'in' because within can be tested for a whole block. Returns : boolean Args : string element name |
Title : start_document Usage : $eventgenerator->start_document Function: Handles a start document event Returns : none Args : none |
Title : end_document Usage : $eventgenerator->end_document Function: Handles an end document event Returns : Bio::Search::Result::ResultI object Args : none |
Title : result_count Usage : my $count = $searchio->result_count Function: Returns the number of results we have processed Returns : integer Args : none |
Title : program_name Usage : $obj->program_name($newval) Function: Get/Set the program name Returns : value of program_name (a scalar) Args : on set, new value (a scalar or undef, optional) |
Title : _will_handle Usage : Private method. For internal use only. if( $self->_will_handle($type) ) { ... } Function: Provides an optimized way to check whether or not an element of a given type is to be handled. Returns : Reference to EventHandler object if the element type is to be handled. undef if the element type is not to be handled. Args : string containing type of element.
Optimizations:
1 Using the cached pointer to the EventHandler to minimize repeated lookups.
2 Caching the will_handle status for each type that is encountered so that it only need be checked by calling handler->will_handle($type) once. This does not lead to a major savings by itself (only 5-10%). In combination with other optimizations, or for large parse jobs, the savings good be significant. To test against the unoptimized version, remove the parentheses from around the third term in the ternary " ? : " operator and add two calls to $self->_eventHandler(). |
Methods code
sub _initialize
{ my ($self,@args) = @_;
$self->SUPER::_initialize(@args);
my ($pname) = $self->_rearrange([qw(PROGRAM_NAME)],
@args);
$self->program_name($pname || $DefaultProgramName);
$self->_eventHandler->register_factory('result', Bio::Search::Result::ResultFactory->new(-type => 'Bio::Search::Result::GenericResult'));
$self->_eventHandler->register_factory('hit', Bio::Search::Hit::HitFactory->new(-type => 'Bio::Search::Hit::GenericHit'));
$self->_eventHandler->register_factory('hsp', Bio::Search::HSP::HSPFactory->new(-type => 'Bio::Search::HSP::GenericHSP'));} |
sub next_result
{ my ($self) = @_;
my ($lastquery,$lasthit);
local $/ = "\n";
local $_;
while( defined ($_ = $self->_readline) ) {
next if /^\#/ || /^\s+$/;
my ($qname,$hname, $percent_id, $hsp_len, $mismatches,$gapsm,
$qstart,$qend,$hstart,$hend,$evalue,$bits) = split;
if( defined $lastquery &&
$lastquery ne $qname ) {
$self->end_element({'Name' => 'Hit'});
$self->end_element({'Name' => 'Result'});
$self->_pushback($_);
return $self->end_document;
} elsif( ! defined $lastquery ) {
$self->{'_result_count'}++;
$self->start_element({'Name' => 'Result'});
$self->element({'Name' => 'Result_program',
'Data' => $self->program_name});
$self->element({'Name' => 'Result_query-def',
'Data' => $qname});
$self->start_element({'Name' => 'Hit'});
$self->element({'Name' => 'Hit_id',
'Data' => $hname});
$self->element({'Name' => 'Hit_bits',
'Data' => $bits});
$self->element({'Name' => 'Hit_signif',
'Data' => $evalue});
} elsif( $lasthit ne $hname ) {
if( $self->in_element('hit') ) {
$self->end_element({'Name' => 'Hit'});
}
$self->start_element({'Name' => 'Hit'});
$self->element({'Name' => 'Hit_id',
'Data' => $hname});
$self->element({'Name' => 'Hit_bits',
'Data' => $bits});
$self->element({'Name' => 'Hit_signif',
'Data' => $evalue});
}
my $identical = $hsp_len - $mismatches - $gapsm;
$self->start_element({'Name' => 'Hsp'});
$self->element({'Name' => 'Hsp_evalue',
'Data' => $evalue});
$self->element({'Name' => 'Hsp_bit-score',
'Data' => $bits});
$self->element({'Name' => 'Hsp_identity',
'Data' => $identical});
$self->element({'Name' => 'Hsp_positive',
'Data' => $identical});
$self->element({'Name' => 'Hsp_gaps',
'Data' => $gapsm});
$self->element({'Name' => 'Hsp_query-from',
'Data' => $qstart});
$self->element({'Name' => 'Hsp_query-to',
'Data' => $qend});
$self->element({'Name' => 'Hsp_hit-from',
'Data' => $hstart });
$self->element({'Name' => 'Hsp_hit-to',
'Data' => $hend });
$self->element({'Name' => 'Hsp_align-len',
'Data' => $hsp_len});
$self->end_element({'Name' => 'Hsp'});
$lastquery = $qname;
$lasthit = $hname;
}
if( defined $lasthit && defined $lastquery ) {
if( $self->in_element('hit') ) {
$self->end_element({'Name' => 'Hit'});
}
$self->end_element({'Name' => 'Result'});
return $self->end_document;
}} |
sub start_element
{ my ($self,$data) = @_;
my $nm = $data->{'Name'};
if( my $type = $MODEMAP{$nm} ) {
$self->_mode($type);
if( $self->_will_handle($type) ) {
my $func = sprintf("start_%s",lc $type);
$self->_eventHandler->$func($data->{'Attributes'});
}
unshift @{$self->{'_elements'}}, $type;
}
if($nm eq 'Result') {
$self->{'_values'} = {};
$self->{'_result'}= undef;
$self->{'_mode'} = '';
}} |
sub end_element
{ my ($self,$data) = @_;
my $nm = $data->{'Name'};
my $rc;
if( my $type = $MODEMAP{$nm} ) {
if( $self->_will_handle($type) ) {
my $func = sprintf("end_%s",lc $type);
$rc = $self->_eventHandler->$func($self->{'_reporttype'},
$self->{'_values'});
}
shift @{$self->{'_elements'}};
} elsif( $MAPPING{$nm} ) {
if ( ref($MAPPING{$nm}) =~ /hash/i ) {
my $key = (keys %{$MAPPING{$nm}})[0];
$self->{'_values'}->{$key}->{$MAPPING{$nm}->{$key}} = $self->{'_last_data'};
} else {
$self->{'_values'}->{$MAPPING{$nm}} = $self->{'_last_data'};
}
} else {
$self->warn( "unknown nm $nm ignoring\n");
}
$self->{'_last_data'} = ''; $self->{'_result'} = $rc if( $nm eq 'Result' );
return $rc;} |
sub element
{ my ($self,$data) = @_;
$self->start_element($data);
$self->characters($data);
$self->end_element($data); } |
sub characters
{ my ($self,$data) = @_;
return unless ( defined $data->{'Data'} );
if( $data->{'Data'} =~ /^\s+$/ ) {
return unless $data->{'Name'} =~ /Hsp\_(midline|qseq|hseq)/;
}
if( $self->in_element('hsp') &&
$data->{'Name'} =~ /Hsp\_(qseq|hseq|midline)/ ) {
$self->{'_last_hspdata'}->{$data->{'Name'}} .= $data->{'Data'};
}
$self->{'_last_data'} = $data->{'Data'};} |
sub _mode
{ my ($self,$value) = @_;
if( defined $value) {
$self->{'_mode'} = $value;
}
return $self->{'_mode'};} |
sub within_element
{ my ($self,$name) = @_;
return 0 if ( ! defined $name &&
! defined $self->{'_elements'} ||
scalar @{$self->{'_elements'}} == 0) ;
foreach ( @{$self->{'_elements'}} ) {
if( $_ eq $name ) {
return 1;
}
}
return 0;} |
sub in_element
{ my ($self,$name) = @_;
return 0 if ! defined $self->{'_elements'}->[0];
return ( $self->{'_elements'}->[0] eq $name)} |
sub start_document
{ my ($self) = @_;
$self->{'_lasttype'} = '';
$self->{'_values'} = {};
$self->{'_result'}= undef;
$self->{'_mode'} = '';
$self->{'_elements'} = [];} |
sub end_document
{ my ($self,@args) = @_;
return $self->{'_result'};} |
sub result_count
{ my $self = shift;
return $self->{'_result_count'};} |
sub report_count
{ shift->result_count } |
sub program_name
{ my $self = shift;
$self->{'program_name'} = shift if @_;
return $self->{'program_name'} || $DefaultProgramName;} |
sub _will_handle
{ my ($self,$type) = @_;
my $handler = $self->{'_handler'};
my $will_handle = defined($self->{'_will_handle_cache'}->{$type})
? $self->{'_will_handle_cache'}->{$type}
: ($self->{'_will_handle_cache'}->{$type} =
$handler->will_handle($type));
return $will_handle ? $handler : undef;} |
General documentation
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
the web:
http://bugzilla.open-bio.org/
| AUTHOR - Jason Stajich | Top |
Email jason-at-bioperl-dot-org
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
Title : new
Usage : my $obj = new Bio::SearchIO::blasttable();
Function: Builds a new Bio::SearchIO::blasttable object
Returns : an instance of Bio::SearchIO::blasttable
Args :