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

« back to all changes in this revision

Viewing changes to Bio/DB/GFF/Aggregator/processed_transcript.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: processed_transcript
17
17
 Main method:       mRNA
18
 
 Sub methods:       CDS 5'-UTR 3'-UTR transcription_start_site polyA_site
 
18
 Sub methods:       CDS exon five_prime_UTR three_prime_UTR transcription_start_site polyA_site 5'-UTR 3'-UTR
19
19
 ------------------------------------------------------------------------
20
20
 
21
21
=head1 DESCRIPTION
22
22
 
23
23
Bio::DB::GFF::Aggregator::processed_transcript is one of the default
24
24
aggregators, and was written to be compatible with the Sequence
25
 
Ontology canonical gene.  It aggregates raw "CDS", "5'-UTR", "3'-UTR",
26
 
"transcription_start_site" and "polyA_site" features into "gene"
27
 
features.  The UTRs may also be named "untranslated_region,"
28
 
"five_prime_untranslated_region," or
29
 
"three_prime_untranslated_region."
 
25
Ontology canonical gene.  It aggregates raw "exon," "CDS",
 
26
"five_prime_UTR", "three_prime_UTR", "transcription_start_site" and
 
27
"polyA_site" features into "mRNA" features.  The UTRs may also be
 
28
named "untranslated_region," "five_prime_untranslated_region,"
 
29
"three_prime_untranslated_region,", "5'-UTR," and other synonyms.
30
30
 
31
31
=cut
32
32
 
33
33
package Bio::DB::GFF::Aggregator::processed_transcript;
34
34
 
35
35
use strict;
36
 
use Bio::DB::GFF::Aggregator;
37
36
 
38
 
use vars qw(@ISA);
39
 
@ISA = qw(Bio::DB::GFF::Aggregator);
 
37
use base qw(Bio::DB::GFF::Aggregator);
40
38
 
41
39
=head2 method
42
40
 
63
61
=cut
64
62
 
65
63
sub part_names {
66
 
  return qw(CDS 5'-UTR 3'-UTR transcription_start_site 
 
64
  return qw(CDS 5'-UTR 3'-UTR transcription_start_site
67
65
            polyA_site UTR five_prime_untranslated_region
68
 
            three_prime_untranslated_region);
 
66
            three_prime_untranslated_region
 
67
           five_prime_UTR three_prime_UTR exon);
69
68
}
70
69
 
71
70
=head2 main_name