View source: R/individual_distance.R
Lynch.distance | R Documentation |
Given two genotypes in the form of vectors of unique alleles, a dissimilarity is calculated as: 1 - (number of alleles in common)/(average number of alleles per genotype).
Lynch.distance(genotype1, genotype2, usatnt = NA, missing = -9)
genotype1 |
A vector containing all alleles for a particular sample and locus. Each allele is only present once in the vector. |
genotype2 |
A vector of the same form as |
usatnt |
The microsatellite repeat length for this locus (ignored by the function). |
missing |
The symbol used to indicate missing data in either genotype vector. |
Lynch (1990) defines a simple measure of similarity between DNA
fingerprints. This is 2 times the number of bands that two fingerprints
have in common, divided by the total number of bands that the two genotypes
have. Lynch.distance
returns a dissimilarity, which is 1 minus
the similarity.
If the first element of either or both input genotypes is equal to
missing
, NA is returned.
Otherwise, a numerical value is returned. This is one minus the similarity. The similarity is calculated as the number of alleles that the two genotypes have in common divided by the mean length of the two genotypes.
Lindsay V. Clark
Lynch, M. (1990) The similarity index and DNA fingerprinting. Molecular Biology and Evolution 7, 478-484.
Bruvo.distance
,
meandistance.matrix
Lynch.distance(c(100,102,104), c(100,104,108)) Lynch.distance(-9, c(102,104,110)) Lynch.distance(c(100), c(100,104,106))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.