Nothing
importFct_create_pData <- function(labels, labelValues, fcCols, type){
## Create phenodata for the expression sets.
if (type == "TR"){
dataTmp <- data.frame("label"=labels, "temperature"=labelValues,
"normCoeff"=NA, stringsAsFactors=FALSE,
row.names=fcCols)
metaTmp <- data.frame(labelDescription = c("Isobaric label",
"Temperature",
"Applied normalization coefficient"),
row.names = colnames(dataTmp))
} else if (type == "CCR"){
dataTmp <- data.frame("label"=labels, "concentration"=labelValues,
"normCoeff"=NA, stringsAsFactors=FALSE,
row.names=fcCols)
metaTmp <- data.frame(labelDescription = c("Isobaric label",
"Concentration",
"Applied normalization coefficient"),
row.names = colnames(dataTmp))
}
colInfo <- AnnotatedDataFrame(data=dataTmp, varMetadata=metaTmp)
return(colInfo)
}
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.