3 Bio::DB::GFF::Aggregator::orf -- An aggregator for orf regions
9 # Open the sequence database
10 my $db = Bio::DB::GFF->new( -adaptor => 'dbi:mysql',
11 -dsn => 'dbi:mysql:elegans42',
12 -aggregator => ['orf','clone'],
15 ---------------------------
16 Aggregator method: orf
19 ---------------------------
23 Bio::DB::GFF::Aggregator::orf was written to work with the "cds"
24 glyph. GFF files. It aggregates raw "ORF" features into "coding"
25 features. This is basically identical to the "coding" aggregator,
26 except that it looks for features of type "ORF" rather than "cds".
30 package Bio
::DB
::GFF
::Aggregator
::orf
;
33 use Bio
::DB
::GFF
::Aggregator
;
35 use base
qw(Bio::DB::GFF::Aggregator);
40 Usage : $aggregator->method
41 Function: return the method for the composite object
42 Returns : the string "orf"
50 # sub require_whole_object { 1; }
55 Usage : $aggregator->part_names
56 Function: return the methods for the sub-parts
57 Returns : the list "CDS"
77 L<Bio::DB::GFF>, L<Bio::DB::GFF::coding>,
78 L<Bio::DB::GFF::Aggregator>, L<Bio::Graphics::Glyph::cds>
83 Lincoln Stein E<lt>lstein@cshl.orgE<gt>.
85 Copyright (c) 2001 Cold Spring Harbor Laboratory.
87 This library is free software; you can redistribute it and/or modify
88 it under the same terms as Perl itself.