median_AB.Rd
median_AB
calculates median allelic bias of a given locus, i.e. the heterozygous reference allele ratio.
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 allelic bias is returned (reference over total allele ratio).
median_AB(ref_counts, var_counts, allelefreq, inbr = 0)
Numeric vector. Reference counts.
Numeric vector. Variant counts.
Number. Allele frequency.
Number. Inbreeding coefficient (default = 0).
Median heterozygous allelic bias of ref_counts
and var_counts
taking into account
allelefreq
and inbr
.