Description Usage Arguments Value Author(s) Examples
Calls the FindAllMarkers function from the Seurat package with a Seurat object and returns the PValues associated with that object
1 | getPValues(SData)
|
SData |
Seurat object containing single cell RNA seq data |
Returns a data frame containing the pvalues for each gene in the data corresponding to the genes expression level
Matt Heffernan, University of Illinois at Chicago
1 2 3 4 5 6 7 8 9 10 11 12 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
PValues <- getPValues(SData)
## The function is currently defined as
function (SData)
{
PValues <- FindAllMarkers(SData, return.thresh = 1, logfc.threshold = 0)
return(PValues)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.