Nothing
##this function changes the Affymetrix cdf file name to the Bioconductor
##annotation name for that cdf file
## note: we had a hard time finding exact rules to match what is in the
## CEL file with what is in the CDF file
## ex: CEL says 'ecoli' while CDF says 'ecoligenome'
## or: CEL says '' while CDF says hu6800.1sq
cleancdfname <- function(cdfname, addcdf=TRUE) {
if( !is.character(cdfname) )
stop(paste("invalid CDF name:", cdfname))
if ( nchar(cdfname)[1] == 0 )
stop("supplied cdf name has zero length")
mapCdfName <- NULL # To appease R CMD check
mapCdfName <- local({
data("mapCdfName", package="affy", envir=environment())
get("mapCdfName")
})
i <- match(cdfname, mapCdfName$inCDF)
if (is.na(i)) {
tmp <- tolower(cdfname) #make lower case
tmp <- gsub("_", "", tmp) #take out underscore
tmp <- gsub("-", "", tmp) #take out underscore
tmp <- gsub("\ ", "", tmp) ##take out spaces
if (addcdf) {
## make sure we haven't already added "cdf"
endsWith <- substr(tmp, nchar(tmp)-2, nchar(tmp))
if (endsWith != "cdf")
tmp <- paste(tmp, "cdf", sep="")
}
} else {
tmp <- mapCdfName$inBioC[i]
}
return(tmp)
}
##this function gets the cdf from a celfile
whatcdf <- function(filename, compress=getOption("BioC")$affy$compress.cel)
return(read.celfile.header(as.character(filename))[[1]])
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.