You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we work out residuals between the theoretical COIs and the observed data.
This was done because initially we were using buckets to work out averages and then comparing those.
With the regression approach though we use the individual data. We could now construct a formal likelihood here, by saying that our observed data (whether method 1 or 2) is described by a Binomial distribution, with number of trials being the coverage and the number of successes being as.integer(wsmaf*coverage) (as.integer here just for rounding errors, wsmaf cam from doing reads/coverage initially) for Method 2.
So the Binomial likelihood approach is slightly higher for the same samples. Not sue will make a big difference but just flagging here to remind us to ask Bob about this when we go through the paper on his thoughts on this re simple residual
The text was updated successfully, but these errors were encountered:
Currently, we work out residuals between the theoretical COIs and the observed data.
This was done because initially we were using buckets to work out averages and then comparing those.
With the regression approach though we use the individual data. We could now construct a formal likelihood here, by saying that our observed data (whether method 1 or 2) is described by a Binomial distribution, with number of trials being the coverage and the number of successes being
as.integer(wsmaf*coverage)
(as.integer here just for rounding errors, wsmaf cam from doing reads/coverage initially) for Method 2.E.g demo for Method 2:
Just did a quick check to see how different these approaches are:
So the Binomial likelihood approach is slightly higher for the same samples. Not sue will make a big difference but just flagging here to remind us to ask Bob about this when we go through the paper on his thoughts on this re simple residual
The text was updated successfully, but these errors were encountered: