Skip to content
Snippets Groups Projects
Commit ff9e128e authored by Ian Longden's avatar Ian Longden
Browse files

make sure the cache stores the same case as the original sequence else it will...

make sure the cache stores the same case as the original sequence else it will look wierd (as if softmasked) if you get it again using the cache
parent 6a05f88c
No related branches found
No related tags found
No related merge requests found
......@@ -470,7 +470,7 @@ sub _fetch_seq {
# always give back uppercased sequence so it can be properly softmasked
$entire_seq .= uc($tmp_seq);
$cache->{"$seq_region_id:$i"} = $tmp_seq;
$cache->{"$seq_region_id:$i"} = uc($tmp_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