Skip to content
Snippets Groups Projects
Commit 62224abf authored by Arne Stabenau's avatar Arne Stabenau
Browse files

some deprecated warnings

parent 959c15f0
No related branches found
No related tags found
No related merge requests found
......@@ -901,6 +901,8 @@ sub pep_coords {
# it would be handy to have a list of the peptide start end coords
# for each exon
my ($p,$f,$l) = caller;
$self->warn("$f:$l Calls to pep_coords should no longer be necessary. Please use pep2genomic");
my @starts;
my @ends;
......@@ -1023,6 +1025,9 @@ sub _get_cdna_coord_mapper {
sub find_coord {
my ($self,$coord,$type) = @_;
my ($p,$f,$l) = caller;
$self->warn("$f:$l find_coord is deprecated. Use pep2genomic");
my $count = 0;
my @exons = @{$self->get_all_Exons};
my $end = $#exons;
......
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