median_imprinting.Rd
median_imprinting
calculates median imprinting of allelic counts for a locus.
It does this by ordering the samples according to degree of heterozygosity (i.e. minor over major allele count),
then calculating the location of the "median heterozyogous sample" assuming HWE given input parameters
(allelefreq
, inbr
) as round(number of samples \* allelefreq \* (1 - allelefreq) \* (1 - inbr))
,
2 times this unrounded number being the expected number of heterozygotes. Of this median heterozygous observation,
the degree of imprining is returned as 2 \* (0.5 - minor over major allele count)
.
median_imprinting(ref_counts, var_counts, allelefreq, inbr = 0)
Numeric vector. Reference counts.
Numeric vector. Variant counts.
Number. Allele frequency.
Number. Inbreeding coefficient (default = 0).
Median degree of imprinting of ref_counts
and var_counts
taking into account allelefreq
and inbr
.