Patch a bug in fastq reader

This commit is contained in:
Eric Coissac
2024-10-20 16:07:43 +02:00
parent 74280e4704
commit 9e8a7fd9be
5 changed files with 21 additions and 40 deletions

View File

@ -76,6 +76,8 @@ func ReadSeqFileChunk(
extbuff := buff[l:(l + fileChunkSize - 1)]
size, err = io.ReadFull(reader, extbuff)
buff = buff[0:(l + size)]
// log.Warnf("Splitter not found, attempting %d to read in %d B increments : len(buff) = %d/%d", ic, fileChunkSize, len(extbuff), len(buff))
}
fullbuff = buff