Muspelling chunck -> chunk

This commit is contained in:
Eric Coissac
2024-08-01 16:43:23 +02:00
parent 882cc82f23
commit 776b8f75b7
9 changed files with 26 additions and 25 deletions

View File

@ -63,10 +63,10 @@ func ISequenceChunk(iterator obiiter.IBioSequence,
jobDone.Wait()
order := 0
for i, chunck := range chunks {
for i, chunk := range chunks {
if len(*chunck) > 0 {
newIter.Push(obiiter.MakeBioSequenceBatch(sources[i], order, *chunck))
if len(*chunk) > 0 {
newIter.Push(obiiter.MakeBioSequenceBatch(sources[i], order, *chunk))
order++
}