3 Bio::DB::GFF::Aggregator::ucsc_genscan -- UCSC genscan 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: genscan
17 Main method: transcript
19 -------------------------------------------------
23 L<Bio::DB::GFF::Aggregator::transcript>
27 package Bio
::DB
::GFF
::Aggregator
::ucsc_genscan
;
31 use base
qw(Bio::DB::GFF::Aggregator);
36 Usage : $aggregator->method
37 Function: return the method for the composite object
38 Returns : the string "genscan"
44 sub method
{ 'genscan' }
49 Usage : $aggregator->part_names
50 Function: return the methods for the sub-parts
64 Usage : $aggregator->main_name
65 Function: return the method for the main component
66 Returns : the string "transcript:genscan"
73 return 'transcript:genscan';
86 L<Bio::DB::GFF>, L<Bio::DB::GFF::Aggregator>
90 Allen Day E<lt>allenday@ucla.eduE<gt>.
92 Copyright (c) 2002 Allen Day, University of California, Los Angeles.
94 This library is free software; you can redistribute it and/or modify
95 it under the same terms as Perl itself.