The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

GenOO::Exon - Exon object

SYNOPSIS

    # This object represents an exon of a transcript
    # It extends the L<GenOO::GenomicRegion> object
    
    # To initialize 
    GenOO::Exon->new(
        species      => undef,
        strand       => undef,           #required
        chromosome   => undef,           #required
        start        => undef,           #required
        stop         => undef,           #required
        part_of      => reference to a transcript object
    );

DESCRIPTION

    The exon class describes an exon of a transcript.
    It requires a strand (1,-1), a chromosome name, a genomic start and stop position (start is always the
    smallest coordinate in the genome and NOT the 5p of the exon - i.e. if the exon is in the -1 strand
    the start coordinate will be the 3p of the exon)
    See L<GenOO::Region> and for more available methods

EXAMPLES

    my $exon = GenOO::Exon->new(
        strand       => 1,                 #required
        chromosome   => 'chr11',           #required
        start        => 8893144,           #required
        stop         => 8911139,           #required
    );
   my $exon_start = $exon->start; #8893144