Add ldm_calculateMatchRange() function

This commit is contained in:
senhuang42
2020-10-07 13:56:25 -04:00
parent ef823e0299
commit a1ef2db5b2
2 changed files with 71 additions and 26 deletions
+3 -2
View File
@@ -94,8 +94,9 @@ typedef struct {
typedef struct {
rawSeq* seq; /* The start of the sequences */
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 pos; /* The index in this seqStore where reading stopped. <= size. */
size_t posInSequence; /* The position within the rawSeq at index 'pos' where reading
stopped. */
size_t size; /* The number of sequences. <= capacity. */
size_t capacity; /* The capacity starting from `seq` pointer */
} rawSeqStore_t;