Description Usage Arguments Details Value Note Author(s) References Examples
Exploratory analysis methods for cummeRbund RNA-Seq data.
1 2 3 4 | ## S4 method for signature 'CuffData'
csNMF(object,k,logMode=T,pseudocount=1,maxiter=1000,replicates=FALSE,fullnames=FALSE)
## S4 method for signature 'CuffFeatureSet'
csNMF(object,k,logMode=T,pseudocount=1,maxiter=1000,replicates=FALSE,fullnames=FALSE)
|
object |
The output of class CuffData or CuffFeatureSet from which to draw expression estimates. (e.g. genes(cuff) or custom feature set via getGenes() or getFeatures() ) |
k |
rank value for factorization |
logMode |
Logical value whether or not to use log-transformed FPKM values. [Default: TRUE] |
pseudocount |
Value added to FPKM to avoid log transformation issues. |
maxiter |
Maximum number of iterations for factorization [Default: 1000] |
replicates |
A logical value to indicate whether or not individual replicate expression estimates will be used. |
fullnames |
Logical passthrough value to fpkmMatrix whether or not to concatenate gene_short_name with tracking_id. [Default: FALSE] |
csNMF is a convenience method to invoke the nnmf() method from package:NMFN. This performs non-negative matrix factorization on the provided data and can be useful for many downstream applications.
csNMF returns W, H - decomposed matrices of input FPKM values. (See package:NMFN for details)
None.
Loyal A. Goff
None.
1 2 3 | data(sampleData)
csNMF(sampleGeneSet,4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.