View source: R/log_transform.R
log_transform_count | R Documentation |
Applying log transform on a matrix of gene counts
log_transform_count(count_matrix, transform = "log_replace_half_min")
count_matrix |
A matrix of gene counts (possibly transformed). rows are genes, columns are individuals |
transform |
One of the transformations log_replace_half_min, log_add_min, log_add_0.5 |
A matrix of gene counts after transformation
data(rnaseq_count_matrix)
rnaseq_count_matrix<- rnaseq_count_matrix[rowSums(rnaseq_count_matrix)>0,]
log_transform_count(count_matrix=rnaseq_count_matrix, transform = "log_replace_half_min")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.