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

@ -73,11 +73,11 @@ func ISequenceChunkOnDisk(iterator obiiter.IBioSequence,
panic(err)
}
source, chunck := iseq.Load()
source, chunk := iseq.Load()
newIter.Push(obiiter.MakeBioSequenceBatch(source, order, chunck))
newIter.Push(obiiter.MakeBioSequenceBatch(source, order, chunk))
log.Infof("Start processing of batch %d/%d : %d sequences",
order, nbatch, len(chunck))
order, nbatch, len(chunk))
}