Bio::EnsEMBL::ExternalData::Mole Location
Included librariesPackage variablesGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Included modules
Bio::EnsEMBL::ExternalData::Mole::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
blastdbtracking_id
No description
Code
entry_id
No description
Code
file_offset
No description
Code
flat_file
No description
Code
new
No description
Code
Methods description
None available.
Methods code
blastdbtracking_iddescriptionprevnextTop
sub blastdbtracking_id {
  my $self = shift;
  $self->{'blastdbtracking_id'} = shift if ( @_ );
  return $self->{'blastdbtracking_id'};
}

1;
}
entry_iddescriptionprevnextTop
sub entry_id {
  my $self = shift;
  $self->{'entry_id'} = shift if ( @_ );
  return $self->{'entry_id'};
}
file_offsetdescriptionprevnextTop
sub file_offset {
  my $self = shift;
  $self->{'file_offset'} = shift if ( @_ );
  return $self->{'file_offset'};
}
flat_filedescriptionprevnextTop
sub flat_file {
  my $self = shift;
  $self->{'flat_file'} = shift if ( @_ );
  return $self->{'flat_file'};
}
newdescriptionprevnextTop
sub new {
  my $caller = shift;

  my $class = ref($caller) || $caller;
  my $self = $class->SUPER::new(@_);

  my ($entry_id, $adaptor, 
      $flat_file, $file_offset,
      $blastdbtracking_id) =  
	  rearrange([qw(ENTRY_ID 
                        ADAPTOR
                        FLAT_FILE
                        FILE_OFFSET 
                        BLASTDBTRACKING_ID
			)],@_);
  $self->entry_id           ( $entry_id );
  $self->adaptor            ( $adaptor );
  $self->flat_file          ( $flat_file );
  $self->file_offset        ( $file_offset );
  $self->blastdbtracking_id ( $blastdbtracking_id );
  return $self; # success - we hope!
}
General documentation
No general documentation available.