NAME
GenOO::Transcript::UTR3 - Transcript part (coding sequence)
SYNOPSIS
# This is a L<GenOO::Transcript::Part> object corresponding to the 3'UTR region of a transcript
# To initialize
my $region = GenOO::Transcript::Part->new({
species => undef,
strand => undef, #required
chromosome => undef, #required
start => undef, #required
stop => undef, #required
name => undef,
sequence => undef,
transcript => undef, #backreference to a L<GenOO::Transcript> object
splice_starts => undef, #reference to an array of splice starts
splice_stops => undef, #reference to an array of splice stops
});
DESCRIPTION
Extends L<GenOO::Transcript::Part>
EXAMPLES
Not provided yet