lrPC: Likelihood Ratio for Parent-Child / Paternity Index

View source: R/lrPC.R

lrPCR Documentation

Likelihood Ratio for Parent-Child / Paternity Index

Description

Calculates Likelihood Ratio comparing the probability of two profiles if they are indeed parent-child compared to unrelated. This is the paternity index or PI.

Usage

lrPC(parent, child, Freqs = NULL, nLoci = length(parent)/2, f = NULL, n = NULL)

Arguments

parent

A matrix consisting of 2 columns and nLoci rows. Each entry in the matrix is the (coded) allele held by the individual. This represents the alleged parent. The relationship is reflexive so it does not matter which profile is labelled parent and child.

child

See parent

Freqs

A list containing two lists labelled loci and freqs. The second list is a list of vectors containing the allele frequencies of each allele at each locus in the multiplex. This argument or both f and n must be specified

nLoci

The number of loci in the profiles

f

A concatenated vector of allele frequencies. Specifying this speeds up computation enormously

n

A vector of length nLoci giving the number of alleles at each locus. Specifying this in advance enormously speeds up computation

Value

A value between 0 and infinity representing support (or lack of support if the value is less than 1) for the hypothesis that the two profiles are parent and child. There is no mutation built into this calculation. This means that the LR will be zero if the profiles do not share at least one allele in common at each locus in the multiplex.

Author(s)

James M. Curran

References

Buckleton, J, Triggs, C.M., and Walsh, S.J. (2005)Forensic DNA Evidence Interpretation, CRC Press., Boca Raton, FL. p.410

See Also

lrSib, IBS

Examples


data(fbiCaucs)
P1 = randomProfile(fbiCaucs)
C1 = randomChild(P1, fbiCaucs)
lrPC(P1, C1, fbiCaucs)


relSim documentation built on Aug. 29, 2023, 9:07 a.m.