readTCGA(filename, sep = "\t", keyName = "Composite Element REF", Betaname = "Beta_value",
pData = NULL, array = "IlluminaHumanMethylation450k",
annotation = .default.450k.annotation, mergeManifest = FALSE,
showProgress = TRUE)
DataFrame
or data.frame
describing the samples represented by the columns of
mat
. If the rownames of the pData
don't match the colnames
of mat
these colnames will be changed. If pData
is not
supplied, a minimal DataFrame
is created.makeGenomicRatioSetFromMatrix
. It assumes a very specific
format, used by TCGA, and then uses the fread
function in the install.packages("data.table")
. We use this
package because the files too large for read.table
.
Currently, an example of a file that this function reads is here:
makeGenomicRatioSetFromMatrix
filename <- "example.txt" ##file must be in the specicif TCGA format
readTCGA(filename)
Run the code above in your browser using DataLab