Skip to content

Commit

Permalink
fix for old fasta method delegation
Browse files Browse the repository at this point in the history
  • Loading branch information
William McLaren committed Aug 22, 2017
1 parent bfa3dd1 commit d9f5c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/Variation/Utils/FastaSequence.pm
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ sub _new_slice_seq {
if(!($fa_length && $fa_length > 0) && $self->can('_fasta_old_db_seq')) {
print STDERR "USING DATABASE\n" if $DEBUG;
return
defined($start) || defined($end) || defined($strand) ?
scalar(@_) > 1 ?
$self->_fasta_old_db_subseq($start, $end, $strand) :
$self->_fasta_old_db_seq();
}
Expand Down

0 comments on commit d9f5c07

Please sign in to comment.