Nothing
ctrlsva<-function(rgSet,percvar=0.95,npc=1,flag=1)
{
if(!is(rgSet, "rgDataSet") & !is(rgSet, "RGChannelSet")){
stop("Input needs to an rgDataSet or an RGChannelSet\n")}
if(percvar<0 | percvar>1){stop("Percentage of variation threshold needs
to be between 0 and 1\n")}
if(is(rgSet, "rgDataSet")){ctrls<-metadata(rgSet)$ictrl
}else if(is(rgSet, "RGChannelSet")){
ctrls<-getProbeInfo(rgSet,type="Control")
ctrls <- ctrls[ctrls$Address %in% featureNames(rgSet),]
}
ctrl_r <- assays(rgSet)$Red[ctrls$Address[!(ctrls$Type %in% "NEGATIVE")],]
ctrl_g <- assays(rgSet)$Green[ctrls$Address[!(ctrls$Type %in% "NEGATIVE")],]
ctrl_nneg=rbind(ctrl_r,ctrl_g)
#PCA of control-probe intensities
pca <- prcomp(t(ctrl_nneg))
eigenvalue=pca$sdev^2
perc=eigenvalue/sum(eigenvalue)
if(flag==1){
npc=1
while(sum(perc[1:npc])<percvar){npc <- npc+1}
npc
ctrlsva=pca$x[,1:npc]
}else{ctrlsva=pca$x[,1:npc]}
cat(npc," surrogate variables explain ",sum(perc[1:npc])*100, "% of
data variation\n")
ctrlsva
}
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.