3 Bio::DB::GFF::Aggregator::match -- Match aggregator
9 # Open the sequence database
10 my $db = Bio::DB::GFF->new( -adaptor => 'dbi:mysql',
11 -dsn => 'dbi:mysql:elegans42',
12 -aggregator => ['match'],
15 -------------------------------------------------
16 Aggregator method: match
18 Sub methods: similarity HSP
19 -------------------------------------------------
23 This aggregator is used for Sequence Ontology-compatible gapped
24 alignments, in which there is a single top-level alignment called
25 "match" and a series of subalignments called either "similarity" or
28 Also see the "alignment" aggregator.
32 package Bio
::DB
::GFF
::Aggregator
::match
;
36 use base
qw(Bio::DB::GFF::Aggregator);
41 Usage : $aggregator->method
42 Function: return the method for the composite object
43 Returns : the string "match"
49 sub method
{ 'match' }
54 Usage : $aggregator->part_names
55 Function: return the methods for the sub-parts
56 Returns : the list "similarity", "HSP"
63 return qw(similarity HSP);
69 Usage : $aggregator->main_name
70 Function: return the method for the main component
71 Returns : the string "match"
81 sub require_whole_object
{1}
93 L<Bio::DB::GFF>, L<Bio::DB::GFF::Aggregator>
97 Lincoln Stein E<lt>lstein@cshl.orgE<gt>.
99 Copyright (c) 2001 Cold Spring Harbor Laboratory.
101 This library is free software; you can redistribute it and/or modify
102 it under the same terms as Perl itself.