mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-12-08 16:50:27 +00:00
Force sequence reading to produce lowercase sequences.
Adds two columns to the obiclean ratio csv file
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
package obiseq
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"crypto/md5"
|
||||
"fmt"
|
||||
"strconv"
|
||||
@@ -370,7 +371,7 @@ func (s *BioSequence) SetSequence(sequence []byte) {
|
||||
if s.sequence != nil {
|
||||
RecycleSlice(&s.sequence)
|
||||
}
|
||||
s.sequence = sequence
|
||||
s.sequence = bytes.ToLower(sequence)
|
||||
}
|
||||
|
||||
// Setting the qualities of the BioSequence.
|
||||
|
||||
Reference in New Issue
Block a user