Skip to content
Snippets Groups Projects
Commit ba65ab72 authored by Andy Yates's avatar Andy Yates
Browse files

Letting users clear the sequence cache if they wish to

parent fd259cc8
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,21 @@ sub new {
return $self;
}
=head2 clear_cache
Example : $sa->clear_cache();
Description : Removes all entries from the associcated sequence cache
Returntype : None
Exceptions : None
=cut
sub clear_cache {
my ($self) = @_;
%{$self->{seq_cache}} = ();
return;
}
=head2 fetch_by_Slice_start_end_strand
......
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