Bio::EnsEMBL
SeqFeatureI
Toolbar
Summary
Bio::EnsEMBL::SeqFeatureI
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
No synopsis!
Description
Do not use this class. It is deprecated and has been replaced by
Bio::EnsEMBL::Feature.
Methods
Methods description
Title : analysis Usage : $sf->analysis(); Function: Store details of the program/database and versions used to create this feature. Example : Returns : Args : |
Title : p_value Usage : $p_val = $feat->p_value() $feat->p_value($p_val) Function: get/set on p value information Returns : float Args : none if get, the new value if set |
Title : end_phase Usage : $end_phase = $feat->end_phase() $feat->end_phase($end_phase) Function: get/set on end phase of predicted exon feature Returns : [0,1,2] Args : none if get, 0,1 or 2 if set. |
Title : percent_id Usage : $pid = $feat->percent_id() $feat->percent_id($pid) Function: get/set on percentage identity information Returns : float Args : none if get, the new value if set |
Title : phase Usage : $phase = $feat->phase() $feat->phase($phase) Function: get/set on start phase of predicted exon feature Returns : [0,1,2] Args : none if get, 0,1 or 2 if set. |
Title : validate Usage : $sf->validate; Function: Checks whether all the data is present in the object. Example : Returns : Args : |
Methods code
sub analysis
{ my ($self,$value) = @_;
$self->throw("Have not implemeneted analysis"); } |
sub e_value
{ my ($self) = @_;
$self->throw("e value() not yet implemented"); } |
sub end_phase
{ my ($self) = @_;
$self->throw("end_phase() not yet implemented");
}
} |
sub id
{ my ($self,$value) = @_;
$self->throw("Have not implemented id"); } |
sub location
{ my ($self)= @_;
return $self;
}
1; } |
sub percent_id
{ my ($self) = @_;
$self->throw("percent_id() not yet implemented"); } |
sub phase
{ my ($self) = @_;
$self->throw("phase() not yet implemented"); } |
sub validate
{ my ($self,$value) = @_;
$self->throw("Have not implemeneted validate"); } |
General documentation
Copyright (c) 1999-2009 The European Bioinformatics Institute and
Genome Research Limited. All rights reserved.
This software is distributed under a modified Apache license.
For license details, please see
/info/about/code_licence.html
These methods must be implemented in all subclasses.