Skip to content
Snippets Groups Projects
Commit 18da1993 authored by Elia Stupka's avatar Elia Stupka
Browse files

Fixed to comply with updated new method and corrected inheritance tree

parent ad16bd8a
No related branches found
No related tags found
No related merge requests found
......@@ -69,13 +69,12 @@ use strict;
use Bio::EnsEMBL::SeqFeatureI;
use Bio::Root::RootI;
@ISA = qw(Bio::EnsEMBL::SeqFeatureI Bio::Root::RootI );
@ISA = qw(Bio::Root::RootI EnsEMBL::SeqFeatureI);
sub new {
my($class,@args) = @_;
my $self;
my($caller,@args) = @_;
$self = {};
my ($self) = $caller->SUPER::new(@args);
$self->{'_gsf_tag_hash'} = {};
$self->{'_gsf_sub_array'} = [];
......
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