Bio SearchIO
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Summary
Bio::SearchIO - Driver for parsing Sequence Database Searches
(BLAST, FASTA, ...)
Package variables
No package variables defined.
Included modules
Bio::SearchIO::SearchResultEventBuilder
Inherit
Bio::AnalysisParserI Bio::Event::EventGeneratorI Bio::Root::IO
Synopsis
   use Bio::SearchIO;
# format can be 'fasta', 'blast', 'exonerate', ...
my $searchio = new Bio::SearchIO( -format => 'blastxml',
-file => 'blastout.xml' );
while ( my $result = $searchio->next_result() ) {
while( my $hit = $result->next_hit ) {
# process the Bio::Search::Hit::HitI object
while( my $hsp = $hit->next_hsp ) {
# process the Bio::Search::HSP::HSPI object
}
}
}
Description
This is a driver for instantiating a parser for report files from
sequence database searches. This object serves as a wrapper for the
format parsers in Bio::SearchIO::* - you should not need to ever
use those format parsers directly. (For people used to the SeqIO
system it, we are deliberately using the same pattern).
Once you get a SearchIO object, calling next_result() gives you back
a Bio::Search::Result::ResultI compliant object, which is an object that
represents one Blast/Fasta/HMMER whatever report.
A list of module names and formats is below:
  blast      BLAST (WUBLAST, NCBIBLAST,bl2seq)   
fasta FASTA -m9 and -m0
blasttable BLAST -m9 or -m8 output (NCBI not WUBLAST tabular)
megablast MEGABLAST
psl UCSC PSL format
waba WABA output
axt AXT format
sim4 Sim4
hmmer HMMER hmmpfam and hmmsearch
exonerate Exonerate CIGAR and VULGAR format
blastxml NCBI BLAST XML
wise Genewise -genesf format
Also see the SearchIO HOWTO:
http://bioperl.open-bio.org/wiki/HOWTO:SearchIO
Methods
newDescriptionCode
newFhDescriptionCode
fhDescriptionCode
attach_EventHandlerDescriptionCode
_eventHandlerDescriptionCode
_initialize
No description
Code
next_resultDescriptionCode
write_resultDescriptionCode
writerDescriptionCode
result_countDescriptionCode
_load_format_moduleDescriptionCode
_guess_formatDescriptionCode
close
No description
Code
DESTROY
No description
Code
TIEHANDLE
No description
Code
READLINE
No description
Code
PRINT
No description
Code
Methods description
newcode    nextTop
 Title   : new
Usage : my $obj = new Bio::SearchIO();
Function: Builds a new Bio::SearchIO object
Returns : Bio::SearchIO initialized with the correct format
Args : -file => $filename
-format => format
-fh => filehandle to attach to
-result_factory => Object implementing Bio::Factory::ObjectFactoryI
-hit_factory => Object implementing Bio::Factory::ObjectFactoryI
-hsp_factory => Object implementing Bio::Factory::ObjectFactoryI
-writer => Object implementing Bio::SearchIO::SearchWriterI
-output_format => output format, which will dynamically load writer
See Bio::Factory::ObjectFactoryI, Bio::SearchIO::SearchWriterI
Any factory objects in the arguments are passed along to the
SearchResultEventBuilder object which holds these factories and sets
default ones if none are supplied as arguments.
newFhcodeprevnextTop
 Title   : newFh
Usage : $fh = Bio::SearchIO->newFh(-file=>$filename,
-format=>'Format')
Function: does a new() followed by an fh()
Example : $fh = Bio::SearchIO->newFh(-file=>$filename,
-format=>'Format')
$result = <$fh>; # read a ResultI object
print $fh $result; # write a ResultI object
Returns : filehandle tied to the Bio::SearchIO::Fh class
Args :
fhcodeprevnextTop
 Title   : fh
Usage : $obj->fh
Function:
Example : $fh = $obj->fh; # make a tied filehandle
$result = <$fh>; # read a ResultI object
print $fh $result; # write a ResultI object
Returns : filehandle tied to the Bio::SearchIO::Fh class
Args :
attach_EventHandlercodeprevnextTop
 Title   : attach_EventHandler
Usage : $parser->attatch_EventHandler($handler)
Function: Adds an event handler to listen for events
Returns : none
Args : Bio::SearchIO::EventHandlerI
See Bio::SearchIO::EventHandlerI
_eventHandlercodeprevnextTop
 Title   : _eventHandler
Usage : private
Function: Get the EventHandler
Returns : Bio::SearchIO::EventHandlerI
Args : none
See Bio::SearchIO::EventHandlerI
next_resultcodeprevnextTop
 Title   : next_result
Usage : $result = stream->next_result
Function: Reads the next ResultI object from the stream and returns it.
Certain driver modules may encounter entries in the stream that are either misformatted or that use syntax not yet understood by the driver. If such an incident is recoverable, e.g., by dismissing a feature of a feature table or some other non-mandatory part of an entry, the driver will issue a warning. In the case of a non-recoverable situation an exception will be thrown. Do not assume that you can resume parsing the same stream after catching the exception. Note that you can always turn recoverable errors into exceptions by calling $stream->verbose(2) (see Bio::Root::RootI POD page). Returns : A Bio::Search::Result::ResultI object Args : n/a
See Bio::Root::RootI
write_resultcodeprevnextTop
 Title   : write_result
Usage : $stream->write_result($result_result, @other_args)
Function: Writes data from the $result_result object into the stream.
: Delegates to the to_string() method of the associated
: WriterI object.
Returns : 1 for success and 0 for error
Args : Bio::Search:Result::ResultI object,
: plus any other arguments for the Writer
Throws : Bio::Root::Exception if a Writer has not been set.
See Bio::Root::Exception
writercodeprevnextTop
 Title   : writer
Usage : $writer = $stream->writer;
Function: Sets/Gets a SearchWriterI object to be used for this searchIO.
Returns : 1 for success and 0 for error
Args : Bio::SearchIO::SearchWriterI object (when setting)
Throws : Bio::Root::Exception if a non-Bio::SearchIO::SearchWriterI object
is passed in.
result_countcodeprevnextTop
 Title   : result_count
Usage : $num = $stream->result_count;
Function: Gets the number of Blast results that have been parsed.
Returns : integer
Args : none
Throws : none
_load_format_modulecodeprevnextTop
 Title   : _load_format_module
Usage : *INTERNAL SearchIO stuff*
Function: Loads up (like use) a module at run time on demand
Example :
Returns :
Args :
_guess_formatcodeprevnextTop
 Title   : _guess_format
Usage : $obj->_guess_format($filename)
Function:
Example :
Returns : guessed format of filename (lower case)
Args :
Methods code
newdescriptionprevnextTop
sub new {
  my($caller,@args) = @_;
  my $class = ref($caller) || $caller;
    
  # or do we want to call SUPER on an object if $caller is an
# object?
if( $class =~ /Bio::SearchIO::(\S+)/ ) { my ($self) = $class->SUPER::new(@args); $self->_initialize(@args); return $self; } else { my %param = @args; @param{ map { lc $_ } keys %param } = values %param; # lowercase keys
my $format = $param{'-format'} || $class->_guess_format( $param{'-file'} || $ARGV[0] ) || 'blast'; my $output_format = $param{'-output_format'}; my $writer = undef; if( defined $output_format ) { if( defined $param{'-writer'} ) { my $dummy = Bio::Root::Root->new(); $dummy->throw("Both writer and output format specified - not good"); } if( $output_format =~ /^blast$/i ) { $output_format = 'TextResultWriter'; } my $output_module = "Bio::SearchIO::Writer::".$output_format; $class->_load_module($output_module); $writer = $output_module->new(@args); push(@args,"-writer",$writer); } # normalize capitalization to lower case
$format = "\L$format"; return unless( $class->_load_format_module($format) ); return "Bio::SearchIO::${format}"->new(@args); }
}
newFhdescriptionprevnextTop
sub newFh {
  my $class = shift;
  return unless my $self = $class->new(@_);
  return $self->fh;
}
fhdescriptionprevnextTop
sub fh {
  my $self = shift;
  my $class = ref($self) || $self;
  my $s = Symbol::gensym;
  tie $$s,$class,$self;
  return $s;
}
attach_EventHandlerdescriptionprevnextTop
sub attach_EventHandler {
    my ($self,$handler) = @_;
    return if( ! $handler );
    if( ! $handler->isa('Bio::SearchIO::EventHandlerI') ) {
        $self->warn("Ignoring request to attatch handler ".ref($handler). ' because it is not a Bio::SearchIO::EventHandlerI');
    }
    $self->{'_handler'} = $handler;
    return;
}
_eventHandlerdescriptionprevnextTop
sub _eventHandler {
   my ($self) = @_;
   return $self->{'_handler'};
}
_initializedescriptionprevnextTop
sub _initialize {
    my($self, @args) = @_;
    $self->{'_handler'} = undef;
    # not really necessary unless we put more in RootI
#$self->SUPER::_initialize(@args);
# initialize the IO part
$self->_initialize_io(@args); $self->attach_EventHandler(new Bio::SearchIO::SearchResultEventBuilder(@args)); $self->{'_reporttype'} = ''; $self->{_notfirsttime} = 0; my ( $writer ) = $self->_rearrange([qw(WRITER)], @args); $self->writer( $writer ) if $writer;
}
next_resultdescriptionprevnextTop
sub next_result {
   my ($self) = @_;
   $self->throw_not_implemented;
}
write_resultdescriptionprevnextTop
sub write_result {
   my ($self, $result, @args) = @_;

   if( not ref($self->{'_result_writer'}) ) {
       $self->throw("ResultWriter not defined.");
   }
   @args = $self->{'_notfirsttime'} unless( @args );

   my $str = $self->writer->to_string( $result, @args);
   $self->{'_notfirsttime'} = 1;
   # print "Got string: \n$str\n";
$self->_print( "$str" ) if defined $str; return 1;
}
writerdescriptionprevnextTop
sub writer {
    my ($self, $writer) = @_;
    if( ref($writer) and $writer->isa( 'Bio::SearchIO::SearchWriterI' )) {
        $self->{'_result_writer'} = $writer;
    }
    elsif( defined $writer ) {
        $self->throw("Can't set ResultWriter. Not a Bio::SearchIO::SearchWriterI: $writer");
    }
    return $self->{'_result_writer'};
}
result_countdescriptionprevnextTop
sub result_count {
    my $self = shift;
    $self->throw_not_implemented;
}
_load_format_moduledescriptionprevnextTop
sub _load_format_module {
  my ($self,$format) = @_;
  my $module = "Bio::SearchIO::" . $format;
  my $ok;
  
  eval {
      $ok = $self->_load_module($module);
  };
  if ( $@ ) {
      print STDERR <<END
$self: $format cannot be found
Exception $@
For more information about the SearchIO system please see the SearchIO docs.
This includes ways of checking for formats at compile time, not run time
END
; } return $ok;
}
_guess_formatdescriptionprevnextTop
sub _guess_format {
   my $class = shift;
   return unless $_ = shift;
   return 'blast'   if (/\.(blast|t?bl\w)$/i );
   return 'fasta' if (/\.
(?: t? fas (?:ta)? |
m\d+ |
(?: t? (?: fa | fx | fy | ff | fs ) ) |
(?: (?:ss | os | ps) (?:earch)? ))
$/ix
); return 'blastxml' if ( /\.(blast)?xml$/i); return 'exonerate' if ( /\.exon(erate)?/i );
}
closedescriptionprevnextTop
sub close {
     my $self = shift;    

    if( $self->writer ) {
        $self->_print($self->writer->end_report());
	$self->{'_result_writer'}= undef;
    }
    $self->SUPER::close(@_);
}
DESTROYdescriptionprevnextTop
sub DESTROY {
    my $self = shift;
    $self->close() if defined $self->_fh;
    $self->SUPER::DESTROY;
}
TIEHANDLEdescriptionprevnextTop
sub TIEHANDLE {
  my $class = shift;
  return bless {processor => shift}, $class;
}
READLINEdescriptionprevnextTop
sub READLINE {
  my $self = shift;
  return $self->{'processor'}->next_result() unless wantarray;
  my (@list, $obj);
  push @list, $obj while $obj = $self->{'processor'}->next_result();
  return @list;
}
PRINTdescriptionprevnextTop
sub PRINT {
  my $self = shift;
  $self->{'processor'}->write_result(@_);
}
General documentation
FEEDBACKTop
Mailing ListsTop
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
Reporting BugsTop
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 & Steve ChervitzTop
Email jason-at-bioperl.org
Email sac-at-bioperl.org
APPENDIXTop
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _