Description Usage Arguments Details Value See Also Examples
Function to create a MAIT object using data from xcms.
1 2 3 4 5 6 7 |
data_dir |
directory with LC-MS datafiles. |
project_dir |
path to the the project directory. |
project |
name of the. |
preproc_params |
params from XCMS. |
peak_table |
XCMS procesed LC-MS data. |
MAIT
Package allows to annotate the peaks of the peak table provided by XCMS
.
*Note: The dataset must be converted from an object of the XCMS Package
to an object of the MAIT Package.
A MAIT object.
Other metabolite identification functions:
lcms_identify_metabolites()
,
lcms_peak_annotation()
,
lcms_peak_table_boxplots()
,
lcms_peak_table_pca()
,
lcms_raw_data()
,
lcms_sig_peaks_table()
,
lcms_spectral_sig_features()
,
lcms_write_parameter_table()
Other dataset_peak_table functions:
lcms_dataset_load()
,
lcms_identify_metabolites()
,
lcms_peak_annotation()
,
lcms_peak_table_boxplots()
,
lcms_peak_table_pca()
,
lcms_plot_tics()
,
lcms_raw_data()
,
lcms_sig_peaks_table()
,
lcms_spectral_sig_features()
,
lcms_tics()
Other import/export functions:
lcms_convert_ipo_to_xcms()
,
lcms_dataset_load()
,
lcms_dataset_save()
,
lcms_identify_metabolites()
,
lcms_meta_export()
,
lcms_meta_read()
,
lcms_peak_annotation()
,
lcms_raw_data()
,
lcms_read_ipo_to_xcms()
,
lcms_read_samples()
,
lcms_rearrange_datafiles_by_class()
,
lcms_sig_peaks_table()
,
lcms_spectral_sig_features()
,
lcms_write_opt_params()
,
lcms_write_parameter_table()
,
phData()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
file_name <- system.file("extdata", "peak_table_imputed.rds", package = "AlpsLCMS")
peak_table <- base::readRDS(file_name)
opt_result_path <- system.file("extdata", package = "AlpsLCMS")
preproc_params <- lcms_read_ipo_to_xcms(opt_result_path)
data_dir <- system.file("extdata", "rearrange_mait", package = "AlpsLCMS")
project_dir <- system.file("extdata", package = "AlpsLCMS")
project <- "project"
peak_table_mait <- lcms_to_mait(data_dir = data_dir,
project_dir = project_dir,
project = project,
preproc_params = preproc_params,
peak_table = peak_table)
print(peak_table_mait)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.