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

Deprecating the fetch_nearest_Gene_by_Feature() method. It is unreliable and a...

Deprecating the fetch_nearest_Gene_by_Feature() method. It is unreliable and a replacement is being developed
parent b68a8e67
No related branches found
No related tags found
No related merge requests found
...@@ -1939,10 +1939,11 @@ sub fetch_all_by_transcript_supporting_evidence { ...@@ -1939,10 +1939,11 @@ sub fetch_all_by_transcript_supporting_evidence {
Arg [1] : Feature object Arg [1] : Feature object
Example : $genes = $gene_adaptor->fetch_nearest_Gene_by_Feature($feat); Example : $genes = $gene_adaptor->fetch_nearest_Gene_by_Feature($feat);
Description: Gets the nearest gene to the feature Description: DEPRECATED; BE AWARE THE RESULTS OF THIS METHOD ARE UNRELIABLE
ESPECIALLY WRT STRANDED AND STREAM.
Returntype : Listref of Bio::EnsEMBL::Gene, EMPTY list if no nearest Returntype : Listref of Bio::EnsEMBL::Gene, EMPTY list if no nearest
Caller : general Caller : general
Status : UnStable Status : DEPRECATED
=cut =cut
...@@ -1950,6 +1951,8 @@ sub fetch_nearest_Gene_by_Feature { ...@@ -1950,6 +1951,8 @@ sub fetch_nearest_Gene_by_Feature {
my $self = shift; my $self = shift;
my $feat = shift; my $feat = shift;
deprecate("fetch_nearest_Gene_by_Feature() is a deprecated method. Strand and stream implementations are unreliable. Please use with caution");
my $stranded = shift; my $stranded = shift;
my $stream = shift; # 1 up stream -1 downstream my $stream = shift; # 1 up stream -1 downstream
my @genes; my @genes;
......
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