LFSClassic {LFSPRO} | R Documentation |
Use LFS Classic criteria to find out the TP53 mutation carriers in the family.
LFSClassic(fam.data, cancer.data, counselee.id)
fam.data |
Family information data. See fam.data for details. |
cancer.data |
Cancer information data. See cancer.data for details. |
counselee.id |
Data frame including two variables: fam.id (family id of counselees) and id (individual id of counselees). |
A data frame of three columns:fam.id, id and result. The result column is a vector of boolean variables for all the counselees indicating whether they are TP53 mutation carriers. TRUE: carrier. FALSE: non-carrier.
Gang Peng
Li, F. P., et al. (1988). A cancer family syndrome in twenty-four kindreds. Cancer Res, 48(18): 5358-5362.
options(stringsAsFactors = FALSE) fam.id <- c("fam1","fam2","fam2","fam2","fam2") id <- c(0,0,2,100,200) counselee.id <- data.frame(fam.id, id) LFSClassic(fam.data, cancer.data, counselee.id)