Description Usage Arguments Details Value Note Author(s) See Also Examples
Attach/remove scheme mask to/from SchemeTreeSet or to slot scheme
of DataTreeSet.
1 2 3 | attachMask(object)
removeMask(object)
|
object |
Object of class |
attachMask exports mask from scheme tree from ROOT scheme file
and and saves mask as data.frame mask of slot scheme.
removeMask removes mask from SchemeTreeSet or from slot scheme
of DataTreeSet and replaces data.frame mask with an empty data.frame
of dim(0,0).
A DataTreeSet object or SchemeTreeSet.
Do not use attachMask unless you know that your computer has sufficient RAM,
especially for exon array schemes.
Christian Stratowa
import.expr.scheme, import.exon.scheme
1 2 3 4 5 6 7 8 9 10 | ## load existing ROOT scheme file
scheme.test3 <- root.scheme(paste(path.package("xps"),"schemes/SchemeTest3.root",sep="/"))
dim(chipMask(scheme.test3))
scheme.test3 <- attachMask(scheme.test3)
dim(chipMask(scheme.test3))
head(chipMask(scheme.test3))
scheme.test3 <- removeMask(scheme.test3)
dim(chipMask(scheme.test3))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.