Bio::DB::SeqFeature::Store FeatureIterator
Other packages in the module: Bio::DB::SeqFeature::Store
Package variablesGeneral documentationMethods
Toolbar
WebCvs
Package variables
No package variables defined.
Synopsis
No synopsis!
Description
No description!
Methods
new
No description
Code
next_seq
No description
Code
commit
No description
Code
Methods description
None available.
Methods code
newdescriptionprevnextTop
sub new {
    my $self     = shift;
    my @features = @_;
    return bless\@ features,ref $self || $self;
}
next_seqdescriptionprevnextTop
sub next_seq {
  my $self  = shift;
  return unless @$self;
  return shift @$self;
}
commitdescriptionprevnextTop
sub commit {
 }# noop 
}
General documentation
BUGSTop
This is an early version, so there are certainly some bugs. Please
use the BioPerl bug tracking system to report bugs.
SEE ALSOTop
Bio::DB::SeqFeature,
Bio::DB::SeqFeature::Store::GFF3Loader,
Bio::DB::SeqFeature::Segment,
Bio::DB::SeqFeature::Store::DBI::mysql,
Bio::DB::SeqFeature::Store::berkeleydb
Bio::DB::SeqFeature::Store::memory
AUTHORTop
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 2006 Cold Spring Harbor Laboratory.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.