Skip to content

Commit

Permalink
Fix typo (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
cossio committed Oct 14, 2022
1 parent da14bd9 commit e4c8997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/longsequences/longsequence.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ The `LongDNA` and `LongRNA` aliases use a DNAAlphabet{4}.
4 bits to internally store each element (and indeed `LongSequence` does).
If you are sure that you are working with sequences with no ambiguous nucleotides,
you can use `LongSeqeunces` parameterised with `DNAAlphabet{2}` instead.
you can use `LongSequences` parameterised with `DNAAlphabet{2}` instead.
`DNAAlphabet{2}` is an alphabet that uses two bits per base and limits to only
unambiguous nucleotide symbols (A,C,G,T).
Changing this single parameter, is all you need to do in order to benefit from memory savings.
Some computations that use bitwise operations will also be dramatically faster.
The same applies with `LongSeqeunce{RNAAlphabet{4}}`, simply replace the alphabet
The same applies with `LongSequence{RNAAlphabet{4}}`, simply replace the alphabet
parameter with `RNAAlphabet{2}` in order to benefit.
"""
mutable struct LongSequence{A <: Alphabet} <: BioSequence{A}
Expand Down

0 comments on commit e4c8997

Please sign in to comment.