Description Usage Arguments Value References Examples
By analyzing all possible combinations of a parent-offspring pedigree in which parental and/or offspring genotypes may be missing; as long as one child was genotyped, in certain cases it is possible an unequivocal imputation of the missing genotypes both in parents and children.
1 | alleImputer(data, invisibleOutput = TRUE, dataSummary = TRUE)
|
data |
Data containing the families' identifiers and the corresponding genetic data (or the path of the PED file). |
invisibleOutput |
Data are not shown by default. |
dataSummary |
A summary of the data is shown by default. |
Imputed markers, Homozygosity (HMZ) matrix, marker messages and number of unique alleles per marker.
Medina-Rodriguez, N. Santana A. et al. (2014) alleHap: an efficient algorithm to reconstruct zero-recombinant haplotypes from parent-offspring pedigrees. BMC Bioinformatics, 15, A6 (S-3).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Imputation of families containing parental missing data
simulatedFams <- alleSimulator(10,4,6,missParProb=0.2)
famsAlls <- simulatedFams[[1]] # Original data
alleImputer(famsAlls) # Imputed alleles (genotypes)
## Imputation of families containing offspring missing data
datasetAlls <- alleSimulator(10,4,6,missOffProb=0.2)
famsAlls <- simulatedFams[[1]] # Original data
alleImputer(famsAlls) # Imputed alleles (genotypes)
## Imputation of a family marker containing missing values in one parent and one child
infoFam <- data.frame(famID="FAM03",indID=1:5,patID=c(0,0,1,1,1),
matID=c(0,0,2,2,2),sex=c(1,2,1,2,1),phenot=0)
mkr <- rbind(father=c(NA,NA),mother=c(1,3),child1=c(1,1),child2=c(2,3),child3=c(NA,NA))
colnames(mkr) <- c("Mkr1_1","Mkr1_2")
famMkr <- cbind(infoFam,mkr) # Original data
alleImputer(famMkr) # Imputed alleles (genotypes)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.