Skip to content
Snippets Groups Projects
Commit 2169f319 authored by Graham McVicker's avatar Graham McVicker
Browse files

removed use of contig() method from find_supporting_evidence method

parent 3b35eb22
No related branches found
No related tags found
No related merge requests found
......@@ -584,7 +584,7 @@ sub find_supporting_evidence {
$self->find_supporting_evidence(\@subf);
}
else {
if ($f->entire_seq()->name eq $self->contig()->name) {
if ($f->entire_seq()->name eq $self->slice()->name) {
if ($f->end >= $self->start && $f->start <= $self->end && $f->strand == $self->strand) {
$self->add_supporting_features($f);
}
......
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