tomoMatrix | R Documentation |
tomoMatrix
creates an object from raw read count matrix or normalized read count matrix.
tomoMatrix( matrix.count = NULL, matrix.normalized = NULL, min.section = 3, normalize = TRUE, normalize.method = "median", scale = TRUE )
matrix.count |
A numeric matrix or matrix-like data stucture that can be coverted to matrix, with genes with rows, sections as columns and values as raw read counts. Columns should be sorted according to section numbers. |
matrix.normalized |
A numeric matrix or matrix-like data stucture that can be coverted to matrix, with genes as rows, sections as columns and values as normalized read counts. Columns should be sorted according to order of sections. |
min.section |
Integer. Genes expressed in less than |
normalize |
Logical, whether to perform normalization when creating the object. Default is TRUE. |
normalize.method |
Character, must be one of |
scale |
Logical, whether to perform scaling when creating the object. Default is TRUE. |
A SummarizedExperiment
object
createTomo
for the generic function.
data(zh.data) zh <- tomoMatrix(zh.data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.