Description Usage Arguments Details Author(s) Examples
Generic function getLabels
to extract labels given an
ID to genes or samples.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | getLabels(obj, labelID=NULL, sLabel=TRUE)
## Default S3 method:
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
## S3 method for class 'maigesDE'
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
## S3 method for class 'maigesDEcluster'
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
## S3 method for class 'RGList'
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
## S3 method for class 'MAList'
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
## S3 method for class 'marrayRaw'
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
## S3 method for class 'marrayNorm'
getLabels(obj=NULL, labelID=NULL, sLabel=TRUE)
|
obj |
object to look for labels. Methods defined for classes
|
labelID |
character string with label name to be searched. |
sLabel |
logical indicating search in the sample labels, defaults to TRUE. If FALSE search is done for gene labels. |
The name of gene labels are done by the names of the slot Glabels
in objects of classes maigesRaw
or
maiges
, the slot GeneInfo
in objects of classes
maigesDE
or maigesDEcluster
, the slot
genes
in objects of classes RGList
or
MAList
and the slot maGnames@maInfo
in
objects of classes marrayRaw
or
marrayNorm
.
Equivalently, the name of sample labels are done by the names of the
slots Slabels
, SampleInfo
, targets
and maTargets@maInfo
.
Gustavo H. Esteves <gesteves@vision.ime.usp.br>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Loading dataset
data(gastro)
## Getting the 'Tissue' label for samples in maigesRaw class object
getLabels(gastro.raw, "Tissue", sLabel=TRUE)
## Getting the 'Type' label for samples in maigesNorm class object
getLabels(gastro.summ, "Type", sLabel=TRUE)
## Getting the 'GeneName' label for genes (spots) in maigesRaw class object
getLabels(gastro.raw, "GeneName", sLabel=FALSE)
## Getting the 'Annot' label for samples in maigesNorm class object
getLabels(gastro.summ, "Annot", sLabel=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.