remove_all_zero_row | R Documentation |
This function removes the rows that have zero count in all samples. It takes care of updating both count_table and annotation_table. Very_Important: It has to be performed before the data normalization.
remove_all_zero_row(screenR_Object)
screenR_Object |
The ScreenR object obtained using the
|
The ScreenR object with the count_table and the annotation_table filtered.
object <- get0("object", envir = asNamespace("ScreenR"))
counts <- get_count_table(object)
nrow(counts)
object <- remove_all_zero_row(object)
counts <- get_count_table(object)
nrow(counts)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.