Description Usage Arguments Value Examples
View source: R/calculate-expression.R
Calculate fragments per kilobase of exon per million reads mapped (FPKM) values for expression from counts for a set of features.
1 | calculateFPKM(object, effective_length, use.size.factors = TRUE)
|
object |
an |
effective_length |
vector of class |
use.size.factors |
a logical scalar, see |
Matrix of FPKM values.
1 2 3 4 5 | data("sc_example_counts")
data("sc_example_cell_info")
example_sceset <- newSCESet(countData = sc_example_counts)
effective_length <- rep(1000, 2000)
fpkm(example_sceset) <- calculateFPKM(example_sceset, effective_length)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.