Changes to be committed:

modified:   pkg/obingslibrary/multimatch.go
	modified:   pkg/obioptions/version.go
This commit is contained in:
Eric Coissac
2025-06-17 09:06:42 +02:00
parent 38dcd98d4a
commit 1c6ab1c559
2 changed files with 9 additions and 1 deletions

View File

@ -237,6 +237,14 @@ func (marker *Marker) beginFixedTagExtractor(
return ""
}
fe := begin - spacer
if fb > fe {
log.Panicf("On sequence: %s, begin %d is greater than end %d for a tag length of %d - begin:%d spacer:%d",
sequence.Id(),
fb, fe, taglength, begin, spacer,
)
}
return sequence.String()[fb:(begin - spacer)]
}