NAME
GenOO::Intron - Intron object
SYNOPSIS
GenOO::Intron->new(
species => undef ,
strand => undef ,
chromosome => undef ,
start => undef ,
stop => undef ,
part_of => reference to a transcript object
);
|
DESCRIPTION
The intron class describes an intron 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 intron - i.e. if the intron is in the -1 strand
the start coordinate will be the 3p of the intron)
See L<GenOO::Region> and for more available methods
|
EXAMPLES
my $intron = GenOO::Intron->new(
strand => 1,
chromosome => 'chr11' ,
start => 8893144,
stop => 8911139,
);
my $intron_start = $intron ->start;
|