Bio::EnsEMBL::ExternalData::Mole GeneName
Included librariesPackage variablesGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Included modules
Bio::EnsEMBL::ExternalData::Mole::DBSQL::GeneNameAdaptor
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
entry_id
No description
Code
name
No description
Code
name_type
No description
Code
new
No description
Code
Methods description
None available.
Methods code
entry_iddescriptionprevnextTop
sub entry_id {
  my $self = shift;
  $self->{'entry_id'} = shift if ( @_ );
  return $self->{'entry_id'};
}
namedescriptionprevnextTop
sub name {
  my $self = shift;
  $self->{'name'} = shift if ( @_ );
  return $self->{'name'};
}
name_typedescriptionprevnextTop
sub name_type {
  my $self = shift;
  $self->{'name_type'} = shift if ( @_ );
  return $self->{'name_type'};
}

1;
}
newdescriptionprevnextTop
sub new {
  my $caller = shift;

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

  my ($dbid, $entry_id, $adaptor, 
      $name, $name_type) =  
	  rearrange([qw(DBID
	                ENTRY_ID 
                        ADAPTOR
                        NAME
                        NAME_TYPE 
			)],@_);
  $self->dbID      ( $dbid );
  $self->entry_id  ( $entry_id );
  $self->adaptor   ( $adaptor );
  $self->name      ( $name );
  $self->name_type ( $name_type );
  return $self; # success - we hope!
}
General documentation
No general documentation available.