low_expression_filter.DESeqDataSet | R Documentation |
Generic method to remove expression features below a given threshold.
## S3 method for class 'DESeqDataSet' low_expression_filter( dds, value_cutoff, min_sample_fraction = NULL, threshold_variable = NULL, use_min_fraction = T, approximate = F ) low_expression_filter(object, ...) ## S3 method for class 'matrix' low_expression_filter(object, value_cutoff, sample_cutoff, approximate) ## S3 method for class 'DGEList' low_expression_filter( dge_data, value_cutoff, min_sample_fraction = NULL, threshold_variable = NULL, use_min_fraction = T, approximate = F )
value_cutoff |
The minimum value required for a feature for greater than
|
min_sample_fraction |
The minimum proportion of samples with greater than |
threshold_variable |
Name of the binary variable to use for calculating sample fractions. |
use_min_fraction |
If |
approximate |
If |
object |
A DESeqDataSet, DGEList, or matrix object from which to filter row features. |
Filters out features considered lowly expressed using a count threshold and sample proportion set by the user. The sample proportion can also be estimated by calculating proportions of values from a binary variable specified by the user.
A filtered DESeqDataSet object if a DESeqDataSet object is provided as input.
A filtered matrix if a matrix is provided as input.
A filtered DGEList object if a DGEList object is provided as input.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.