Description Arguments Details Value Author(s) See Also Examples
Get probe sequences for all or selected UNIT_IDs.
Usage
probeSequence(object, unitID = NULL)
object |
Object of class |
unitID |
optional vector of UNIT_IDs. |
Function probeSequence
returns a data.frame
containing column “ProbeSequence”
for all or selected the UNIT_ID(s).
A data.frame
.
Christian Stratowa
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## load ROOT scheme file
scheme.test3 <- root.scheme(paste(path.package("xps"),"schemes/SchemeTest3.root",sep="/"))
scheme.test3 <- attachProbeSequence(scheme.test3)
## get UNIT_ID for probeset ID
id <- probesetID2unitID(scheme.test3, "100084_at")
## get GC content
seq <- probeSequence(scheme.test3, unitID=id)
head(seq)
scheme.test3 <- removeProbeSequence(scheme.test3)
rm(scheme.test3)
gc()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.