getPValues: getPValues

Description Usage Arguments Value Author(s) Examples

View source: R/SCRNA.R

Description

Calls the FindAllMarkers function from the Seurat package with a Seurat object and returns the PValues associated with that object

Usage

1
getPValues(SData)

Arguments

SData

Seurat object containing single cell RNA seq data

Value

Returns a data frame containing the pvalues for each gene in the data corresponding to the genes expression level

Author(s)

Matt Heffernan, University of Illinois at Chicago

Examples

 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)
  }

mheffe3/SCNVC documentation built on Dec. 21, 2021, 5:52 p.m.