process_input_seurat | R Documentation |
Finds differentially expressed genes, records adjusted P-value and filters
for values less than max_p
.
process_input_seurat( seurat, id_1, id_2 = NULL, group = NULL, cluster = NULL, max_p = 0.05 )
seurat |
Seurat object |
id_1 |
first identity |
id_2 |
optional: second identity; default all others |
group |
optional: subgroup of cluster |
cluster |
optional: cluster selected |
max_p |
P-value cutoff, only genes with P-values less than this will be returned |
tibble: "gene" gene names "value" gene values
seu_path <- system.file("extdata", "ex_seurat.rds", package = "E.PAGE") seurat <- readRDS(seu_path) input <- process_input_seurat(seurat, 0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.