Description Usage Arguments Details Value Examples
View source: R/data_preprocessing.R
Keeping genes with at least one sample with count above min_count in RNA-seq data.
1 2 3 4 5 | filter_RNA_seq(
data_expr,
min_count = 5,
method = c("at least one", "mean", "all")
)
|
data_expr |
matrix or data.frame or SummarizedExperiment, table of expression values (either microarray or RNA-seq), with genes as column and samples as row. |
min_count |
integer, minimal number of count to be considered in method. |
method |
string, name of the method for filtering. Must be one of "at least one", "mean", or " all" |
Low counts in RNA-seq can bring noise to gene co-expression module building, so filtering them help to improve quality.
A data.frame of filtered genes
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.