Description Usage Arguments Details Value Note Author(s) See Also Examples
Extracts FIRMA expression levels from data.frame data
.
1 2 3 | firma.expr(xps.data,
probeset = NULL,
option = "probeset")
|
xps.data |
object of class |
probeset |
transcriptID or probesetID or NULL. |
option |
option determining the |
Function firma.expr
returns the expression levels from slot data
for a given probeset
,
or for all probesets or transcripts in case of probeset=NULL
. Row names will be the Affymetrix
transcriptIDs, probesetIDs or exonIDs, respectively, dependent on the selected option
.
A data.frame
.
For option="probeset"
parameter probeset
should usually be the transcriptID in order to get
the expression levels for all probesetIDs of the corresponding transcriptID.
Christian Stratowa
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
## get transcript expression levels for all transcripts or for transcript=2429277
expr.firma <- firma.expr(sub.firma.ps, probeset=NULL, option="transcript")
expr.firma <- firma.expr(sub.firma.ps, probeset=2429277, option="transcript")
## get probeset expression levels for all probeset or for probeset=2429278
expr.firma <- firma.expr(sub.firma.ps, probeset=NULL, option="probeset")
expr.firma <- firma.expr(sub.firma.ps, probeset=2429278, option="probeset")
## get probeset expression levels for all probesets corresponding to transcript=2429277
expr.firma <- firma.expr(sub.firma.ps, probeset=2429277, option="probeset")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.