getExpData {RaceID} | R Documentation |
Function for extracting a filtered expression matrix from a RaceID SCseq
object
Description
This function for extracts a filtered expression matrix from a RaceID SCseq
object. The filterdata
function from
the RaceID package has to be run on the SCseq
object before.
Usage
getExpData(object, genes = NULL)
Arguments
object |
RaceID |
genes |
Vector of valid gene identifiers corresponding to valid rownames of the input expression data. An expression matrix is returned only for these genes.
Default is |
Value
noise Sparse Matrix with genes as rows and cells as columns after filtering.
Examples
sc <- SCseq(intestinalDataSmall)
sc <- filterdata(sc)
sc <- compdist(sc)
d <- getExpData(sc)
res <- pruneKnn(d,distM=sc@distances,knn=10,alpha=1,no_cores=1,FSelect=FALSE)
[Package RaceID version 0.3.5 Index]