Skip to content
Snippets Groups Projects
Commit 89ee7b98 authored by Leo Gordon's avatar Leo Gordon
Browse files

bugfix [to 6d6edeb3] : make sure resource_class/resource_class_id is properly autoloaded in Worker

parent 387914cc
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,13 @@ use Bio::EnsEMBL::Hive::Utils ('stringify', 'throw');
use base ( 'Bio::EnsEMBL::Hive::Storable' );
=head1 AUTOLOADED
resource_class_id / resource_class
=cut
sub init {
my $self = shift;
......@@ -133,13 +140,6 @@ sub process_id {
}
sub resource_class_id {
my $self = shift;
$self->{'_resource_class_id'} = shift if(@_);
return $self->{'_resource_class_id'};
}
sub work_done {
my $self = shift;
$self->{'_work_done'} = shift if(@_);
......
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