ensembl
InterimTranscript
Toolbar
Package variables
No package variables defined.
Included modules
Synopsis
No synopsis!
Description
No description!
Methods
add_Exon | No description | Code |
add_StatMsg | No description | Code |
cdna_coding_end | No description | Code |
cdna_coding_start | No description | Code |
flush_Exons | No description | Code |
get_all_Exons | No description | Code |
get_all_StatMsgs | No description | Code |
last_StatMsg | No description | Code |
move_cdna_coding_end | No description | Code |
move_cdna_coding_start | No description | Code |
new | No description | Code |
stable_id | No description | Code |
version | No description | Code |
Methods description
None available.
Methods code
sub add_Exon
{ my $self = shift;
my $exon = shift;
push @{$self->{'exons'}}, $exon; } |
sub add_StatMsg
{ my $self = shift;
my $statMsg = shift;
push @{$self->{'StatMsgs'}}, $statMsg; } |
sub cdna_coding_end
{ my $self = shift;
$self->{'cdna_coding_end'} = shift if(@_);
return $self->{'cdna_coding_end'}; } |
sub cdna_coding_start
{ my $self = shift;
$self->{'cdna_coding_start'} = shift if(@_);
return $self->{'cdna_coding_start'}; } |
sub flush_Exons
{ my $self = shift;
$self->{'exons'} = []; } |
sub get_all_Exons
{ my $self = shift;
return $self->{'exons'}; } |
sub get_all_StatMsgs
{ my $self = shift;
return @{$self->{'StatMsgs'}}; } |
sub last_StatMsg
{ my $self = shift;
my @msgs = @{$self->{'StatMsgs'}};
return undef if(!@msgs);
return $msgs[$#msgs]; } |
sub move_cdna_coding_end
{ my $self = shift;
my $offset = shift;
$self->{'cdna_coding_end'} += $offset;
}
1; } |
sub move_cdna_coding_start
{ my $self = shift;
my $offset = shift;
$self->{'cdna_coding_start'} += $offset; } |
sub new
{ my $class = shift;
return bless {'exons' => [],
'StatsMsgs' => []}, $class; } |
sub stable_id
{ my $self = shift;
$self->{'stable_id'} = shift if(@_);
return $self->{'stable_id'}; } |
sub version
{ my $self = shift;
$self->{'version'} = shift if(@_);
return $self->{'version'}; } |
General documentation
No general documentation available.