Bio::DB::GFF FeatureIterator
Other packages in the module: Bio::DB::GFF Bio::DB::GFF::ID_Iterator
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
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;
}


1;

__END__
}
General documentation
BUGSTop
Features can only belong to a single group at a time. This must be
addressed soon.
Start coordinate can be greater than stop coordinate for relative
addressing. This breaks strict BioPerl compatibility and must be
fixed.
SEE ALSOTop
Bio::DB::GFF::RelSegment,
Bio::DB::GFF::Aggregator,
Bio::DB::GFF::Feature,
Bio::DB::GFF::Adaptor::dbi::mysqlopt,
Bio::DB::GFF::Adaptor::dbi::oracle,
Bio::DB::GFF::Adaptor::memory
Bio::DB::GFF::Adaptor::berkeleydb
AUTHORTop
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 2001 Cold Spring Harbor Laboratory.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.