View source: R/read_peak_list.R
read_peak_list | R Documentation |
Reads the content of text file that is formatted as described in align_chromatograms
and converts it to a list.
read_peak_list(data, sep = "\t", rt_col_name, check = T)
data |
A text file containing a peak list. See |
sep |
The field separator character. The default is tab separated ( |
rt_col_name |
A character giving the name of the column containing the retention times. The decimal separator needs to be a point. |
check |
logical |
A list of data frames containing peak data for every sample of data
.
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.