Description Usage Arguments Details Value Author(s) See Also Examples
pedigreeDeleteDuplicates
removes duplicates
from a pedigree.
1 | pedigreeDeleteDuplicates(pedigree, duplicates)
|
pedigree |
A dataframe containing the pedigree information for the samples to be examined with columns labeled "family", "individ", "mother", "father" and "sex" containing the identifiers of the family, individual, individual's mother, individual's father and individual's sex (coded as "M" or "F") . |
duplicates |
dataframe with columns "family" (family id) and "individ" (individual id). |
The output of pedigreeCheck
can be provided
to pedigreeDeleteDuplicates
in order to generate a new
pedigree with duplicates removed.
The output of pedigreeDeleteDuplicates
is a pedigree
identical to pedigree
, but with duplicates removed.
Cecelia Laurie
pedigreeCheck
, pedigreePairwiseRelatedness
1 2 3 4 5 6 7 8 | family <- c(1,1,1,1,2,2,2,2)
individ <- c(1,2,3,3,4,5,6,6)
mother <- c(0,0,1,1,0,0,4,4)
father <- c(0,0,2,2,0,0,5,5)
sex <- c("F","M","F","F","F","F","M","M")
pedigree <- data.frame(family, individ, mother, father, sex, stringsAsFactors=FALSE)
duplicates <- pedigreeCheck(pedigree)$duplicates
pedigree.no.dups <- pedigreeDeleteDuplicates(pedigree, duplicates)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.