3 Bio::DB::GFF::Aggregator::ucsc_ensgene -- UCSC ensGene aggregator
9 # Open the sequence database
10 my $db = Bio::DB::GFF->new( -adaptor => 'dbi:mysql',
11 -dsn => 'dbi:mysql:elegans42',
12 -aggregator => ['transcript','clone'],
15 -------------------------------------------------
16 Aggregator method: ensgene
17 Main method: transcript
19 -------------------------------------------------
23 L<Bio::DB::GFF::Aggregator::transcript>
27 package Bio
::DB
::GFF
::Aggregator
::ucsc_ensgene
;
31 use base
qw(Bio::DB::GFF::Aggregator);
37 Usage : $aggregator->method
38 Function: return the method for the composite object
39 Returns : the string "ensgene"
45 sub method
{ 'ensgene' }
50 Usage : $aggregator->part_names
51 Function: return the methods for the sub-parts
65 Usage : $aggregator->main_name
66 Function: return the method for the main component
67 Returns : the string "transcript:ensGene"
74 return 'transcript:ensGene';
87 L<Bio::DB::GFF>, L<Bio::DB::GFF::Aggregator>
91 Allen Day E<lt>allenday@ucla.eduE<gt>.
93 Copyright (c) 2002 Allen Day, University of California, Los Angeles.
95 This library is free software; you can redistribute it and/or modify
96 it under the same terms as Perl itself.