Description Usage Arguments Value
View source: R/differential_expression.R
FindAllMarkers SJ expression markers for all identity classes
Finds markers (differentially expressed SJs) for each of the identity classes in a dataset
1 2 3 4 5 6 | FindAllMarkers(object, genes.use = NULL, delta.threshold = 0.1,
test.use = "tobit", min.pct = 0.1, min.diff.pct = -Inf,
print.bar = TRUE, only.pos = FALSE, max.cells.per.ident = Inf,
return.thresh = 0.01, random.seed = 1, maxit = 10,
confounder = NULL, min.cells.gene = 3, min.cells.group = 3,
NT = 1, ...)
|
object |
ICASDataSet object |
genes.use |
SJs to test. Default is to use all SJs |
delta.threshold |
Limit testing to SJs which show, on average, at least delta.threshold between the two groups of samples. Default is 0.1 Increasing delta.threshold speeds up the function, but can miss weaker signals. |
test.use |
Denotes which test to use. Available options are:
|
min.pct |
only test SJs that are detected in a minimum fraction of min.pct cells in either of the two populations. Meant to speed up the function by not testing SJs that are very infrequently expressed. Default is 0.1 |
min.diff.pct |
only test SJs that show a minimum difference in the fraction of detection between the two groups. Set to -Inf by default |
print.bar |
Print a progress bar once expression testing begins (uses pbapply to do this) |
only.pos |
Only return positive markers (FALSE by default) |
max.cells.per.ident |
Down sample each identity class to a max number. Default is no downsampling. |
return.thresh |
Only return markers that have a p-value < return.thresh, or a power > return.thresh (if the test is ROC) |
random.seed |
Random seed for downsampling |
maxit |
(Only for test.use is BB) maximum number of (usually Fisher-scoring) iterations allowed. Decreasing maxit speeds up the function, but can weaken statistical reliability. |
confounder |
(Only for test.use is BB) The confounder to regress out. |
min.cells.gene |
Minimum number of cells expressing the SJ in at least one of the two groups, currently only used for poisson and negative binomial tests |
min.cells.group |
Minimum number of cells in one of the groups |
NT |
cores for parallel (Currently only support roc test) |
... |
Additional parameters to pass to specific DE functions |
Matrix containing a ranked list of putative markers, and associated statistics (p-values, ROC score, etc.)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.