diff --git a/modules/Bio/EnsEMBL/Slice.pm b/modules/Bio/EnsEMBL/Slice.pm index 125b9451c1f80c97e1c0a5a5ba510014d1eb6e94..73dcafa34c203a8ec2ffe7b29e08481ef43c3857 100644 --- a/modules/Bio/EnsEMBL/Slice.pm +++ b/modules/Bio/EnsEMBL/Slice.pm @@ -2994,6 +2994,18 @@ sub get_all_DASFactories { return [ $self->adaptor()->db()->_each_DASFeatureFactory ]; } +sub get_all_DASFeatures_dsn { + my ($self, $source_type, $dsn) = @_; + + if(!$self->adaptor()) { + warning("Cannot retrieve features without attached adaptor"); + return []; + } + my @X = grep { $_->adaptor->dsn eq $dsn } $self->adaptor()->db()->_each_DASFeatureFactory; + + return [ $X[0]->fetch_all_Features( $self, $source_type ) ]; +} + =head2 get_all_DASFeatures Arg [1] : none @@ -3009,19 +3021,6 @@ sub get_all_DASFactories { Status : Stable =cut - -sub get_all_DASFeatures_dsn { - my ($self, $source_type, $dsn) = @_; - - if(!$self->adaptor()) { - warning("Cannot retrieve features without attached adaptor"); - return []; - } - my @X = grep { $_->adaptor->dsn eq $dsn } $self->adaptor()->db()->_each_DASFeatureFactory; - - return [ $X[0]->fetch_all_Features( $self, $source_type ) ]; -} - sub get_all_DAS_Features{ my ($self) = @_;