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

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

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

  my ($dbid, $description, $adaptor
      ) =  
	  rearrange([qw(DBID
                        DESCRIPTION
                        ADAPTOR
			)],@_);

  $self->dbID          ( $dbid );
  $self->description   ( $description ) if (defined $description);
  $self->adaptor       ( $adaptor );
  return $self; # success - we hope!
}
General documentation
No general documentation available.