findMastMarkers_one_vs_all¶
findMastMarkers_one_vs_all
Description¶
Identify marker genes for all clusters in a one vs all manner based on the MAST package.
Usage¶
findMastMarkers_one_vs_all(
  gobject,
  expression_values = c("normalized", "scaled", "custom"),
  cluster_column,
  subset_clusters = NULL,
  adjust_columns = NULL,
  pval = 0.001,
  logFC = 1,
  min_genes = 10,
  verbose = TRUE,
  ...
)
Arguments¶
| Argument | Description | 
|---|---|
| 
 | giotto object | 
| 
 | gene expression values to use | 
| 
 | clusters to use | 
| 
 | selection of clusters to compare | 
| 
 | column in pDataDT to adjust for (e.g. detection rate) | 
| 
 | filter on minimal p-value | 
| 
 | filter on logFC | 
| 
 | minimum genes to keep per cluster, overrides pval and logFC | 
| 
 | be verbose | 
| 
 | additional parameters for the zlm function in MAST | 
Value¶
data.table with marker genes
Seealso¶
``findMastMarkers` <#findmastmarkers>`_
Examples¶
data(mini_giotto_single_cell)
mast_markers = findMastMarkers_one_vs_all(gobject = mini_giotto_single_cell,
cluster_column = 'leiden_clus')