Skip to content
Snippets Groups Projects
Commit 5f1436eb authored by Graham McVicker's avatar Graham McVicker
Browse files

tidied constructor

parent b2697d9c
No related branches found
No related tags found
No related merge requests found
......@@ -48,22 +48,15 @@ use Bio::EnsEMBL::Root;
@ISA = qw(Bio::EnsEMBL::Root);
# _initialize is where the heavy stuff will happen when new is called
sub new {
my($class,@args) = @_;
my $self = {};
bless $self,$class;
my $caller = shift;
my $class = ref($caller) || $caller;
# set stuff in self from @args
return $self; # success - we hope!
return bless {},$class;
}
=head2 start
Title : start
......
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