2 # BioPerl module for Bio::SeqFeature::Gene::ExonI
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Hilmar Lapp <hlapp@gmx.net>
8 # Copyright Hilmar Lapp
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
16 Bio::SeqFeature::Gene::ExonI - Interface for a feature representing an exon
20 See documentation of methods.
24 A feature representing an exon. An exon in this definition is
25 transcribed and at least for one particular transcript not spliced out
26 of the pre-mRNA. However, it does not necessarily code for amino acid.
32 User feedback is an integral part of the evolution of this
33 and other Bioperl modules. Send your comments and suggestions preferably
34 to one of the Bioperl mailing lists.
35 Your participation is much appreciated.
37 bioperl-l@bioperl.org - General discussion
38 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
42 Please direct usage questions or support issues to the mailing list:
44 I<bioperl-l@bioperl.org>
46 rather than to the module maintainer directly. Many experienced and
47 reponsive experts will be able look at the problem and quickly
48 address it. Please include a thorough description of the problem
49 with code and data examples if at all possible.
53 Report bugs to the Bioperl bug tracking system to help us keep track
54 the bugs and their resolution. Bug reports can be submitted via the
57 https://github.com/bioperl/bioperl-live/issues
59 =head1 AUTHOR - Hilmar Lapp
65 The rest of the documentation details each of the object methods.
66 Internal methods are usually preceded with a _
71 # Let the code begin...
74 package Bio
::SeqFeature
::Gene
::ExonI
;
77 use base
qw(Bio::SeqFeatureI);
83 Usage : if($exon->is_coding()) {
86 Function: Whether or not the exon codes for amino acid.
87 Returns : TRUE if the object represents a feature translated into protein,
96 $self->throw_not_implemented();
102 Usage : $cds = $exon->cds();
103 Function: Get the coding sequence of the exon as a sequence object.
105 The returned sequence object must be in frame 0, i.e., the first
108 An implementation may return undef, indicating that a coding
109 sequence does not exist, e.g. for a UTR (untranslated region).
111 Returns : A L<Bio::PrimarySeqI> implementing object.
119 $self->throw_not_implemented();