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

Laura detected subtle repeat_masked sequence bug. On reverse strand sequence,...

Laura detected subtle repeat_masked sequence bug. On reverse strand sequence, masking happened after reverse complementing, putting it into wrong spot
parent e4a29790
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@ use warnings;
use Bio::EnsEMBL::Slice;
use Bio::EnsEMBL::Utils::Argument qw(rearrange);
use Bio::EnsEMBL::Utils::Sequence qw(reverse_comp);
use vars qw(@ISA);
......@@ -270,12 +271,16 @@ sub subseq {
#
# get the dna
#
my $dna = $self->SUPER::subseq($start, $end, $strand);
my $dna = $self->SUPER::subseq($start, $end, 1 );
#
# mask the dna
#
$self->_mask_features(\$dna,$repeats,$soft_mask,$not_default_masking_cases);
if( $strand && $strand == -1 ) {
reverse_comp( \$dna );
}
return $dna;
}
......
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