Bio::EnsEMBL::ExternalData::CDSTrack Location
Included librariesPackage variablesGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Included modules
Bio::EnsEMBL::ExternalData::CDSTrack::DBSQL::LocationAdaptor
Bio::EnsEMBL::Storable
Bio::EnsEMBL::Utils::Argument qw ( rearrange )
Bio::EnsEMBL::Utils::Exception qw ( throw )
Inherit
Bio::EnsEMBL::Storable
Synopsis
No synopsis!
Description
No description!
Methods
exon_end
No description
Code
exon_start
No description
Code
new
No description
Code
Methods description
None available.
Methods code
exon_enddescriptionprevnextTop
sub exon_end {
  my $self = shift;
  $self->{'chr_stop'} = shift if ( @_ );
  return $self->{'chr_stop'};
}

1;
}
exon_startdescriptionprevnextTop
sub exon_start {
  my $self = shift;
  $self->{'chr_start'} = shift if ( @_ );
  return $self->{'chr_start'};
}
newdescriptionprevnextTop
sub new {
  my($class,@args) = @_;

  my $self = bless {},$class;

  my ($dbid, $exon_start, $exon_end, $adaptor) =  
	  rearrange([qw(DBID
	                EXON_START
                  EXON_END
                  ADAPTOR
			)],@args);
 
  $self->dbID        ( $dbid );
  $self->exon_start  ( $exon_start );
  $self->exon_end    ( $exon_end );
  $self->adaptor     ( $adaptor );
  
  return $self;
}
General documentation
No general documentation available.