Description Usage Arguments Value Note Author(s) Examples
A tool to simplify the selection of probe information, so user does not need to use the SQL approaches.
| 1 | getProbeInfo(object, field, probeType = "pm", target = "core", sortBy = c("fid", "man_fsetid", "none"), ...)
 | 
| object | 
 | 
| field | character string with names of field(s) of interest to be obtained from database. | 
| probeType | character string: 'pm' or 'mm' | 
| target | Used only for Exon or Gene ST arrays: 'core', 'full', 'extended', 'probeset'. | 
| sortBy | Field to be used for sorting. | 
| ... | Arguments to be passed to  | 
A data.frame with the probe level information.
The code allows for querying info on MM probes, however it has been used mostly on PM probes.
Benilton Carvalho
| 1 2 3 4 5 6 7 8 9 | if (require(oligoData)){
   data(affyGeneFS)
   availProbeInfo(affyGeneFS)
   probeInfo <- getProbeInfo(affyGeneFS, c('fid', 'x', 'y', 'chrom'))
   head(probeInfo)
   ## Selecting antigenomic background probes
   agenGene <- getProbeInfo(affyGeneFS, field=c('fid', 'fsetid', 'type'), target='probeset', subset= type == 'control->bgp->antigenomic')
   head(agenGene)
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.