Nothing
#############################################
### get mean snp intensity for each quartet
fromSnpToQuartet <- function(quartetInfo, profilSNP){
#which(colnames(profilSNP) == "fsetid" | colnames(profilSNP) == "Smoothing")
e <- which(colnames(quartetInfo) == "Smoothing")
if(length(e) > 0) quartetInfo <- quartetInfo[, -e]
profilSNP <- profilSNP[, which(colnames(profilSNP) == "fsetid" | colnames(profilSNP) == "Smoothing")]
dat <- merge(profilSNP, quartetInfo)
return(dat)
}
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.