remove_singletons: Remove singletons

View source: R/remove_singletons.R

remove_singletonsR Documentation

Remove singletons

Description

Identifies and removes singletons (i.e. peaks that are unique for one sample) from the aligned dataset.

Usage

remove_singletons(data)

Arguments

data

An object of class "GCalign". See align_chromatograms for details. Alternatively, a list of data frames. Whereby each data frame contains the peak list for an individual sample.

Value

a list of data frames for each individual.

Author(s)

Meinolf Ottensmann (meinolf.ottensmann@web.de) & Martin Stoffel (martin.adam.stoffel@gmail.com)

Examples

data("peak_data")
## subset for faster processing
data <- lapply(peak_data[1:5], function(x) x[20:35,])
x <- align_chromatograms(data, rt_col_name = "time")
out <- remove_singletons(data = x)


GCalignR documentation built on Feb. 16, 2023, 5:23 p.m.