AlpsNMR-package | R Documentation |
AlpsNMR allows you to import NMR spectra into R and provides automated and efficient signal processing for untargeted NMR metabolomics.
The following functions can be combined with the pipe. They create or modify the nmr_dataset object.
nmr_read_samples_dir()
or nmr_read_samples()
nmr_interpolate_1D()
nmr_exclude_region()
nmr_normalize()
plot()
There are also functions to extract the metadata and submit the samples to irods, see the example below.
The nmr_dataset object is essentially a list, so it is easy to access its components for further analysis.
Maintainer: Sergio Oller Moreno sergioller@gmail.com (ORCID)
Authors:
Ivan Montoliu Roura Ivan.MontoliuRoura@rd.nestle.com
Francisco Madrid Gambin fmadrid@ibecbarcelona.eu (ORCID)
Luis Fernandez lfernandez@ibecbarcelona.eu (ORCID)
Héctor Gracia Cabrera hgracia@ibecbarcelona.eu
Santiago Marco Colás smarco@ibecbarcelona.eu (ORCID)
Other contributors:
Laura López Sánchez [contributor]
Nestlé Institute of Health Sciences [copyright holder]
Institute for Bioengineering of Catalonia [copyright holder]
Miller Jack jack.miller@physics.org (ORCID) (Autophase wrapper, ASICS export) [contributor]
Useful links:
Report bugs at https://github.com/sipss/AlpsNMR/issues
dir_to_demo_dataset <- system.file("dataset-demo", package = "AlpsNMR")
dataset <- nmr_read_samples_dir(dir_to_demo_dataset)
my_nmr_dataset <- dataset %>%
nmr_interpolate_1D(axis = c(0.4, 10)) %>%
nmr_exclude_region(exclude = list(water = c(4.6, 5))) %>%
nmr_normalize(method = "pqn") %>%
plot()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.