lowFilter-methods: Lower Threshold Filter

Description Arguments Details Value Author(s) Examples

Description

This method initializes the Lower Threshold Filter. The cutoff value defines the lower threshold for allowed expression levels. If e.g. the number of samples lower than this cutoff value is greater than parameter then the corresponding dataframe row is flagged, i.e. flag = 0.
The Lower Threshold Filter flags all rows with: flag = (sum(expression[i] >= cutoff) >= parameter)

Usage

lowFilter(object)
lowFilter(object, value)<-

Arguments

object

object of class PreFilter.

value

character vector c(cutoff, parameter, condition).

Details

The method lowFilter initializes the following parameters:

cutoff: the lower threshold level for the filter.
parameter: this value depends on the condition used:
condition: condition="samples": number of samples (default):
condition="percent": percent of samples.
condition="mean": mean value of samples.
condition="percentile": percentile of samples.

Value

An initialized PreFilter object.

Author(s)

Christian Stratowa

Examples

1
2
3
prefltr <- PreFilter()
lowFilter(prefltr) <- c(4.0,3,"samples")
str(prefltr)

xps documentation built on Nov. 8, 2020, 6 p.m.