Skip to content
Snippets Groups Projects
Commit e0a3cede authored by Laura Clarke's avatar Laura Clarke
Browse files

A base class for all ensembl classes to inherit from rather than directly...

A base class for all ensembl classes to inherit from rather than directly inheriting from Bio::Root::Root or
Bio::Root::RootI, for the moment this inherits from Bio::Root::Root so will only work with Bioperl 1.0 not 0.72 but this
can easily be changed if necessary
parent c7ddbcdf
No related branches found
No related tags found
No related merge requests found
package Bio::EnsEMBL::Root;
use Bio::Root::Root;
@ISA = qw(Bio::Root::Root);
sub new{
my($caller,@args) = @_;
my $self = {};
bless $self, $caller;
return $self;
}
sub DESTROY{
my ($self) = @_;
#print STDERR "destroying $self in Bio::EnsEMBL::Root\n";
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment