Description Usage Arguments Details Value Author(s) Examples
Subtitle
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 | ## S4 method for signature 'CIMseqMultiplets'
getData(x, n = NULL)
## S4 replacement method for signature 'CIMseqMultiplets'
getData(x, n = NULL) <- value
## S4 method for signature 'CIMseqMultiplets'
c(x, ...)
CIMseqMultiplets(counts, ...)
## S4 method for signature 'missing'
CIMseqMultiplets(counts, ...)
## S4 method for signature 'matrix'
CIMseqMultiplets(
counts,
counts.ercc = matrix(nrow = 0, ncol = 0),
features,
norm.to = 1e+06,
...
)
## S4 method for signature 'CIMseqMultiplets'
initialize(.Object, ..., counts, counts.log, counts.cpm, counts.ercc, features)
## S4 method for signature 'CIMseqMultiplets'
show(object)
|
x |
CIMseqMultiplets; CIMseqMultiplets object. |
n |
Data to extract from CIMseqMultiplets object. |
value |
Replacment value. |
... |
additional arguments to pass on |
counts |
matrix; Counts matrix with samples as columns and genes as rows. |
counts.ercc |
matrix; A matrix containing ercc spike-in reads. |
features |
numeric; The indexes of the features/genes for use in deconvolution. |
.Object |
Internal object. |
counts.log |
matrix; Log2 normalized counts per million. |
counts.cpm |
matrix; Normalized counts per million. |
object |
CIMseqMultiplets; A CIMseqMultiplets to show. |
Imports count, count.ercc, and feature data to a CIMseqSinglets object for sequenced multiplets.
CIMseqMultiplets object.
Jason T. Serviss
1 2 3 4 | s <- grepl("^s", colnames(testCounts))
ercc <- grepl("^ERCC\\-[0-9]*$", rownames(testCounts))
features <- selectTopMax(testCounts[!ercc, s], 2000)
cObj <- CIMseqMultiplets(testCounts[!ercc, !s], testCounts[ercc, !s], features)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.