Description Usage Arguments Value Examples
Trims an input count matrix such that each value greater than a threshold value and each value less than a provided lower threshold value is trimmed to the lower treshold value.
1 | trimCounts(counts, trimValue = c(10, -10))
|
counts |
matrix |
trimValue |
where trimValue[1] for upper threshold and trimValue[2] as lower threshold (default is c(10,-10)) |
trimmed counts matrix
1 2 | data(sce_chcl, package = "scds")
assay(sce_chcl, "countsTrimmed") <- trimCounts(assay(sce_chcl, "counts"), c(10, -10))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.