Description Arguments Details Value Author(s) See Also Examples
Import additional CEL files into a DataTreeSet and update ROOT
data file.
Usage
addData(object, celdir = NULL, celfiles = "", celnames = NULL, project = NULL, verbose = TRUE)
object |
object of class |
celdir |
system directory containing the CEL-files for corresponding scheme. |
celfiles |
optional vector of CEL-files to be imported. |
celnames |
optional vector of names which should replace the CEL-file names. |
project |
optional class |
verbose |
logical, if |
Import additional CEL-files and update ROOT
data file rootfile
.
To import CEL-files from different directories, vector celfiles
must contain the
full path for each CEL-file and celdir
must be celdir=NULL
.
A DataTreeSet
object.
Christian Stratowa
1 2 3 4 5 6 7 8 9 10 11 12 | ## get scheme and import subset of CEL-files from package
scheme.test3 <- root.scheme(paste(path.package("xps"),"schemes/SchemeTest3.root",sep="/"))
data.test3 <- import.data(scheme.test3,"tmp_test3",celdir=paste(path.package("xps"),"raw",sep="/"),
celfiles=c("TestA1.CEL","TestB2.CEL"),verbose=FALSE)
unlist(treeNames(data.test3))
## add further subset of CEL-files
data.test3 <- addData(data.test3,celdir=paste(path.package("xps"),"raw",sep="/"),
celfiles=c("TestA2.CEL","TestB1.CEL"),verbose=FALSE)
unlist(treeNames(data.test3))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.