Remove rawSeqStore.base and add rawSeqStore.posInSequence

This commit is contained in:
senhuang42
2020-10-07 13:56:25 -04:00
parent cfd2aec1b7
commit ef823e0299
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -94,8 +94,8 @@ typedef struct {
typedef struct {
rawSeq* seq; /* The start of the sequences */
BYTE const* base; /* The match state window base when LDMs were generated */
size_t pos; /* The position where reading stopped. <= size. */
size_t posInSequence; /* The position to start at within the sequence when starting a new block */
size_t size; /* The number of sequences. <= capacity. */
size_t capacity; /* The capacity starting from `seq` pointer */
} rawSeqStore_t;