if (require("AffymetrixDataTestFiles")) {
library("affxparser")
pathR <- system.file(package="AffymetrixDataTestFiles")
pathA <- file.path(pathR, "annotationData", "chipTypes", "Test3")
pathD <- file.path(pathR, "rawData", "FusionSDK_Test3", "Test3")
# Read CDF structure
cdf <- file.path(pathA, "1.XDA", "Test3.CDF")
hdr <- readCdfHeader(cdf)
Jall <- hdr$nunits
# Find all CEL files
cels <- list.files(path=pathD, pattern="[.]CEL$",
recursive=TRUE, full.names=TRUE)
# Various sets of indices to be read
idxsList <- list(
## readNothing=integer(0L), # FIX ME
readAll=NULL,
readOne=10L,
readSome=11:20,
readDouble=as.double(11:20),
outOfRange=-1L,
outOfRange=0L,
outOfRange=1e9L
)
# Read full file
data <- readCelUnits(cels, cdf=cdf)
str(head(data))
stopifnot(length(data) == Jall)
# Read different subsets of units
for (ii in seq_along(idxsList)) {
name <- names(idxsList)[ii]
message(sprintf("Testing readCelUnits() with '%s' indices...", name))
idxs <- idxsList[[ii]]
str(list(idxs=idxs))
if (grepl("outOfRange", name)) {
res <- tryCatch(readCelUnits(cels, units=idxs, cdf=cdf), error=function(ex) ex)
str(res)
stopifnot(inherits(res, "error"))
} else {
data <- readCelUnits(cels, units=idxs, cdf=cdf)
str(head(data))
J <- if (is.null(idxs)) Jall else length(idxs)
stopifnot(length(data) == J)
}
message(sprintf("Testing readCelUnits() with '%s' indices...done", name))
} # for (ii ...)
} # if (require("AffymetrixDataTestFiles"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.