readFileSet {sesame} | R Documentation |
This function only reads the meta-data.
readFileSet(map_path)
map_path |
path of file to map (should contain valid _idx.rds index) |
a sesame::fileSet object
## create two samples fset <- initFileSet('mybetas2', 'HM27', c('s1','s2')) ## a hypothetical numeric array (can be beta values, intensities etc) hypothetical <- setNames(runif(fset$n), fset$probes) ## map the numeric to file mapFileSet(fset, 's1', hypothetical) ## read it from file fset <- readFileSet('mybetas2') ## get data sliceFileSet(fset, 's1', 'cg00000292')