Description Arguments Details Value Note Author(s) See Also Examples
Attach/remove probe sequence and/or GC content to/from SchemeTreeSet or to slot scheme
of DataTreeSet.
Usage
attachProbe(object, varlist)
attachProbeContentGC(object)
attachProbeSequence(object)
removeProbe(object)
removeProbeContentGC(object)
removeProbeSequence(object)
object |
Object of class |
varlist |
names of probe tree leaves to import to slot |
Function attachProbe exports leaves from probe tree of ROOT scheme file
and and saves the data as data.frame probe of slot scheme.
Following varlist parameters are valid:
fPosition: | probe interrogation position. | |
fSequence: | probe sequence. | |
fNumberGC: | number of G/C nucleotides in probe sequence. | |
fTm: | probe melting temperature dependent on G/C number. | |
fIsAntisense: | probe type (sense/antisense). |
Function attachProbeContentGC saves fNumberGC in data.frame probe of
SchemeTreeSet or in slot scheme of DataTreeSet.
Function attachProbeSequence saves fSequence in data.frame probe of
SchemeTreeSet.
Function removeProbe removes probe data from SchemeTreeSet or from
slot scheme of DataTreeSet and replaces data.frame probe with an
empty data.frame of dim(0,0).
A SchemeTreeSet object or DataTreeSet.
Do not use attachProbe unless you know that your computer has sufficient RAM,
especially for exon array schemes.
Christian Stratowa
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(chipProbe(scheme.test3))
scheme.test3 <- attachProbe(scheme.test3, varlist="fSequence:fNumberGC")
dim(chipProbe(scheme.test3))
head(chipProbe(scheme.test3))
scheme.test3 <- removeProbe(scheme.test3)
dim(chipProbe(scheme.test3))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.