Skip to content
Snippets Groups Projects
Commit f599362e authored by Alessandro Vullo's avatar Alessandro Vullo
Browse files

Removed deprecated methods

parent d4150b49
No related branches found
No related tags found
No related merge requests found
...@@ -1107,48 +1107,5 @@ sub is_circular { ...@@ -1107,48 +1107,5 @@ sub is_circular {
return $self->{'circular'}; return $self->{'circular'};
} }
# sub DEPRECATED METHODS #
###############################################################################
=head1 DEPRECATED METHODS
=cut
=head2 chr_name
DEPRECATED use seq_region_name() instead
=cut
sub chr_name {
deprecate("Use seq_region_name() instead");
seq_region_name(@_);
}
=head2 chr_start
DEPRECATED use start() instead
=cut
sub chr_start {
deprecate('Use start() instead');
start(@_);
}
=head2 chr_end
DEPRECATED use end() instead
Returntype : int
Exceptions : none
Caller : SliceAdaptor, general
=cut
sub chr_end {
deprecate('Use end() instead');
end(@_);
}
1; 1;
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