| rcp2 | R Documentation | 
Modified RCP method to normalize user's data to a list of reference values
        rcp2(datMeth, reference, quantile.grid=seq(0.001,0.999,by=0.001))
| datMeth | A matrix with row for probes and column for samples | 
| reference | A data frame with two columns, "cg" for CpG names and "meth_mean" for reference values | 
| quantile.grid | Quantile grid used in linear regression | 
The function will normalize user data to a reference value distribution based on common set of probe between user data and reference data.
A matrix with same dimension of user data
Zongli Xu
Liang Niu, Zongli Xu and Jack A. Taylor RCP: a novel probe design bias correction method for Illumina Methylation BeadChip, Bioinformatics 2016
require(minfiData)
path <- file.path(find.package("minfiData"),"extdata")
#based on rgDataset
rgSet <- readidat(path = path,recursive = TRUE)
meth=getmeth(rgSet)
beta=getB(meth)
reference=data.frame(cg=rownames(beta),goldstandard=beta[,3])
reference=reference[sample(1:nrow(reference),2000),]
beta2=rcp2(beta,reference)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.