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

Use numeric equality when comparing references together. See perlref for more details about why

parent e1599698
No related branches found
No related tags found
......@@ -70,7 +70,7 @@ sub new {
$self->{'strand'} = $e1->strand();
}
if ( $e1->slice() ne $e2->slice() ) {
if ( $e1->slice() != $e2->slice() ) {
if ( ( $e1->slice()->seq_region_name() ne
$e2->slice()->seq_region_name() )
&& ( $e1->slice()->coord_system_name() ne
......
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