mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-12-08 16:50:27 +00:00
correction of several small bugs
This commit is contained in:
@@ -36,8 +36,9 @@ func MakeNGSLibrary() NGSLibrary {
|
||||
}
|
||||
|
||||
func (library *NGSLibrary) GetMarker(forward, reverse string) (*Marker, bool) {
|
||||
pair := PrimerPair{strings.ToLower(forward),
|
||||
strings.ToLower(reverse)}
|
||||
forward = strings.ToLower(forward)
|
||||
reverse = strings.ToLower(reverse)
|
||||
pair := PrimerPair{forward, reverse}
|
||||
marker, ok := (library.Markers)[pair]
|
||||
|
||||
if ok {
|
||||
|
||||
Reference in New Issue
Block a user