removeProcessedMatrix | R Documentation |
Removes a processed matrix from the SPATA2
object.
removeProcessedMatrix(object, mtr_name, assay_name = activeAssay(object))
object |
An object of class |
mtr_name |
Character value. The name of the matrix of interest. Defaults
to the active matrix of the assay, as denoted by |
assay_name |
Only relevant if the |
The updated input object, containing the added, removed or computed results.
If the removed matrix was the active matrix the new active matrix
is defined as the last element of getMatrixNames()
.
library(SPATA2)
data("example_data")
object <- example_data$object_UKF313T_diet
getMatrixNames(object)
getProcessedMatrixNames(object)
object <- normalizeCounts(object, method = "LogNormalize")
getProcessedMatrixNames(object)
object <- removeProcessedMatrix(object, mtr_name = "LogNormalize")
getProcessedMatrixNames(object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.