Description Usage Arguments Details Value References Examples
View source: R/blank_filter_class.R
A blank filter filters features by comparing the median intensity of blank samples to the median intensity of samples. Features where the relative intensity (fold change) is not large when compared to the blank are removed. The number of times a feature is detected across all blank samples may also be considered. If the feature is not detected in a high enough proportion of the blanks then it is not removed.
1 2 3 4 5 6 7 8 | blank_filter(
fold_change = 20,
blank_label = "blank",
qc_label = "QC",
factor_name,
fraction_in_blank = 0,
...
)
|
fold_change |
(numeric) Features with fold change less than this value are removed. The default is |
blank_label |
(character) The label used to identify blank samples. The default is |
qc_label |
(character, NULL) The label used to identify QC samples. If set to NULL then the median of the samples is used. The default is |
factor_name |
(character) The name of a sample-meta column to use. |
fraction_in_blank |
(numeric) Features present in less than this proportion of the blanks are not considered for removal. The default is |
... |
Additional slots and values passed to |
This object makes use of functionality from the following packages:
pmp
A blank_filter
object.
Jankevics A, Weber RJM (2020). pmp: Peak Matrix Processing and signal batch correction for metabolomics datasets. R package version 1.1.0.
1 2 3 4 5 6 | D = iris_DatasetExperiment()
M = blank_filter(fold_change=2,
factor_name='Species',
blank_label='setosa',
qc_label='versicolor')
M = model_apply(M,D)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.