powered by
Reads the content of text file that is formatted as described in align_chromatograms and converts it to a list.
align_chromatograms
read_peak_list(data, sep = "\t", rt_col_name, check = T)
A list of data frames containing peak data for every sample of data.
data
A text file containing a peak list. See align_chromatograms for details.
The field separator character. The default is tab separated (sep = '\t'). See the "sep" argument in read.table for details.
sep = '\t'
read.table
A character giving the name of the column containing the retention times. The decimal separator needs to be a point.
logical
Meinolf Ottensmann (meinolf.ottensmann@web.de) & Martin Stoffel (martin.adam.stoffel@gmail.com)
path <- system.file("extdata", "simulated_peak_data.txt", package = "GCalignR") x <- read_peak_list(data = path, rt_col_name = "rt")
Run the code above in your browser using DataLab