Nothing
#
# Find all the descendants of a particular person,
# given a pedigree or a list
#
#descendant.pedigree(idlist, pedigree) {
descendant.pedigree <- function(idlist, id, dad.id, mom.id) {
child <- id[!(is.na(match(dad.id, idlist)) & is.na(match(mom.id, idlist)))]
descend <- NULL
while (length(child >0)) {
newchild <- id[!(is.na(match(dad.id, child)) &
is.na(match(mom.id, child)))]
descend <- unique(c(descend, child))
child <- newchild[is.na(match(newchild, c(idlist, descend)))]
}
descend
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.