| readDcp {dChipIO} | R Documentation |
Reads a dChip DCP file.
readDcp(con, fields=c("rawIntensities", "normalizedIntensities", "calls", "thetas", "thetaStds", "excludes"), cells=NULL, units=NULL, .nbrOfUnits=NULL, ...)
con |
A connection or a character filename. |
fields |
A character vector specifying the fields to be read. |
cells |
An integer vector specifying the indices of the cell
data to be read. |
units |
An integer vector specifying the indices of the unit
data to be read. |
.nbrOfUnits |
A integer specifying the number of units available
in the file. If NULL, this is inferred from the file size and the
file header. The dChip software itself instead uses the corrsponding
value in the CDF.bin file, but that file is specified by the user
leaving room for errors. |
... |
Not used. |
Returns a list structure containing the file header and the
requested data fields.
Henrik Bengtsson (http://www.braju.com/R/)
To read only the DCP file header, see readDcpHeader().
path <- system.file("exData", package="dChipIO")
filename <- "Test3-1-121502.dcp"
pathname <- file.path(path, filename)
hdr <- readDcpHeader(pathname)
print(hdr)
data <- readDcp(pathname)
str(data)