Bio::DB::GFF::Aggregator
none
Toolbar
Summary
Bio::DB::GFF::Aggregator::none -- No aggregation
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
use Bio::DB::GFF;
# Open the sequence database
my $db = Bio::DB::GFF->new( -adaptor => 'dbi:mysql',
-dsn => 'dbi:mysql:elegans42',
-aggregator => 'none'
);
Description
Bio::DB::GFF::Aggregator::none can be used to indicate that you do not
want any aggregation performed. It is equivalent to providing undef
to the -aggregator argument. It overrides disaggregate() and
aggregate() so that they do exactly nothing.
Methods
aggregate | No description | Code |
disaggregate | No description | Code |
Methods description
None available.
Methods code
sub aggregate
{ my $self = shift;
my $features = shift;
return; }
1; } |
sub disaggregate
{ my $self = shift;
my $types = shift;
} |
General documentation
No general documentation available.