findMarkers_one_vs_all¶
findMarkers_one_vs_all
Description¶
Identify marker genes for all clusters in a one vs all manner.
Usage¶
findMarkers_one_vs_all(
  gobject,
  expression_values = c("normalized", "scaled", "custom"),
  cluster_column,
  subset_clusters = NULL,
  method = c("scran", "gini", "mast"),
  pval = 0.01,
  logFC = 0.5,
  min_genes = 10,
  min_expr_gini_score = 0.5,
  min_det_gini_score = 0.5,
  detection_threshold = 0,
  rank_score = 1,
  adjust_columns = NULL,
  verbose = TRUE,
  ...
)
Arguments¶
Argument  | 
Description  | 
|---|---|
  | 
giotto object  | 
  | 
gene expression values to use  | 
  | 
clusters to use  | 
  | 
selection of clusters to compare  | 
  | 
method to use to detect differentially expressed genes  | 
  | 
scran & mast: filter on minimal p-value  | 
  | 
scan & mast: filter on logFC  | 
  | 
minimum genes to keep per cluster, overrides pval and logFC  | 
  | 
gini: filter on minimum gini coefficient for expression  | 
  | 
gini: filter minimum gini coefficient for detection  | 
  | 
gini: detection threshold for gene expression  | 
  | 
gini: rank scores to include  | 
  | 
mast: column in pDataDT to adjust for (e.g. detection rate)  | 
  | 
be verbose  | 
  | 
additional parameters for the findMarkers function in scran or zlm function in MAST  | 
Details¶
Wrapper for all one vs all functions to detect marker genes for clusters.
Value¶
data.table with marker genes
Seealso¶
``findScranMarkers_one_vs_all` <#findscranmarkersonevsall>`_ , ``findGiniMarkers_one_vs_all` <#findginimarkersonevsall>`_ and ``findMastMarkers_one_vs_all` <#findmastmarkersonevsall>`_