https://github.com/kussell-lab/mcorr
Tip revision: 4adea90557f1e592123e073b46a859d879143a2a authored by Asher Preska Steinberg on 07 January 2022, 17:44:00 UTC
Fixing go.mod file
Fixing go.mod file
Tip revision: 4adea90
mapped_read.go
package main
// MappedRead contains the section of a read mapped to a reference genome.
type MappedRead struct {
Pos int
Seq []byte
Qual []byte
}
// Len return the lenght of a sequence.
func (m MappedRead) Len() int {
return len(m.Seq)
}