Identify marker genes for all clusters in a one vs all manner based on scran's implementation of findMarkers.
findScranMarkers_one_vs_all(
gobject,
expression_values = c("normalized", "scaled", "custom"),
cluster_column,
subset_clusters = NULL,
pval = 0.01,
logFC = 0.5,
min_genes = 10,
verbose = TRUE,
...
)
giotto object
gene expression values to use
clusters to use
subset of clusters to use
filter on minimal p-value
filter on logFC
minimum genes to keep per cluster, overrides pval and logFC
be verbose
additional parameters for the findMarkers function in scran
data.table with marker genes
data(mini_giotto_single_cell)
scran_markers = findScranMarkers_one_vs_all(gobject = mini_giotto_single_cell,
cluster_column = 'leiden_clus')