Rename the Length methods Len to follow GO standart

This commit is contained in:
2022-11-17 11:09:58 +01:00
parent eb32089305
commit 29563aa94e
30 changed files with 134 additions and 130 deletions

View File

@ -58,7 +58,7 @@ var _FourBitsBaseDecode = []byte{
// A byte slice can be provided (buffer) to preveent allocation of a new
// memory chunk by th function.
func Encode4bits(seq *obiseq.BioSequence, buffer []byte) []byte {
length := seq.Length()
length := seq.Len()
rawseq := seq.Sequence()
if buffer == nil {