Fix off-by-one in HMM forward-backward posterior indexing#2519
Open
sirus20x6 wants to merge 1 commit intosamtools:developfrom
Open
Fix off-by-one in HMM forward-backward posterior indexing#2519sirus20x6 wants to merge 1 commit intosamtools:developfrom
sirus20x6 wants to merge 1 commit intosamtools:developfrom
Conversation
The fwd-bwd probability array returned by hmm_get_fwd_bwd_prob() reserves positions [0..nstates-1] for initial state probabilities, so site i's posteriors start at (i+1)*nstates, not i*nstates. This is encoded in the HMM_PPROB macro but was not followed in: - vcfroh.c flush_viterbi(): fwd[i*2+state] -> fwd[(i+1)*2+state] - vcfcnv.c cnv_flush_viterbi(): fwd+isite*nstates -> fwd+(isite+1)*nstates Also fix hmm_set_tprob() in HMM.c: when called a second time with a different ntprob, the old tprob_arr was never reallocated because the guard was `if (!hmm->tprob_arr)`. Now compare against the previous ntprob_arr value and realloc when the size changes.
37ec6ad to
2de686a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
fwd[i*2 + state]tofwd[(i+1)*2 + state]invcfroh.cand equivalent invcfcnv.c— thefwd[0..nstates-1]slot contains initial state probabilities, not site 0 posteriorshmm_set_tprob()inHMM.cto reallocatetprob_arrwhen called with a largerntprob, preventing heap buffer overflowTest plan