diff --git a/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm index c7a437e8e4e903d98978e4d200b93954223b3b2f..a83919ebca3f5f6f80ad45f96cad43069168232f 100644 --- a/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm +++ b/modules/Bio/EnsEMBL/DBSQL/ExonAdaptor.pm @@ -631,8 +631,7 @@ FEATURE: while ( $sth->fetch() ) { } # - # If a destination slice was provided convert the coords. If the - # dest_slice starts at 1 and is foward strand, nothing needs doing. + # If a destination slice was provided convert the coords. # if ( defined($dest_slice) ) { if ( $dest_slice_strand == 1 ) { @@ -707,6 +706,7 @@ FEATURE: while ( $sth->fetch() ) { } ## end if ( $seq_region_start...) } else { # Non-circular chromosome. + my $tmp_seq_region_start = $seq_region_start; $seq_region_start = $dest_slice_end - $seq_region_end + 1; $seq_region_end = $dest_slice_end - $tmp_seq_region_start + 1;