Bio::DB::HIV HIVAnnotProcessor
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Toolbar
WebCvs
Summary
HIVAnnotProcessor - Adds HIV-specific annotations to Bio::SeqIO streams
Package variables
No package variables defined.
Included modules
Bio::Root::Root
Inherit
Bio::Root::Root
Synopsis
   sub get_Stream_by_query {
my ($self, $query ) = @_;
my $stream = $self->get_seq_stream('-query' => $query, '-mode'=>'query');
return new Bio::DB::HIV::HIVAnnotProcessor( -hiv_query=>$query,
-source_stream=>$stream );
}
Description
Bio::DB::HIV::HIVAnnotProcessor is chained to the next_seq of a sequence stream returned from a query to the Los Alamos HIV sequence database made using Bio::DB::HIV and Bio::DB::Query::HIVQuery. It adds the annotations obtained in the Bio::DB::Query::HIVQuery to the Bio::Seq objects themselves via the $seq-E<gt>annotation method.
Methods
newDescriptionCode
source_streamDescriptionCode
next_seqDescriptionCode
write_seqDescriptionCode
hiv_queryDescriptionCode
Methods description
newcode    nextTop
 Title   : new
Usage : my $obj = new HIVAnnotProcessor();
Function: Builds a new HIVAnnotProcessor object
Returns : an instance of HIVAnnotProcessor
Args :
source_streamcodeprevnextTop
 Title   : source_stream
Usage : $hap->source_stream($newval)
Function:
Example :
Returns : value of source_stream (a scalar)
Args : on set, new value (a scalar or undef, optional)
next_seqcodeprevnextTop
 Title   : next_seq
Usage : $seqobj = stream->next_seq
Function: Reads the next sequence object from the stream,
: adds annotations from the HIVQuery object according
: to the sequence id, and returns sequence object
Returns : a Bio::Seq sequence object
Args : none
write_seqcodeprevnextTop
 Title   : write_seq
Usage : $seqobj->write_seq
Function: for HIVAnnotProcessor, throw an exception
Example :
Returns : Bio::Root::IOException
Args :
hiv_querycodeprevnextTop
 Title   : hiv_query
Usage : $obj->hiv_query($newval)
Function:
Example :
Returns : value of hiv_query (a Bio::DB::Query::HIVQuery object)
Args : on set, new value (an HIVQuery object, optional)
Methods code
newdescriptionprevnextTop
sub new {
    my($class,@args) = @_;
    my $self = $class->SUPER::new(@args);
    my ($hiv_query, $source_stream) =
	$self->_rearrange([qw(HIV_QUERY SOURCE_STREAM)], @args); 


    $hiv_query                  && $self->hiv_query($hiv_query);
    $source_stream              && $self->source_stream($source_stream);

    return $self;
}
source_streamdescriptionprevnextTop
sub source_stream {
    my $self = shift;
    if (@_) {
	$self->throw(-class=>'Bio::Root::BadParameter',
		     -text=>'Requires a Bio::SeqIO as argument',
		     -value=>$_[0]) unless $_[0]->isa('Bio::SeqIO');
    }
    return $self->{'source_stream'} = shift if @_;
    return $self->{'source_stream'};
}
next_seqdescriptionprevnextTop
sub next_seq {
    my $self = shift;
    my $q = $self->hiv_query;
    my $seqo = $self->source_stream->next_seq;
    return $seqo unless ($q && $seqo);
    
    my $ac = $q->get_annotations_by_id($seqo->primary_id);
    $seqo->annotation($ac) if $ac;
    my $acc = $q->get_accessions_by_id($seqo->primary_id);
    $seqo->accession_number($acc) if $acc;

    return $seqo;
}
write_seqdescriptionprevnextTop
sub write_seq {
   my ($self,@args) = @_;
   $self->throw(-class=>'Bio::Root::IOException',
		-text=>'This stream is read-only',
		-value=>"");
}
hiv_querydescriptionprevnextTop
sub hiv_query {
    my $self = shift;
    if (@_) {
	$self->throw(-class=>'Bio::Root::BadParameter',
		     -text=>'Requires a Bio::DB::Query::HIVQuery as argument',
		     -value=>$_[0]) unless ref $_[0] && $_[0]->isa('Bio::DB::Query::HIVQuery');
    }
    return $self->{'hiv_query'} = shift if @_;
    return $self->{'hiv_query'};
}


1;
}
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
Support Top
Please direct usage questions or support issues to the mailing list:
bioperl-l@bioperl.org
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
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:
  https://redmine.open-bio.org/projects/bioperl/
AUTHOR - Mark A. JensenTop
Email maj@fortinbras.us
CONTRIBUTORSTop
Mark A. Jensen
APPENDIXTop
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
ConstructorTop
Bio::Factory::SequenceProcessorI complianceTop
HIVAnnotProcessor-specific methodsTop