Description Usage Arguments Value Examples
View source: R/calculate-expression.R
Calculate which features are expressed in which cells using a threshold on observed counts, transcripts-per-million, counts-per-million, FPKM, or defined expression levels.
1 | calcIsExprs(object, lowerDetectionLimit = NULL, exprs_values = NULL)
|
object |
an SCESet object with expression and/or count data. |
lowerDetectionLimit |
numeric scalar giving the minimum expression level for an expression observation in a cell for it to qualify as expressed. |
exprs_values |
character scalar indicating whether the count data
( |
a logical matrix indicating whether or not a feature in a particular cell is expressed.
1 2 3 4 5 | data("sc_example_counts")
data("sc_example_cell_info")
example_sceset <- newSCESet(countData=sc_example_counts)
is_exprs(example_sceset) <- calcIsExprs(example_sceset, lowerDetectionLimit = 1,
exprs_values = "exprs")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.