Skip to content
Snippets Groups Projects
Commit 0cf82565 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

In _fetch_seq(): Remove unused vaiable, spotted by Michael S.

parent 04e70249
No related branches found
No related tags found
No related merge requests found
...@@ -466,7 +466,7 @@ sub _fetch_seq { ...@@ -466,7 +466,7 @@ sub _fetch_seq {
# return only the requested portion of the entire sequence # return only the requested portion of the entire sequence
my $min = ( $chunk_min << $SEQ_CHUNK_PWR ) + 1; my $min = ( $chunk_min << $SEQ_CHUNK_PWR ) + 1;
my $max = ( $chunk_max + 1 ) << $SEQ_CHUNK_PWR; # my $max = ( $chunk_max + 1 ) << $SEQ_CHUNK_PWR;
my $seq = substr( $entire_seq, $start - $min, $length ); my $seq = substr( $entire_seq, $start - $min, $length );
return \$seq; return \$seq;
......
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