Description Usage Arguments Details Value Examples
View source: R/scDD-estimate.R
Estimate simulation parameters for the scDD simulation from a real dataset.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | scDDEstimate(
counts,
params = newSCDDParams(),
verbose = TRUE,
BPPARAM = SerialParam(),
...
)
## S3 method for class 'matrix'
scDDEstimate(
counts,
params = newSCDDParams(),
verbose = TRUE,
BPPARAM = SerialParam(),
conditions,
...
)
## S3 method for class 'SingleCellExperiment'
scDDEstimate(
counts,
params = newSCDDParams(),
verbose = TRUE,
BPPARAM = SerialParam(),
condition = "condition",
...
)
## Default S3 method:
scDDEstimate(
counts,
params = newSCDDParams(),
verbose = TRUE,
BPPARAM = SerialParam(),
condition,
...
)
|
counts |
either a counts matrix or a SingleCellExperiment object containing count data to estimate parameters from. |
params |
SCDDParams object to store estimated values in. |
verbose |
logical. Whether to show progress messages. |
BPPARAM |
A |
... |
further arguments passed to or from other methods. |
conditions |
Vector giving the condition that each cell belongs to. Conditions can be 1 or 2. |
condition |
String giving the column that represents biological group of interest. |
This function applies preprocess
to the counts then uses
scDD
to estimate the numbers of each gene type to
simulate. The output is then converted to a SCDDParams object. See
preprocess
and scDD
for details.
SCDDParams object containing the estimated parameters.
1 2 3 4 5 6 7 8 9 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.