~ubuntu-branches/ubuntu/raring/bioperl/raring

« back to all changes in this revision

Viewing changes to Bio/DB/GFF/Aggregator/alignment.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2008-03-18 14:44:57 UTC
  • mfrom: (4 hardy)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20080318144457-1jjoztrvqwf0gruk
* debian/control:
  - Removed MIA Matt Hope (dopey) from the Uploaders field.
    Thank you for your work, Matt. I hope you are doing well.
  - Downgraded some recommended package to the 'Suggests' priority,
    according to the following discussion on Upstream's mail list.
    http://bioperl.org/pipermail/bioperl-l/2008-March/027379.html
    (Closes: #448890)
* debian/copyright converted to machine-readable format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 -----------------------------
16
16
 Aggregator method: alignment
17
17
 Main method:       (none)
18
 
 Sub methods:       similarity, HSP
 
18
 Sub methods:       nucleotide_match,EST_match,cDNA_match,expressed_sequence_match,
 
19
                    translated_nucleotide_match,protein_match,HSP
19
20
 -----------------------------
20
21
 
21
22
=head1 DESCRIPTION
37
38
 
38
39
use strict;
39
40
 
40
 
use Bio::DB::GFF::Aggregator;
41
 
use vars qw(@ISA);
42
41
 
43
 
@ISA = qw(Bio::DB::GFF::Aggregator);
 
42
use base qw(Bio::DB::GFF::Aggregator);
44
43
 
45
44
=head2 aggregate
46
45
 
122
121
 Title   : part_names
123
122
 Usage   : $aggregator->part_names
124
123
 Function: return the methods for the sub-parts
125
 
 Returns : the list ("similarity","HSP")
 
124
 Returns : the full list of aggregated methods
126
125
 Args    : none
127
126
 Status  : Public
128
127
 
130
129
 
131
130
sub part_names {
132
131
  my $self = shift;
133
 
  return qw(similarity HSP);
 
132
 return qw(nucleotide_match EST_match cDNA_match
 
133
           expressed_sequence_match
 
134
           translated_nucleotide_match
 
135
           protein_match HSP);
134
136
}
135
137
 
136
138
1;