MeOH_plasma_extraction
datasetThe AlpsNMR
package was written with two purposes in mind:
Functions from this package written for data analysts and NMR scientists are prefixed with nmr_
, while higher level functions written for IT pipeline builders are prefixed with pipe_
. The main reason why all exported functions have a prefix is to make it easy for the user to discover the functions from the package. By typing nmr_ RStudio will return the list of exported functions. In the R terminal, nmr_ followed by the tab key (⇥) twice will have the same effect. Other popular packages, follow similar approaches (e.g: forcats
: fct_*
, stringr
: str_*
).
This vignette is written for the first group. It assumes some prior basic knowledge of NMR and data analysis, as well as some basic R programming. In case you are interested in building pipelines with this package, you may want to open the file saved in this directory (run it on your computer):
pipeline_example <- system.file("pipeline-rmd", "pipeline_example.R", package = "AlpsNMR")
pipeline_example
library(AlpsNMR)
#> Loading required package: dplyr
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
#> Loading required package: future
#> Loading required package: magrittr
library(ggplot2)
This package is able to parallellize several functions through the use of the future
and furrr
packages. Whether to parallelize or not is left to the user that can control the parallellization by setting “plans”.
#plan(sequential()) # disable parallellization (default)
plan(multiprocess(workers = 4)) # enable parallellization with 4 workers
#> Warning: Strategy 'multiprocess' is deprecated in future (>= 1.20.0). Instead,
#> explicitly specify either 'multisession' or 'multicore'. In the current R
#> session, 'multiprocess' equals 'multicore'.
MeOH_plasma_extraction
datasetTo explore the basics of the AlpsNMR package, we have included four NMR samples acquired in a 600 MHz Bruker instrument bundled with the package. The samples are pooled quality control plasma samples, that were extracted with methanol, and therefore only contain small molecules.
If you have installed this package, you can obtain the directory where the four samples are with the command
MeOH_plasma_extraction_dir <- system.file("dataset-demo", package = "AlpsNMR")
MeOH_plasma_extraction_dir
#> [1] "/tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo"
The demo directory includes four samples (zipped) and a dummy Excel metadata file.
fs::dir_ls(MeOH_plasma_extraction_dir)
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/10.zip
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/20.zip
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/30.zip
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/README.txt
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/dummy_metadata.xlsx
Given the name of the dataset, one may guess that the dataset was used to check the Methanol extraction in serum samples. The dummy metadata consists of dummy information, just for the sake of showing how this package can integrate external metadata. The excel file consists of two tidy tables, in two sheets.
MeOH_plasma_extraction_xlsx <- file.path(MeOH_plasma_extraction_dir, "dummy_metadata.xlsx")
exp_subj_id <- readxl::read_excel(MeOH_plasma_extraction_xlsx, sheet = 1)
subj_id_age <- readxl::read_excel(MeOH_plasma_extraction_xlsx, sheet = 2)
exp_subj_id
#> # A tibble: 3 × 3
#> NMRExperiment SubjectID TimePoint
#> <chr> <chr> <chr>
#> 1 10 Ana baseline
#> 2 20 Ana 3 months
#> 3 30 Elia baseline
subj_id_age
#> # A tibble: 2 × 2
#> SubjectID Age
#> <chr> <dbl>
#> 1 Ana 29
#> 2 Elia 0
The function to read samples is called nmr_read_samples
. It expects a character vector with the samples to load that can be paths to directories of Bruker format samples or paths to JDX files.
Additionally, this function can filter by pulse sequences (e.g. load only NOESY samples) or loading only metadata.
zip_files <- fs::dir_ls(MeOH_plasma_extraction_dir, glob = "*.zip")
zip_files
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/10.zip
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/20.zip
#> /tmp/RtmpTUq7ng/Rinst1c0993285dcfa4/AlpsNMR/dataset-demo/30.zip
dataset <- nmr_read_samples(sample_names = zip_files)
dataset
#> An nmr_dataset (3 samples)
As we have not added any metadata to this dataset, the only column we see is the NMRExperiment
:
Initally our dataset only has the NMRExperiment
column:
nmr_meta_get(dataset, groups = "external")
#> # A tibble: 3 × 1
#> NMRExperiment
#> <chr>
#> 1 10
#> 2 20
#> 3 30
The exp_subj_id
table we loaded links the NMRExperiment
to the SubjectID
.
As we already have the NMRExperiment
column, we can use it as the merging column (note that both columns have the same column name to match the metadata such as group class, age, BMI…):
dataset <- nmr_meta_add(dataset, metadata = exp_subj_id, by = "NMRExperiment")
nmr_meta_get(dataset, groups = "external")
#> # A tibble: 3 × 3
#> NMRExperiment SubjectID TimePoint
#> <chr> <chr> <chr>
#> 1 10 Ana baseline
#> 2 20 Ana 3 months
#> 3 30 Elia baseline
If we have info from different files we can match them. For instance, now we have the SubjectID
information so we can add the table that adds the SubjectID
to the Age
.
dataset <- nmr_meta_add(dataset, metadata = subj_id_age, by = "SubjectID")
nmr_meta_get(dataset, groups = "external")
#> # A tibble: 3 × 4
#> NMRExperiment SubjectID TimePoint Age
#> <chr> <chr> <chr> <dbl>
#> 1 10 Ana baseline 29
#> 2 20 Ana 3 months 29
#> 3 30 Elia baseline 0
Now we have our metadata integrated in the dataset and we can make use of it in further data analysis steps.
1D NMR samples can be interpolated together, in order to arrange all the spectra into a matrix, with one row per sample. The main parameters we would need is the range of ppm values that we want to interpolate and the resolution.
We can see the ppm resolution by looking at the ppm axis of one sample:
ppm_res <- nmr_ppm_resolution(dataset)[[1]]
message("The ppm resolution is: ", format(ppm_res, digits = 2), " ppm")
#> The ppm resolution is: 0.00023 ppm
We can interpolate the dataset, obtaining an nmr_dataset_1D
object:
This operation changes the class of the object, as now the data is on a matrix. The dataset is now of class nmr_dataset_1D
. The axis
element is now a numeric vector and the data_1r
element is a matrix.
The AlpsNMR
package offers the possibility to plot nmr_dataset_1D
objects. Plotting many spectra with so many points is quite expensive so it is possible to include only some regions of the spectra or plot only some samples.
Use ?plot.nmr_dataset_1D
to check the parameters, among them:
NMRExperiment
: A character vector with the NMR experiments to plotchemshift_range
: A ppm range to plot only a small region, or to reduce the resolutioninteractive
: To make the plot interactive - ...
: Can be used to pass additional parameters such as color = "SubjectID"
that are passed as aesthetics to ggplot.The option interactive = TRUE
described above has some performance limitations. As high performance workaround, you can make many plots interactive with the function plot_interactive
.
This function will use WebGL technologies to create a webpage that, once opened, allows you to interact with the plot.
Due to technical limitations, these plots need to be opened manually and can’t be embedded in RMarkdown documents. Therefore, the function saves the plot in the directory for further exploration. Additionally, some old web browsers may not be able to display these interactive plots correctly.
plt <- plot(dataset, NMRExperiment = c("10", "30"), chemshift_range = c(2.2, 2.8))
plot_interactive(plt, "plot_region.html")
Some regions can easily be excluded from the spectra with nmr_exclude_region
. Note that the regions are fully removed and not zeroed, as using zeros complicates a lot the implementation1 and has little advantages.
Maybe we just want to analyze a subset of the data, e.g., only a class group or a particular gender. We can filter some samples according to their metadata as follows:
The AlpsNMR package includes robust PCA analysis for outlier detection. With such a small demo dataset, it is not practical to use, but check out the documentation of nmr_pca_outliers_*
functions.
Spectra may display an unstable baseline, specially when processing blood/fecal blood/fecal samples. If so, nmr_baseline_removal
subtract the baseline by means of Asymmetric Least Squares method.
See before:
And after:
The peak detection is performed on short spectra segments using a continuous wavelet transform. See ?nmr_detect_peaks
for more information.
Our current approach relies on the use of the baseline threshold (baselineThresh
) automatic calculated (see ?nmr_baseline_threshold
) and the Signal to Noise Threshold (SNR.Th
) to discriminate valid peaks from noise.
The combination of the baselineThresh
and the SNR.Th
optimizes the number of actual peaks from noise.
The advantage of the SNR.Th
method is that it estimates the noise level on each spectra region independently, so in practice it can be used as a dynamic baseline threshold level.
peak_table <- nmr_detect_peaks(dataset,
nDivRange_ppm = 0.1,
scales = seq(1, 16, 2),
baselineThresh = NULL, SNR.Th = 3)
#> Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
#> numbers without specifying argument 'seed'. There is a risk that those random
#> numbers are not statistically sound and the overall results might be invalid.
#> To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
#> numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
#> 'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
#> Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
#> numbers without specifying argument 'seed'. There is a risk that those random
#> numbers are not statistically sound and the overall results might be invalid.
#> To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
#> numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
#> 'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
#> Warning: UNRELIABLE VALUE: Future ('<none>') unexpectedly generated random
#> numbers without specifying argument 'seed'. There is a risk that those random
#> numbers are not statistically sound and the overall results might be invalid.
#> To fix this, specify 'seed=TRUE'. This ensures that proper, parallel-safe random
#> numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use
#> 'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
NMRExp_ref <- nmr_align_find_ref(dataset, peak_table)
message("Your reference is NMRExperiment ", NMRExp_ref)
#> Your reference is NMRExperiment 20
nmr_detect_peaks_plot(dataset, peak_table, NMRExperiment = "20", chemshift_range = c(3.5,3.8))
To align the sample, we use the nmr_align
function, which in turn uses a hierarchical clustering method (see ?nmr_align
for further details).
The maxShift_ppm
limits the maximum shift allowed for the spectra.
There are multiple normalization techniques available. The most strongly recommended is the pqn
normalization, but it may not be fully reliable when the number of samples is small, as it needs a computation of the median spectra. Nevertheless, it is possible to compute it:
dataset_norm <- nmr_normalize(dataset_align, method = "pqn")
#> Warning in norm_pqn(samples[["data_1r"]]): The Probabalistic Quotient
#> Normalization requires several samples to compute the median spectra. Your
#> number of samples is low
The AlpsNMR
package offers the possibility to extract additional normalization information with nmr_normalize_extra_info(dataset)
, to explore the normalization factors applied to each sample:
The plot shows the dispersion with respect to the median of the normalization factors, and can highlight samples with abnormaly large or small normalization factors.
If we want to integrate the whole spectra, we need ppm from the peak_table
. See Peak detection
section. The function nmr_integrate_peak_positions
generates a new nmr_dataset_1D
object containing the integrals from the peak_table
(ppm values corresponding to detected peaks).
peak_table_integration = nmr_integrate_peak_positions(
samples = dataset_norm,
peak_pos_ppm = peak_table$ppm,
peak_width_ppm = 0.006)
#> New names:
#> * `ppm_-0.0002` -> `ppm_-0.0002...1`
#> * ppm_0.9032 -> ppm_0.9032...4
#> * ppm_0.9085 -> ppm_0.9085...5
#> * ppm_0.9196 -> ppm_0.9196...6
#> * ppm_0.9437 -> ppm_0.9437...7
#> * ...
peak_table_integration = get_integration_with_metadata(peak_table_integration)
We can also integrate with a specific peak position and some arbitrary width:
nmr_data(
nmr_integrate_peak_positions(samples = dataset_norm,
peak_pos_ppm = c(4.1925, 4.183, 4.1775, 4.17),
peak_width_ppm = 0.006)
)
#> ppm_4.1925 ppm_4.1830 ppm_4.1775 ppm_4.1700
#> 10 3.199480e-08 3.307910e-08 2.319829e-08 1.343858e-08
#> 20 2.543387e-08 1.775268e-08 1.808552e-08 9.949101e-09
#> 30 2.571741e-08 2.550170e-08 1.911236e-08 8.217628e-09
Imagine we only want to integrate the four peaks corresponding to the pyroglutamic acid:
pyroglutamic_acid_region <- c(4.15, 4.20)
plot(dataset_norm, chemshift_range = pyroglutamic_acid_region) +
ggplot2::ggtitle("Pyroglutamic acid region")
We define the peak regions and integrate them. Note how we can correct the baseline or not. If we correct the baseline, the limits of the integration will be connected with a straight line and that line will be used as the baseline, that will be subtracted.
pyroglutamic_acid <- list(pyroglutamic_acid1 = c(4.19, 4.195),
pyroglutamic_acid2 = c(4.18, 4.186),
pyroglutamic_acid3 = c(4.175, 4.18),
pyroglutamic_acid4 = c(4.165, 4.172))
regions_basel_corr_ds <- nmr_integrate_regions(dataset_norm, pyroglutamic_acid, fix_baseline = TRUE)
regions_basel_corr_matrix <- nmr_data(regions_basel_corr_ds)
regions_basel_corr_matrix
#> pyroglutamic_acid1 pyroglutamic_acid2 pyroglutamic_acid3 pyroglutamic_acid4
#> 10 2.679967e-08 3.307910e-08 2.441353e-08 5.588898e-08
#> 20 2.152805e-08 1.775268e-08 1.201631e-08 5.132786e-08
#> 30 2.299145e-08 2.550170e-08 1.822286e-08 5.187043e-08
regions_basel_not_corr_ds <- nmr_integrate_regions(dataset_norm, pyroglutamic_acid, fix_baseline = FALSE)
regions_basel_not_corr_matrix <- nmr_data(regions_basel_not_corr_ds)
regions_basel_not_corr_matrix
#> pyroglutamic_acid1 pyroglutamic_acid2 pyroglutamic_acid3 pyroglutamic_acid4
#> 10 2.784051e-07 3.337131e-07 2.691285e-07 3.776341e-07
#> 20 2.720955e-07 3.286697e-07 2.667187e-07 3.788178e-07
#> 30 2.698978e-07 3.248928e-07 2.624279e-07 3.671806e-07
We may plot the integral values to explore variation based on the baseline subtraction.
dplyr::bind_rows(
regions_basel_corr_matrix %>%
as.data.frame() %>%
tibble::rownames_to_column("NMRExperiment") %>%
tidyr::gather("metabolite_peak", "area", -NMRExperiment) %>%
dplyr::mutate(BaselineCorrected = TRUE),
regions_basel_not_corr_matrix %>%
as.data.frame() %>%
tibble::rownames_to_column("NMRExperiment") %>%
tidyr::gather("metabolite_peak", "area", -NMRExperiment) %>%
dplyr::mutate(BaselineCorrected = FALSE)
) %>% ggplot() + geom_point(aes(x = NMRExperiment, y = area, color = metabolite_peak)) +
facet_wrap(~BaselineCorrected)
After applying any feature selection or machine learning, Alps allows the identification of features of interest through nmr_identify_regions_blood
. The function gives 3 posibilities sorted by the most probable metabolite (see nmr_identify_regions_blood
for details).
Besides all those techniques, you can easily implement your own. You can extract the raw matrix and manipulate it at will. As long as you don’t permute the rows, you can always replace the raw matrix of the nmr_dataset_1D
object through the nmr_data
function:
full_spectra_matrix <- nmr_data(dataset)
full_spectra_matrix[1:3, 1:6] # change it as you wish
#> -0.5 -0.49977 -0.49954 -0.49931 -0.49908 -0.49885
#> 10 1672.044 1433.898 1072.3294 1401.1787 1634.7485 1344.6377
#> 20 1927.617 2056.491 1848.7379 1584.5820 1970.5705 2469.3993
#> 30 1337.001 1029.662 645.6248 641.0098 825.0757 799.6986
nmr_data(dataset) <- full_spectra_matrix # Rewrite the matrix
nmr_dataset_1D
object from a matrixYou can also create an nmr_dataset_1D
object from scratch with the new_nmr_dataset_1D
function:
nsamp <- 12
npoints <- 20
# Create a random spectra matrix
dummy_ppm_axis <- seq(from = 0.2, to = 10, length.out = npoints)
dummy_spectra_matrix <- matrix(runif(nsamp*npoints), nrow = nsamp, ncol = npoints)
metadata <- list(external = data.frame(NMRExperiment = paste0("Sample", 1:12),
DummyClass = c("a", "b"),
stringsAsFactors = FALSE))
your_custom_nmr_dataset_1D <- new_nmr_dataset_1D(ppm_axis = dummy_ppm_axis,
data_1r = dummy_spectra_matrix,
metadata = metadata)
your_custom_nmr_dataset_1D
#> An nmr_dataset_1D (12 samples)
plot(your_custom_nmr_dataset_1D) +
ggtitle("Of course those random values don't make much sense...")
This vignette shows many of the features of the package, some features have room for improvement, others are not fully described, and the reader will need to browse the documentation. Hopefully it is a good starting point for using the package.
sessionInfo()
#> R version 4.1.1 (2021-08-10)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.3 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.14-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.14-bioc/R/lib/libRlapack.so
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_GB LC_COLLATE=C
#> [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
#> [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
#> [9] LC_ADDRESS=C LC_TELEPHONE=C
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] ggplot2_3.3.5 AlpsNMR_3.4.0 magrittr_2.0.1 future_1.22.1 dplyr_1.0.7
#>
#> loaded via a namespace (and not attached):
#> [1] colorspace_2.0-2 ellipsis_0.3.2
#> [3] speaq_2.6.1 corpcor_1.6.10
#> [5] XVector_0.34.0 GenomicRanges_1.46.0
#> [7] fs_1.5.0 listenv_0.8.0
#> [9] furrr_0.2.3 farver_2.1.0
#> [11] ggrepel_0.9.1 RSpectra_0.16-0
#> [13] fansi_0.5.0 mvtnorm_1.1-3
#> [15] xml2_1.3.2 codetools_0.2-18
#> [17] impute_1.68.0 knitr_1.36
#> [19] mixOmics_6.18.0 itertools_0.1-3
#> [21] jsonlite_1.7.2 cluster_2.1.2
#> [23] missForest_1.4 compiler_4.1.1
#> [25] httr_1.4.2 assertthat_0.2.1
#> [27] RcppZiggurat_0.1.6 Matrix_1.3-4
#> [29] fastmap_1.1.0 cli_3.0.1
#> [31] htmltools_0.5.2 tools_4.1.1
#> [33] igraph_1.2.7 qtl_1.50
#> [35] gtable_0.3.0 glue_1.4.2
#> [37] GenomeInfoDbData_1.2.7 reshape2_1.4.4
#> [39] Rcpp_1.0.7 limSolve_1.5.6
#> [41] Biobase_2.54.0 cellranger_1.1.0
#> [43] jquerylib_0.1.4 vctrs_0.3.8
#> [45] baseline_1.3-1 iterators_1.0.13
#> [47] xfun_0.27 stringr_1.4.0
#> [49] globals_0.14.0 rvest_1.0.2
#> [51] lpSolve_5.6.15 lifecycle_1.0.1
#> [53] zlibbioc_1.40.0 MASS_7.3-54
#> [55] scales_1.1.1 doSNOW_1.0.19
#> [57] MatrixGenerics_1.6.0 parallel_4.1.1
#> [59] SummarizedExperiment_1.24.0 MassSpecWavelet_1.60.0
#> [61] SparseM_1.81 RColorBrewer_1.1-2
#> [63] yaml_2.2.1 gridExtra_2.3
#> [65] sass_0.4.0 stringi_1.7.5
#> [67] highr_0.9 S4Vectors_0.32.0
#> [69] pcaPP_1.9-74 foreach_1.5.1
#> [71] randomForest_4.6-14 BiocGenerics_0.40.0
#> [73] BiocParallel_1.28.0 GenomeInfoDb_1.30.0
#> [75] rlang_0.4.12 pkgconfig_2.0.3
#> [77] matrixStats_0.61.0 bitops_1.0-7
#> [79] evaluate_0.14 lattice_0.20-45
#> [81] purrr_0.3.4 labeling_0.4.2
#> [83] Rfast_2.0.3 tidyselect_1.1.1
#> [85] parallelly_1.28.1 plyr_1.8.6
#> [87] R6_2.5.1 IRanges_2.28.0
#> [89] snow_0.4-3 generics_0.1.1
#> [91] DelayedArray_0.20.0 DBI_1.1.1
#> [93] pillar_1.6.4 withr_2.4.2
#> [95] RCurl_1.98-1.5 mQTL_1.0
#> [97] tibble_3.1.5 crayon_1.4.1
#> [99] rARPACK_0.11-0 utf8_1.2.2
#> [101] ellipse_0.4.2 rmarkdown_2.11
#> [103] grid_4.1.1 readxl_1.3.1
#> [105] data.table_1.14.2 digest_0.6.28
#> [107] tidyr_1.1.4 outliers_0.14
#> [109] signal_0.7-7 stats4_4.1.1
#> [111] munsell_0.5.0 bslib_0.3.1
#> [113] quadprog_1.5-8
e.g. it can inadvertedly distort the PQN normalization results↩