Contents

Compiled date: 2021-05-19

Last edited: 2021-10-05

License: GPL-3

1 Installation

Run the following code to install the Bioconductor version of the package.

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("fobitools")

2 Load packages

library(fobitools)

We will also need some additional CRAN and Bioconductor packages for performing tasks such as statistical analysis.

# CRAN
library(tidyverse)
library(ggrepel)
library(kableExtra)

# Bioconductor
library(POMA)
library(metabolomicsWorkbenchR)
library(SummarizedExperiment)

3 Download the data from Metabolomics Workbench

The Metabolomics Workbench, available at www.metabolomicsworkbench.org, is a public repository for metabolomics metadata and experimental data spanning various species and experimental platforms, metabolite standards, metabolite structures, protocols, tutorials, and training material and other educational resources. It provides a computational platform to integrate, analyze, track, deposit and disseminate large volumes of heterogeneous data from a wide variety of metabolomics studies including mass spectrometry (MS) and nuclear magnetic resonance spectrometry (NMR) data spanning over 20 different species covering all the major taxonomic categories including humans and other mammals, plants, insects, invertebrates and microorganisms (Sud et al. 2016).

The metabolomicsWorkbenchR Bioconductor package allows us to obtain data from the Metabolomics Workbench repository. In this vignette we will use the sample data set ST000629.

3.1 Sumary of the study (ST000629)

The objective of the study is to identify changes of urinary metabolite profiles associated with different responses to blood pressure to salt. Subjects are derived from The Dietary approaches to stop hypertension (DASH) diet, Sodium Intake and Blood Pressure Trial (Sacks FM et al PMID: 11136953,N Engl J Med. 2001).We choose two groups subjects who meet the following conditions (the two groups are separately named A and B). We chose subjects on the Control diet. These subjects meet the blood pressure criteria described below:Group A subjects conditions: 1) On Control diet. 2) Normotensive subjects: systolic blood pressure from the low sodium visit is less than 140 and the diastolic blood pressure from low sodium visit is less than 90; 3) For group A: Either the systolic blood pressure from the high sodium visit was greater than 10 mmHg higher than the systolic blood pressure from the low sodium visit, or the diastolic blood pressure from the high sodium visit was greater than 10 mmHg higher than the diastolic blood pressure from the low sodium visit; 3) For group B: The systolic blood pressure from the high sodium visit is within 5 mmHg (i.e. +/- 5) from the systolic blood pressure from the low sodium visit, and the diastolic blood pressure from the high sodium visit is within 5 mmHg from the diastolic blood pressure from the low sodium visit. Use gas chromatography/mass spectrometry (GC/MS) analysis, and liquid chromatography/mass spectrometry (LC/MS) analysis to find the differences of metabolic profiles between the high sodium level and the low sodium level, and compare the metabolic profiles of A with the metabolic profiles of B at the low and high sodium level.

3.2 Download data

This study includes compounds analyzed via MS analysis and positive ion mode (AN000961). Let’s download it!

data <- do_query(
  context = "study",
  input_item = "analysis_id",
  input_value = "AN000961",
  output_item = "SummarizedExperiment")

4 Prepare features and metadata

Now we have to prepare the metadata and features in order to proceed with the statistical analysis. In this step we assign to each metabolite its chemical name provided in Metabolomics Workbench.

## features 
features <- assay(data)
rownames(features) <- rowData(data)$metabolite

## metadata
pdata <- colData(data) %>%
  as.data.frame() %>%
  tibble::rownames_to_column("ID") %>%
  relocate(grouping, .before = Sodium.level) %>%
  mutate(grouping = case_when(grouping == "A(salt sensitive)" ~ "A",
                              grouping == "B(salt insensitive)" ~ "B"))

5 Statistical analysis with POMA

POMA provides a structured, reproducible and easy-to-use workflow for the visualization, preprocessing, exploration, and statistical analysis of metabolomics and proteomics data. The main aim of this package is to enable a flexible data cleaning and statistical analysis processes in one comprehensible and user-friendly R package. POMA uses the standardized MSnbase data structures, to achieve the maximum flexibility and reproducibility and makes POMA compatible with other Bioconductor packages (Castellano-Escuder, Andrés-Lacueva, and Sánchez-Pla 2021).

5.1 Create a MSnbase::MSnSet object

First, we create a MSnSet object that integrates both metadata and features in the same data structure.

data_msnset <- PomaMSnSetClass(target = pdata, features = t(features))

5.2 Preprocessing

Second, we perform the preprocessing step. This step includes the missing value imputation unsing the \(k\)-NN algorithm, log Pareto normalization (transformation and scaling) and outlier detection and cleaning. Once these steps are completed, we can proceed to the statistical analysis of these data.

data_preprocessed <- data_msnset %>%
  PomaImpute(ZerosAsNA = TRUE, cutoff = 20, method = "knn") %>%
  PomaNorm(method = "log_pareto") %>%
  PomaOutliers(coef = 3)

5.3 Limma model

We use a limma model (Ritchie et al. 2015) to identify those most significant metabolites between the “A(salt sensitive)” and “B(salt insensitive)” groups.

limma_res <- data_preprocessed %>%
  PomaLimma(contrast = "A-B", adjust = "fdr") %>%
  tibble::rownames_to_column("ID")

# show the first 10 features
limma_res %>%
  dplyr::slice(1L:10L) %>%
  kbl(row.names = FALSE, booktabs = TRUE) %>%
  kable_styling(latex_options = c("striped"))
ID logFC AveExpr t P.Value adj.P.Val B
Methionine 0.73090 -0.000050 5.283703 0.0000019 0.0000724 4.7720246
Leucine 0.70515 -0.000025 4.561045 0.0000257 0.0005002 2.2576321
Lysine 0.70015 -0.000025 4.435623 0.0000398 0.0005180 1.8381297
Serine 0.80015 0.000025 4.210232 0.0000868 0.0007429 1.0991483
Isoleucine 0.61325 -0.000025 4.182916 0.0000952 0.0007429 1.0109629
Arginine 0.57610 0.000000 3.789091 0.0003527 0.0022929 -0.2241608
Asparagine 0.56815 0.000025 3.595709 0.0006549 0.0034633 -0.8036958
Citrulline 0.55835 0.000125 3.536125 0.0007897 0.0034633 -0.9783830
Cystathionine 1 0.58870 0.000050 3.532309 0.0007992 0.0034633 -0.9895055
Valine 0.52240 -0.000050 3.372887 0.0013074 0.0050987 -1.4471096

5.4 Convert metabolite names to KEGG identifiers with MetaboAnalyst web server

In many metabolomics studies, the reproducibility of analyses is severely affected by the poor interoperability of metabolite names and their identifiers. For this reason it is important to develop tools that facilitate the process of converting one type of identifier to another. In order to use the fobitools package, we need some generic identifier (such as PubChem, KEGG or HMDB) that allows us to obtain the corresponding FOBI identifier for each metabolite. However, unlike vignette “Use case ST000291”, the Metabolomics Workbench repository does not provide us with this information for the metabolites quantified in study ST000629.

In those cases where we do not have other common identifiers, the authors recommend using the powerful conversion tool provided by MetaboAnalyst. This tool will allow us to move from the metabolite names to other generic identifiers such as KEGG or HMDB, which will later allow us to obtain the FOBI identifier of these metabolites.

In order to use the MetaboAnalyst ID conversion tool, we can copy the result of the following cat() command and paste it directly into MetaboAnalyst (Figure 1).

cat(limma_res$ID, sep = "\n")
Metabolite names conversion using MetaboAnalyst.

Figure 1: Metabolite names conversion using MetaboAnalyst

Then, we can access to the MetaboAnalyst temporary page that is hosting our results (where the following “XXXXXXX” will be your guest URL).

ST000629_MetaboAnalyst_MapNames <- readr::read_delim("https://www.metaboanalyst.ca/MetaboAnalyst/resources/users/XXXXXXX/name_map.csv", delim = ",")

6 Convert KEGG IDs to FOBI IDs

Once we have the results of the statistical analysis and generic identifiers recognized in the FOBI ontology (Castellano-Escuder et al. 2020), we can proceed to perform one of the main functions provided by the fobitools package, the ID conversion. With the fobitools::id_convert() command, users can convert different IDs between FOBI, HMDB, KEGG, PubChem, InChIKey, InChICode, ChemSpider, and chemical names. We will then obtain the FOBI IDs from the KEGG IDs (obtained in the previous section via MetaboAnalyst web server) and add them as a new column to the results of the limma model.

annotated_limma <- ST000629_MetaboAnalyst_MapNames %>%
  dplyr::rename(ID = Query) %>%
  right_join(limma_res, by = "ID")

limma_FOBI_names <- annotated_limma %>%
  dplyr::pull("KEGG") %>%
  fobitools::id_convert(to = "FOBI")

# show the ID conversion results
limma_FOBI_names %>%
  head() %>%
  kbl(row.names = FALSE, booktabs = TRUE) %>%
  kable_styling(latex_options = c("striped"))
FOBI KEGG
FOBI:030687 C00386
FOBI:030709 C00245
FOBI:030701 C00078
FOBI:030691 C00099
FOBI:030692 C00079
FOBI:030697 C00082
limma_FOBI_names <- limma_FOBI_names %>%
  right_join(annotated_limma, by = "KEGG") %>%
  dplyr::select(FOBI, KEGG, ID, logFC, P.Value, adj.P.Val) %>%
  dplyr::arrange(-dplyr::desc(P.Value))

7 Enrichment analysis

Enrichment analysis denotes any method that benefits from biological pathway or network information to gain insight into a biological system (Creixell et al. 2015). In other words, these type of analyses integrate the existing biological knowledge (from different biological sources such as databases and ontologies) and the statistical results of omics studies, obtaining a deeper understanding of biological systems.

In most metabolomics studies, the output of statistical analysis is usually a list of features selected as statistically significant or statistically relevant according to a pre-defined statistical criteria. Enrichment analysis methods use these selected features to explore associated biologically relevant pathways, diseases, etc., depending on the nature of the input feature list (genes, metabolites, etc.) and the source used to extract the biological knowledge (GO, KEGG, FOBI, etc.).

Here, we present a tool that uses the FOBI information to perform different types of enrichment analyses. Therefore, the presented methods allow researchers to move from lists of metabolites to chemical classes and food groups associated with those lists, and consequently, to the study design.

Currently, the most popular used approaches for enrichment analysis are the over representation analysis (ORA) and the gene set enrichment analysis (GSEA), with its variants for other fields such as the metabolite set enrichment analysis (MSEA) (Xia and Wishart 2010).

7.1 Over representation analysis (ORA)

ORA is one of the most used methods to perform enrichment analysis in metabolomics studies due to its simplicity and easy understanding. This method statistically evaluates the fraction of metabolites in a particular pathway found among the set of metabolites statistically selected. Thus, ORA is used to test if certain groups of metabolites are represented more than expected by chance given a feature list.

However, ORA has a number of limitations. The most important one is the need of using a certain threshold or criteria to select the feature list. This means that metabolites do not meet the selection criteria must be discarded. The second big limitation of ORA is that this method assumes independence of sets and features. In ORA, is assumed that each feature is independent of the other features and each set is independent of the other sets.

Here, we perform an ORA with the fobitools package, where we will use as a universe all the metabolites of the study present in FOBI and as a list those metabolites with a raw p-value < 0.05 in the limma results table.

metaboliteList <- limma_FOBI_names$FOBI[limma_FOBI_names$P.Value < 0.05]
metaboliteUniverse <- limma_FOBI_names$FOBI

fobitools::ora(metaboliteList = metaboliteList,
               metaboliteUniverse = metaboliteUniverse,
               pvalCutoff = 1) %>%
  kbl(row.names = FALSE, booktabs = TRUE) %>%
  kable_styling(latex_options = c("striped"))
className classSize overlap pval padj overlapMetabolites
fish 2 1 0.4642857 0.8035714 FOBI:030690
Whole grain cereal products 3 1 0.6428571 0.8035714 FOBI:030692
dairy food product 3 1 0.6428571 0.8035714 FOBI:030692
egg food product 3 1 0.6428571 0.8035714 FOBI:030692
legume food product 3 1 0.6428571 0.8035714 FOBI:030692
meat food product 3 1 0.6428571 0.8035714 FOBI:030692
nut (whole or part) 3 1 0.6428571 0.8035714 FOBI:030692
soybean (whole) 3 1 0.6428571 0.8035714 FOBI:030692
Lean meat 4 1 0.7857143 0.8730159 FOBI:030690
Red meat 3 0 1.0000000 1.0000000

7.2 MSEA

Gene Set Enrichment Analysis (GSEA) methodology was proposed for the first time in 2005, with the aim of improving the interpretation of gene expression data. The main purpose of GSEA is to determine whether members of a gene set \(S\) tend to occur toward the top (or bottom) of the gene list \(L\), in which case the gene set is correlated with the phenotypic class distinction (Subramanian et al. 2005).

This type of analysis basically consists of three key steps (Subramanian et al. 2005):

The first step consists on the calculation of an enrichment score (\(ES\)). This value indicates the degree to which a set \(S\) is overrepresented at the extremes (top or bottom) of the entire ranked gene list \(L\). The \(ES\) is calculated by walking down the list \(L\), increasing a running-sum statistic when a gene is found in \(S\) and decreasing it when a gene is not found in \(S\). The magnitude of the increment depends on the correlation of the gene with the phenotype. The \(ES\) is the maximum deviation from zero encountered in the random walk.

The second step is the estimation of significance level of \(ES\). The statistical significance (nominal p-value) of the \(ES\) is estimated by using an empirical phenotype-based permutation test that preserves the complex correlation structure of the gene expression data. The phenotype labels (\(L\)) are permuted and the \(ES\) of the \(S\) is recomputed for the permuted data, which generates a null distribution for the \(ES\). The empirical, nominal p-value of the observed \(ES\) is then calculated relative to this null distribution. The permutation of class labels (groups) preserves gene-gene correlations and, thus, provides a more biologically reasonable assessment of significance than would be obtained by permuting genes.

Finally, the third step consist on the adjustment for multiple hypothesis testing. When an entire database of gene sets is evaluated, the estimated significance level is adjusted for multiple hypothesis testing. First, the \(ES\) is normalized for each gene set to account for the size of the set, yielding a normalized enrichment score (NES). Then, the proportion of false positives is controlled by calculating the FDR corresponding to each NES.

In 2010, a modification of the GSEA methodology was presented for metabolomics studies. This method was called Metabolite Set Enrichment Analysis (MSEA) and its main aim was to help researchers identify and interpret patterns of human and mammalian metabolite concentration changes in a biologically meaningful context (Xia and Wishart 2010). MSEA is currently widely used in the metabolomics community and it is implemented and freely available at the known MetaboAnalyst web-based tool (Xia and Wishart 2010).

As can be seen, GSEA approach is more complex than the ORA methodology, both in terms of methodological aspects and understanding of the method.

The fobitools package provides a function to perform MSEA using the FOBI information. This function requires a ranked list. Here, we will use the metabolites obtained in the limma model ranked by raw p-values.

limma_FOBI_msea <- limma_FOBI_names %>%
  select(FOBI, P.Value) %>%
  filter(!is.na(FOBI)) %>%
  dplyr::arrange(-dplyr::desc(abs(P.Value)))

FOBI_msea <- as.vector(limma_FOBI_msea$P.Value)
names(FOBI_msea) <- limma_FOBI_msea$FOBI

msea_res <- fobitools::msea(FOBI_msea, pvalCutoff = 1)

msea_res %>%
  kbl(row.names = FALSE, booktabs = TRUE) %>%
  kable_styling(latex_options = c("striped"))
className classSize log2err ES NES pval padj leadingEdge
Lean meat 4 0.1797823 0.8733352 1.5962769 0.0609391 0.6093906 FOBI:030709, FOBI:030687, FOBI:030688
Red meat 3 0.0934449 0.7746661 1.4197584 0.1928072 0.8951049 FOBI:030709, FOBI:030687, FOBI:030691
fish 2 0.0323604 0.4285714 0.7936153 0.6653347 0.8951049 FOBI:030688, FOBI:030690
Whole grain cereal products 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701
dairy food product 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701
egg food product 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701
legume food product 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701
meat food product 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701
nut (whole or part) 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701
soybean (whole) 3 0.0156181 0.2177939 0.3991588 0.8951049 0.8951049 FOBI:030692, FOBI:030697, FOBI:030701

7.2.1 MSEA plot with ggplot2

ggplot(msea_res, aes(x = -log10(pval), y = NES, color = NES, size = classSize, label = className)) +
  xlab("-log10(P-value)") +
  ylab("NES (Normalized Enrichment Score)") +
  geom_point() +
  ggrepel::geom_label_repel(color = "black", size = 7) +
  theme_bw() +
  theme(legend.position = "top",
        text = element_text(size = 22)) +
  scale_color_viridis_c() +
  scale_size(guide = "none")

7.2.2 Network of metabolites found in MSEA

FOBI_terms <- msea_res %>%
  unnest(cols = leadingEdge)

fobitools::fobi %>%
  filter(FOBI %in% FOBI_terms$leadingEdge) %>%
  pull(id_code) %>%
  fobi_graph(get = "anc",
             labels = TRUE,
             legend = TRUE,
             labelsize = 6,
             legendSize = 20)

8 Limitations

The FOBI ontology is currently in its first release version, so it does not yet include information on many metabolites and food relationships. All future efforts will be directed at expanding this ontology, leading to a significant increase in the number of metabolites and metabolite-food relationships. The fobitools package provides the methodology for easy use of the FOBI ontology regardless of the amount of information it contains. Therefore, future FOBI improvements will also have a direct impact on the fobitools package, increasing its utility and allowing to perform, among others, more accurate, complete and robust enrichment analyses.

9 Session Information

sessionInfo()
#> R version 4.1.0 (2021-05-18)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.2 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.13-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.13-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] parallel  stats4    stats     graphics  grDevices utils     datasets 
#> [8] methods   base     
#> 
#> other attached packages:
#>  [1] SummarizedExperiment_1.22.0  Biobase_2.52.0              
#>  [3] GenomicRanges_1.44.0         GenomeInfoDb_1.28.0         
#>  [5] IRanges_2.26.0               S4Vectors_0.30.0            
#>  [7] BiocGenerics_0.38.0          MatrixGenerics_1.4.0        
#>  [9] matrixStats_0.58.0           metabolomicsWorkbenchR_1.2.0
#> [11] POMA_1.2.0                   ggrepel_0.9.1               
#> [13] rvest_1.0.0                  kableExtra_1.3.4            
#> [15] forcats_0.5.1                stringr_1.4.0               
#> [17] dplyr_1.0.6                  purrr_0.3.4                 
#> [19] readr_1.4.0                  tidyr_1.1.3                 
#> [21] tibble_3.1.2                 ggplot2_3.3.3               
#> [23] tidyverse_1.3.1              fobitools_1.0.0             
#> [25] BiocStyle_2.20.0            
#> 
#> loaded via a namespace (and not attached):
#>   [1] utf8_1.2.1                  tidyselect_1.1.1           
#>   [3] RSQLite_2.2.7               grid_4.1.0                 
#>   [5] BiocParallel_1.26.0         gmp_0.6-2                  
#>   [7] pROC_1.17.0.1               munsell_0.5.0              
#>   [9] codetools_0.2-18            preprocessCore_1.54.0      
#>  [11] withr_2.4.2                 colorspace_2.0-1           
#>  [13] highr_0.9                   knitr_1.33                 
#>  [15] rstudioapi_0.13             mzID_1.30.0                
#>  [17] labeling_0.4.2              GenomeInfoDbData_1.2.6     
#>  [19] polyclip_1.10-0             bit64_4.0.5                
#>  [21] farver_2.1.0                vctrs_0.3.8                
#>  [23] generics_0.1.0              ipred_0.9-11               
#>  [25] xfun_0.23                   randomForest_4.6-14        
#>  [27] R6_2.5.0                    doParallel_1.0.16          
#>  [29] clue_0.3-59                 graphlayouts_0.7.1         
#>  [31] syuzhet_1.0.6               MsCoreUtils_1.4.0          
#>  [33] DelayedArray_0.18.0         bitops_1.0-7               
#>  [35] cachem_1.0.5                fgsea_1.18.0               
#>  [37] assertthat_0.2.1            scales_1.1.1               
#>  [39] vroom_1.4.0                 ggraph_2.0.5               
#>  [41] nnet_7.3-16                 gtable_0.3.0               
#>  [43] Cairo_1.5-12.2              affy_1.70.0                
#>  [45] tidygraph_1.2.0             timeDate_3043.102          
#>  [47] tictoc_1.0.1                rlang_0.4.11               
#>  [49] clisymbols_1.2.0            systemfonts_1.0.2          
#>  [51] mzR_2.26.0                  GlobalOptions_0.1.2        
#>  [53] splines_4.1.0               ModelMetrics_1.2.2.2       
#>  [55] impute_1.66.0               selectr_0.4-2              
#>  [57] broom_0.7.6                 RecordLinkage_0.4-12.1     
#>  [59] reshape2_1.4.4              BiocManager_1.30.15        
#>  [61] yaml_2.2.1                  modelr_0.1.8               
#>  [63] backports_1.2.1             caret_6.0-88               
#>  [65] tools_4.1.0                 lava_1.6.9                 
#>  [67] bookdown_0.22               affyio_1.62.0              
#>  [69] ellipsis_0.3.2              jquerylib_0.1.4            
#>  [71] ff_4.0.4                    RColorBrewer_1.1-2         
#>  [73] proxy_0.4-25                MSnbase_2.18.0             
#>  [75] MultiAssayExperiment_1.18.0 Rcpp_1.0.6                 
#>  [77] plyr_1.8.6                  zlibbioc_1.38.0            
#>  [79] RCurl_1.98-1.3              ps_1.6.0                   
#>  [81] rpart_4.1-15                GetoptLong_1.0.5           
#>  [83] viridis_0.6.1               haven_2.4.1                
#>  [85] cluster_2.1.2               fs_1.5.0                   
#>  [87] magrittr_2.0.1              RSpectra_0.16-0            
#>  [89] data.table_1.14.0           magick_2.7.2               
#>  [91] circlize_0.4.12             reprex_2.0.0               
#>  [93] pcaMethods_1.84.0           ProtGenerics_1.24.0        
#>  [95] hms_1.1.0                   patchwork_1.1.1            
#>  [97] evaluate_0.14               xtable_1.8-4               
#>  [99] XML_3.99-0.6                readxl_1.3.1               
#> [101] gridExtra_2.3               shape_1.4.6                
#> [103] compiler_4.1.0              ellipse_0.4.2              
#> [105] ncdf4_1.17                  crayon_1.4.1               
#> [107] htmltools_0.5.1.1           mgcv_1.8-35                
#> [109] corpcor_1.6.9               qdapRegex_0.7.2            
#> [111] lubridate_1.7.10            DBI_1.1.1                  
#> [113] tweenr_1.0.2                dbplyr_2.1.1               
#> [115] ComplexHeatmap_2.8.0        MASS_7.3-54                
#> [117] Matrix_1.3-3                permute_0.9-5              
#> [119] cli_2.5.0                   vsn_3.60.0                 
#> [121] gower_0.2.2                 textclean_0.9.3            
#> [123] evd_2.3-3                   RankProd_3.18.0            
#> [125] igraph_1.2.6                pkgconfig_2.0.3            
#> [127] lexicon_1.2.1               recipes_0.1.16             
#> [129] MALDIquant_1.19.3           xml2_1.3.2                 
#> [131] foreach_1.5.1               rARPACK_0.11-0             
#> [133] svglite_2.0.0               ggcorrplot_0.1.3           
#> [135] bslib_0.2.5.1               XVector_0.32.0             
#> [137] webshot_0.5.2               prodlim_2019.11.13         
#> [139] ada_2.0-5                   digest_0.6.27              
#> [141] vegan_2.5-7                 rmarkdown_2.8              
#> [143] cellranger_1.1.0            fastmatch_1.1-0            
#> [145] curl_4.3.1                  rjson_0.2.20               
#> [147] glasso_1.11                 nlme_3.1-152               
#> [149] lifecycle_1.0.0             jsonlite_1.7.2             
#> [151] mixOmics_6.16.0             viridisLite_0.4.0          
#> [153] limma_3.48.0                fansi_0.4.2                
#> [155] pillar_1.6.1                ontologyIndex_2.7          
#> [157] lattice_0.20-44             fastmap_1.1.0              
#> [159] httr_1.4.2                  survival_3.2-11            
#> [161] glue_1.4.2                  png_0.1-7                  
#> [163] iterators_1.0.13            glmnet_4.1-1               
#> [165] bit_4.0.4                   ggforce_0.3.3              
#> [167] class_7.3-19                stringi_1.6.2              
#> [169] sass_0.4.0                  struct_1.4.0               
#> [171] blob_1.2.1                  memoise_2.0.0              
#> [173] Rmpfr_0.8-4                 e1071_1.7-6

References

Castellano-Escuder, Pol, Cristina Andrés-Lacueva, and Alex Sánchez-Pla. 2021. POMA: User-Friendly Workflow for Pre-Processing and Statistical Analysis of Mass Spectrometry Data. https://github.com/pcastellanoescuder/POMA.

Castellano-Escuder, Pol, Raúl González-Domı́nguez, David S Wishart, Cristina Andrés-Lacueva, and Alex Sánchez-Pla. 2020. “FOBI: An Ontology to Represent Food Intake Data and Associate It with Metabolomic Data.” Database 2020.

Creixell, Pau, Jüri Reimand, Syed Haider, Guanming Wu, Tatsuhiro Shibata, Miguel Vazquez, Ville Mustonen, et al. 2015. “Pathway and Network Analysis of Cancer Genomes.” Nature Methods 12 (7): 615.

Ritchie, Matthew E, Belinda Phipson, Di Wu, Yifang Hu, Charity W Law, Wei Shi, and Gordon K Smyth. 2015. “limma Powers Differential Expression Analyses for RNA-Sequencing and Microarray Studies.” Nucleic Acids Research 43 (7): e47. https://doi.org/10.1093/nar/gkv007.

Subramanian, Aravind, Pablo Tamayo, Vamsi K Mootha, Sayan Mukherjee, Benjamin L Ebert, Michael A Gillette, Amanda Paulovich, et al. 2005. “Gene Set Enrichment Analysis: A Knowledge-Based Approach for Interpreting Genome-Wide Expression Profiles.” Proceedings of the National Academy of Sciences 102 (43): 15545–50.

Sud, Manish, Eoin Fahy, Dawn Cotter, Kenan Azam, Ilango Vadivelu, Charles Burant, Arthur Edison, et al. 2016. “Metabolomics Workbench: An International Repository for Metabolomics Data and Metadata, Metabolite Standards, Protocols, Tutorials and Training, and Analysis Tools.” Nucleic Acids Research 44 (D1): D463–D470.

Xia, Jianguo, and David S Wishart. 2010. “MSEA: A Web-Based Tool to Identify Biologically Meaningful Patterns in Quantitative Metabolomic Data.” Nucleic Acids Research 38 (suppl_2): W71–W77.