imprinting_est.Rd
imprinting_est
estimates the degree of imprinting using iterative likelihood ratio tests for a specific SNP,
going from imprinting = 0 to imprinting = 1 in steps of 0.01, performing LRTs along the way (against imprinting = 0), and finally retaining the best fit.
See the function pmf_impr
for what the degree of imprinting entails, mathematically
imprinting_est(ref_counts, var_counts, allelefreq, SE, inbr = 0)
Numeric list. Reference counts.
Numeric list. Variant counts.
Number. Allele frequency.
Number. Sequencing error rate.
Number. Degree of inbreeding (default = 0).
A list containing the following components:
The estimated degree of imprinting.
The test statistic of the likelihood ratio test against no imprinting.
The p-value of the likelihood ratio test against no imprinting.
A goodness-of-fit value based on count-corrected likelihood, i.e. mean log PMF-value according to pmf_impr
multiplied by each sample's coverage + 1 across samples of a locus.
imprinting_est(c(5, 8, 10, 3, 5, 6, 23), c(8, 8, 6, 4, 4, 10, 0), 0.5, 0.002)
#> $est_i
#> [1] 0
#>
#> $LRT
#> [1] 0
#>
#> $p_value
#> [1] 1
#>
#> $GOF_likelihood
#> [1] 0.389424
#>
imprinting_est(c(5, 0, 0, 3, 5, 1, 23), c(1, 8, 6, 2, 0, 10, 0), 0.5, 0.002, 0.12)
#> $est_i
#> [1] 0.81
#>
#> $LRT
#> [1] 4.60567
#>
#> $p_value
#> [1] 0.0159332
#>
#> $GOF_likelihood
#> [1] 0.3810867
#>