Next Article in Journal
Integrating Network Pharmacology and Metabolomics to Decipher the Mechanisms Underlying the Therapeutic Effects of Wuzhi Dripping Pills Against MASLD
Previous Article in Journal
Mammalian Arachidonic Acid 15-Lipoxygenases: Fed-Batch Fermentation, Enzyme Purification and Functional Characterization
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Review

Machine Learning–Integrated Metabolomics for Precision Pharmacotherapy: Advances, Challenges, and Clinical Translation

1
Cancer Institute, School of Medicine, Jianghan University, Wuhan 430056, China
2
Institute of Clinical Pharmacology, School of Pharmaceutical Sciences, Sun Yat-sen University, Guangzhou 510006, China
3
Department of Pharmacy, Shenzhen Children’s Hospital, Shenzhen 518026, China
4
Hubei Key Laboratory of Cognitive and Affective Disorders, Jianghan University, Wuhan 430056, China
5
Hubei Provincial Demonstration Center for Experimental Medicine Education, School of Medicine, Jianghan University, Wuhan 430056, China
*
Authors to whom correspondence should be addressed.
These authors contributed equally to this work.
Metabolites 2026, 16(8), 600; https://doi.org/10.3390/metabo16080600
Submission received: 14 July 2026 / Revised: 15 August 2026 / Accepted: 20 August 2026 / Published: 21 August 2026
(This article belongs to the Section Pharmacology and Drug Metabolism)

Abstract

Machine learning (ML) integrated with metabolomics has emerged as a promising strategy to advance precision pharmacotherapy, enabling data-driven prediction of drug response. This review provides an overview of commonly applied ML methodologies in metabolomics-based pharmacological studies, including supervised models (Random Forest, Extreme Gradient Boosting, Support Vector Machine, Logistic Regression, K-Nearest Neighbors), unsupervised models (K-Means Clustering, Principal Component Analysis), and deep learning approaches. We summarize recent progress in the application of metabolomics-driven ML to personalized medication, with a focus on drug dosage optimization, therapeutic efficacy prediction, and adverse drug reaction assessment. Despite these advances, significant challenges remain, including limited explainability, insufficient prospective clinical validation, lack of standardization and reproducibility, and data dimensionality and quality issues. Addressing these issues will be essential for the clinical translation of ML-metabolomics integration. Looking ahead, continued methodological innovation, large-scale multi-center prospective validation, and integration with other omics platforms will be key to unlocking the full potential of metabolomics combined with ML in precision healthcare.

1. Introduction

The core principle of clinical drug administration is to give the right drug, at the right dose, by the right route, at the right time, to the right patient. However, interindividual variability in drug response remains a major challenge in clinical pharmacotherapy, often leading to suboptimal efficacy or severe adverse drug reactions [1]. Pharmacogenomics and pharmacokinetic studies have improved the understanding of drug response variability and have been integrated into clinical practice for certain drugs. Pharmacogenomics has catalyzed a paradigm shift in healthcare, from the conventional “one-size-fits-all” model toward precision, patient-specific therapies [2]. However, these approaches explain only a part of the observed interindividual variability.
Metabolomics, which provides an integrated view of both genetic and environmental influences, has emerged as a powerful tool in precision pharmacotherapy [3]. Supported by highly sensitive detection technologies, metabolomics enables comprehensive profiling of endogenous metabolites in biological samples. Unlike genomics and transcriptomics, which reflect genetic potential and gene expression, metabolomics directly captures the dynamic metabolic shifts induced by disease progression and pharmacological interventions. In pharmacokinetic studies, metabolomics can use untargeted or targeted analyses and be combined with other omics technologies to track metabolic pathways associated with drug clearance [4]. At the same time, databases such as HMDB [5] and MetaboAnalyst [6] provide a vital platform for analyzing drug metabolism mechanisms. These advantages enable metabolomics to offer key insights for optimizing treatment strategies.
However, metabolomics data is characterized by high dimensionality, strong nonlinearity, and large individual differences, making it difficult for traditional statistical methods to extract reliable predictive patterns. ML algorithms have emerged as a powerful solution for this challenge [7]. They excel at extracting key variables and constructing personalized models from high-dimensional, nonlinear data. Combined with Explainable AI (XAI) such as SHapley Additive exPlanations (SHAP) and Local Interpretable Model-agnostic Explanations (LIME), it can enhance the interpretability of model predictions, providing decision support that can be directly adopted in clinical practice [8]. When these two approaches are combined, a new model shifting from post hoc adjustment to pre-treatment prediction is emerging. For example, McCune et al. [9] applied the LASSO model, combined with metabolomics data, screening 13 key metabolites out of 841 metabolites, and successfully constructed a predictive model for busulfan clearance. This model explained 40% of the variability in clearance and completed the prediction two weeks before dosing. It not only achieved effective dimensionality reduction in high-dimensional data but also improved predictive accuracy, providing a new pathway for precision pharmacotherapy.
This review focuses on ML-driven metabolomics in precision pharmacotherapy. We first introduce mainstream algorithms and their applicable scenarios and then summarize the current state of research in three key areas, including drug dose optimization, efficacy prediction, and adverse drug reaction prediction. Finally, we discuss the challenges and prospects of clinical application, intending to provide novel insights into the effective and ethical deployment in precision pharmacotherapy.

2. Machine Learning Concepts Relevant to Metabolomics

2.1. Supervised Learning

Supervised learning is a paradigm in which a model learns a function from a set of labeled training samples, where each input data is paired with a known output. This process enables the estimation of model parameters and the construction of an optimal predictive model from data [10]. Common supervised learning algorithms include ANN, RF, XGBoost, SVM, Logistic Regression, and KNN, among others.

2.1.1. Random Forest

Random Forest (RF) is an ensemble learning model based on the bagging framework that incorporates feature randomization, in which multiple decision trees (base learners) are trained in parallel and their outputs aggregated via majority voting or averaging (Figure 1A) [11]. RF is valued for its strong predictive accuracy and stability when applied to small-sample and high-dimensional datasets [12]. Bagging and classification and regression tree (CART) splitting schemes play pivotal roles in the RF mechanism; rigorous mathematical analysis of either component remains challenging, which explains why simplified versions of the original procedure have been considered in theoretical research to date. RF is a further improvement of the CART model. The decision tree algorithm operates through recursive partitioning, which selects optimal decision thresholds for variables by evaluating multiple candidate thresholds per predictor and implementing the most discriminative threshold until further splits cease to improve discriminatory power [13]. Leveraging intrinsic feature selection and high resilience to noise, RF has been widely applied in precision medicine for tasks including adverse drug reaction early-warning systems, anticancer drug sensitivity prediction, personalized treatment allocation, identification of high-risk medication factors, and interpretable decision support.

2.1.2. Extreme Gradient Boosting

Extreme Gradient Boosting (XGBoost) is an efficient algorithm. The core advantage stems from its unique regularized learning mechanism and the deep integration of the gradient boosting tree framework (Figure 1B). By constructing the regularized objective function, the algorithm can combine the loss function with the regularization penalty term, thus ensuring that the model still maintains high accuracy in the face of new data. In the model training mechanism, XGBoost adopts an iterative enhancement strategy to build a gradient boosting tree integration model. In each iteration, the algorithm generates a new decision tree to correct the residual errors of the preceding model by introducing a second-order Taylor expansion to optimize the loss function and employing a greedy algorithm to search for the best split point [14]. This structured tree-growing method enables the model to automatically capture non-linear relationships and higher-order interaction effects. Therefore, XGBoost can intelligently identify key predictors such as key biomarkers, medication histories, and genetic features from a large number of medical records and reveal potential risk factors through feature importance ranking, making it particularly suitable for adverse reaction and drug efficacy prediction in precision pharmacotherapy [15].

2.1.3. Support Vector Machine

Support Vector Machine (SVM) is a supervised learning algorithm that performs classification or regression by constructing an optimal hyperplane (or set of hyperplanes) that maximizes the geometric margin between classes (Figure 1C) [16]. For nonlinearly separable data, the kernel trick is employed to map the input space into a high-dimensional feature space where linear separation becomes feasible. SVM mechanisms include linear classification, nonlinear kernel-based transformations, and parameter optimization. Compared with other methods, logistic regression is a probabilistic model well-suited for linearly separable problems but cannot inherently handle nonlinear patterns; decision trees offer high interpretability but are sensitive to high-dimensional sparse data; neural networks can capture complex patterns but require large datasets and significant computational resources. In contrast, SVM demonstrates stability in high-dimensional spaces and retains an advantage in small-sample scenarios due to its solid theoretical foundations and strong generalization capability. Subsequent improved models, such as Support Vector Regression (SVR) and accelerated versions based on approximation algorithms (e.g., LIBSVM), have further expanded the scope of application [17].

2.1.4. Logistic Regression

Logistic Regression is a classification model constructed based on the idea of linear regression, which is often used to study the influence of multiple factors on dichotomous classification results, and its core principle is to convert the contribution of the independent variable into a probability value through the logit function (Figure 1D) [18]. Firstly, the weighted summation of the variables obtains a composite score, and then the score is transformed into a probability between 0 and 1. Finally, the classification result is judged according to the probability threshold. This transformation process retains the interpretability of linear models while enabling them to handle nonlinear relationships in classification problems. This makes it particularly well-suited for precision pharmacotherapy. When working with limited sample sizes, it allows researchers to prioritize clinically significant variables and enhance predictive accuracy while controlling the model complexity [19].

2.1.5. K-Nearest Neighbors

K-Nearest Neighbors (KNN) is a classical supervised learning algorithm based on similarity metrics. Its core idea follows the intuitive logic of “clustering things into categories”. Mechanistically, the model operates by calculating the feature distances between the target sample (such as patient physiological data) and all the samples in the training set (Figure 1E). The algorithm then identifies the K closest neighbors and infers the target label by applying majority voting in classification tasks or averaging in regression tasks [20,21]. KNN demonstrates unique value in the field of precision pharmacotherapy with its strengths in handling non-linear relationships and complex biological data [21]. The core feature that distinguishes KNN from other ML models is that it only relies on the local distribution characteristics of different data, without explicitly training the model parameters, and performs real-time distance calculations and decision-making [22]. The dynamic adaptability of KNN allows new patient data to be added to the training set directly without re-training the model. Moreover, KNN is inherently small-sample friendly, which helps mitigate the risk of overfitting that often arises in parametric models when applied to limited datasets. This property renders KNN particularly suitable for treatment optimization in rare diseases, where patient data are inherently scarce and personalized medical strategies are essential.

2.1.6. Least Absolute Shrinkage and Selection Operator (LASSO)

The Least Absolute Shrinkage and Selection Operator (LASSO) is a regularization algorithm that is often used to select the variables that are most strongly associated with the outcome of interest (Figure 1F) [23]. Compared with stepwise regression, LASSO offers simultaneous variable selection and optimization of predictor numbers. By imposing an L1 penalty on the absolute values of the regression coefficients, LASSO performs both coefficient shrinkage and variable selection simultaneously [24]. This approach forces some coefficients to be exactly zero, effectively excluding irrelevant or redundant predictors from the model [25]. Compared with traditional regression methods, LASSO reduces model complexity, mitigates multicollinearity, and improves generalizability, particularly in high-dimensional datasets. In biomedical research and precision medicine, LASSO is widely employed to identify key biomarkers, optimize predictive features, and construct robust prognostic models, thereby supporting precision pharmacotherapy decisions and drug response predictions [24,25,26].

2.2. Unsupervised Learning

Unsupervised learning operates on unlabeled datasets, where no predefined outputs are available, and the categories or groupings of samples are unknown. The objective is to identify and extract inherent structural patterns within the data. This learning paradigm is widely applied to tasks such as clustering and dimensionality reduction. Representative algorithms include K-Means Clustering and Hierarchical Clustering, as well as dimensionality reduction techniques such as Principal Component Analysis (PCA), among others [27]. Overall, unsupervised learning offers indispensable tools in precision medicine, enabling the extraction of meaningful patterns from unlabeled data and supporting the development of personalized medical strategies.

2.2.1. K-Means Clustering

K-Means Clustering (KMC) is an unsupervised learning algorithm that divides a dataset into K clusters. Data points within the same cluster have high similarity. This method requires specifying the initial number of K groups in advance. Usually, the average value of all data points within a cluster is taken as the center of that cluster, and an iterative algorithm is used to minimize the distance between each observation and its corresponding average value (Figure 2A). KMC is mainly used for patient stratification and profiling. Miroslava Nedyalkova proposed KMC to accurately classify patients with type 2 diabetes mellitus diagnosed with an underlying disease [28]. KMC relies on calculating the distance between cluster centers and each sample, which is associated with drawbacks such as high computational cost and suboptimal performance [29]. However, KMC has notable limitations, such as susceptibility to local optima when initial cluster centers are poorly chosen. To overcome this, Tang et al. developed the d-k-means algorithm, which incorporates density–distance weighting and applies the min–max principle to automatically determine both the initial centers and their number [30].

2.2.2. Principal Component Analysis (PCA)

Principal Component Analysis (PCA) is one of the most widely used unsupervised dimensionality reduction techniques in biomedical research [31,32]. It transforms high-dimensional data into a lower-dimensional space by identifying orthogonal principal components that capture the maximum variance in the dataset [33]. Each principal component is a linear combination of the original features, ordered by the amount of variance explained, thereby allowing researchers to retain the most informative aspects of the data while reducing noise and redundancy (Figure 2B). In precision medicine, PCA is commonly employed in the analysis of high-throughput omics data, such as genomics, transcriptomics, metabolomics, and proteomics, where the number of variables far exceeds the number of samples [34]. By projecting patient data into principal component space, PCA facilitates the visualization of patient heterogeneity, identification of subgroups, and initial exploration of treatment response patterns. Despite its popularity and computational efficiency, PCA is inherently a linear method and may not fully capture complex non-linear relationships present in biomedical data, which has motivated the development of alternative non-linear dimensionality reduction approaches such as t-SNE, UMAP, and deep learning-based autoencoders.

2.3. Deep Learning

Deep Learning (DL) is a subset of ML based on neural networks (NNs) [35]. It employs multi-layer neural network architectures to progressively transform raw data into high-level abstract features. Model parameters are iteratively optimized using techniques such as regularization to enhance generalization and prevent overfitting (Figure 3) [36]. Depending on the labeling of the training data, DL algorithms can be categorized into supervised, unsupervised, and semi-supervised approaches.
Supervised DL is trained using labeled data, with commonly used architectures including artificial neural networks (ANN), convolutional neural networks (CNN), and recurrent neural networks (RNN). These models are widely applied in predictive analytics and other fields. Unsupervised DL, by contrast, focuses on learning from unlabeled data and holds significant potential for innovation in the medical field [27]. Semi-supervised learning combines a small set of labeled data with a large volume of unlabeled data, making it particularly valuable in contexts where annotated samples are limited, such as medical diagnostics. Common architectures used in semi-supervised DL include CNN, RNN, and graph convolutional networks (GCN).
In addition, neural networks with multiple hidden layers are often called deep neural networks (DNNs). They can be flexibly applied to the supervised, unsupervised, and semi-supervised DL models described above [35]. Because of its significant feature extraction capability, DL has shown great advantages in the field of precision pharmacotherapy, especially in drug efficacy prediction and drug therapeutic regimen selection.

3. Research Advances in Machine Learning and Metabolomics for Precision Pharmacotherapy

We provide an overview of the recent applications of ML-driven metabolomics in precision pharmacotherapy in Table 1 and Figure 4.

3.1. Applications of Metabolomics and Machine Learning in Pharmacokinetics and Dose Optimization

In current clinical practice, many medications are administered at fixed doses, overlooking inter-individual variability. For drugs with a narrow therapeutic index, where the effective dose is close to the toxic threshold, such conventional dosing strategies can lead to inconsistent efficacy and a heightened risk of adverse drug reactions. Metabolomics combined with ML algorithms has emerged as a powerful tool for building real-time, patient-specific pharmacokinetic prediction models. These models enable dynamic monitoring of drug concentrations and individualized dose adjustments, thereby maintaining therapeutic levels while minimizing toxicity. Tacrolimus, widely prescribed to maintain graft function after organ transplantation, requires precise dosing due to its narrow therapeutic window and pronounced interindividual variability. Zhu et al. [39] conducted a plasma metabolomic study in liver transplant recipients. They used the LASSO algorithm to screen out 31 endogenous metabolites associated with the dose-adjusted trough concentration (C0/D) of tacrolimus. A multiple linear mixed model incorporating 11 metabolites alongside clinical covariates demonstrated strong predictive performance (Rfixed = 0.64, Rtotal = 0.78), evaluated by 10-fold cross-validation, highlighting the value of integrating metabolomic biomarkers into dosing models. Additionally, Burghelea et al. [41] applied urinary metabolomics coupled with ML to stratify kidney transplant patients by tacrolimus exposure. A logistic regression model based on five urinary metabolites was evaluated by leave-one-out cross-validation and achieved an AUC of 0.810. These studies support the feasibility of incorporating metabolic phenotypes into tacrolimus exposure models. Traditional tacrolimus dose adjustment relies on TDM and population pharmacokinetic (PopPK) models, which are limited by univariate inputs and predefined mathematical relationships. In contrast, the integration of metabolomics and ML overcomes these limitations. However, direct comparative studies against models based on clinical covariates, TDM, PopPK, and pharmacogenomic predictors remain limited. Therefore, independent, prospective validation is required before metabolomics combined with ML algorithms can be considered suitable tools for guiding clinical dosing decisions. Furthermore, the clinical value of metabolomics combined with ML algorithms should be evaluated in terms of their incremental benefit over established TDM and PopPK approaches.
In vancomycin therapy, a critical pharmacological objective is to balance antimicrobial efficacy with the risk of nephrotoxicity by maintaining the ratio of the area under the concentration-time curve (AUC) and minimum inhibitory concentration (MIC) at less than 400 [89]. In recent years, the integration of ML techniques has introduced innovative approaches to achieving this therapeutic target. To optimize initial vancomycin dosing, Yu et al. [40] applied multiple ML algorithms using 5-fold cross-validation to predict vancomycin clearance in neonates and infants by integrating clinical and metabolomic data. The Gradient Boosting Regressor achieved high predictive accuracy (R2 = 0.830) using only clinical covariates. Although the addition of metabolomic features did not markedly improve predictive accuracy, several metabolites were identified as the top predictors by ML models, indicating potential mechanistic significance. However, it should be noted that the study included only 42 patients, whereas more than 4500 metabolomic features were analyzed. This pronounced imbalance between sample size and feature dimensionality increases the risk of model overfitting and may lead to optimistic estimates of predictive performance. Furthermore, no independent external validation cohort was included, and the generalizability of the model, therefore, remains uncertain. These limitations indicate that the incremental value of metabolomics for vancomycin clearance prediction requires confirmation in larger, independent cohorts with rigorous external validation.
For paroxetine, An et al. [37] demonstrated the utility of metabolomics in predicting antidepressant pharmacokinetics. By analyzing pre- and post-dose plasma samples with UPLC-HRMS, they identified 39 metabolites significantly altered by treatment. A two-stage Partial Least Squares approach linked these metabolic profiles to key PK parameters (AUC and Cmax), and a biomarker panel including cortisone, L-tyrosine, and L-valine enabled prediction of interindividual variability and discrimination between high and low responders before treatment. These findings underscore the potential of baseline metabolic signatures to guide dosing strategies and anticipate differential drug responses. However, this study included only 12 participants and lacked independent external validation. The model is at risk of overfitting, limiting confidence in the generalizability of the model.
Taken together, these studies highlight the complementary strengths of metabolomics and ML in dose optimization. Metabolomic profiling facilitates the discovery of biologically relevant features associated with drug exposure, while ML models improve predictive performance by capturing complex covariate interactions. This data-driven, individualized dosing strategy holds significant potential to transcend the limitations of traditional empirical approaches. Nevertheless, most current studies are based on small cohorts and internal validation; independent external validation and prospective clinical studies remain limited. Moreover, the incremental value of metabolomics over established approaches such as TDM, PopPK, and pharmacogenomics has not been sufficiently demonstrated. Future studies should focus on larger, prospective cohorts and direct comparative evaluation to determine whether metabolomics-informed ML models can meaningfully improve clinical dosing decisions.

3.2. Applications of Metabolomics and Machine Learning in Drug Efficacy Prediction

In precision pharmacotherapy, accurately predicting a drug’s efficacy for a specific patient is critical. In recent years, the integration of metabolomics with ML has emerged as a powerful strategy for individualized drug efficacy prediction, offering both mechanistic insights and translational potential. A growing body of studies across oncology, autoimmune diseases, and critical care highlights the potential of this integrative approach to uncover metabolic biomarkers, enable patient stratification, and guide therapeutic optimization. However, we need to pay particular attention to cohort size, study design, and validation strategies, as well as whether the identified markers are truly treatment-predictive rather than merely prognostic.
One important application has been in oncology, where metabolomics-guided models have revealed novel predictive signatures for chemotherapy efficacy. For instance, using pre-treatment plasma samples from 88 triple-negative breast cancer (TNBC) patients, researchers found that elevated levels of acetylated polyamines, including diacetylspermine and acetylspermidine, were associated with poorer response using deep learning, achieving high predictive accuracy (AUC = 0.97) in internal validation [50]. Similarly, lipid- and bile-acid-related metabolites were associated with response heterogeneity across breast cancer subtypes, such as triple-negative (TN), luminal B (LB), and HER2+. In TN patients, higher baseline docosahexaenoic acid (DHA) and presurgery secondary bile acids (glycodeoxycholic acid and glycohyocholic acid) were strongly associated with treatment response and overall survival, with a combined AUC of 0.946 for response prediction and 0.777 for survival prognosis, as evaluated by 100 repeated cross-validations [49]. These studies indicate the potential of integrating metabolomics with ML to predict responses to neoadjuvant chemotherapy. However, both studies were retrospective, involved relatively small sample sizes, and lacked independent external validation. These limitations may increase the risk of overfitting and reduce confidence in the generalizability of the reported predictive performance. It is also important to distinguish treatment-response prediction from survival prognosis, as these represent different clinical endpoints. Strong prognostic discrimination does not necessarily imply an ability to identify which treatment will provide the greatest benefit to an individual patient.
Beyond oncology, metabolomics has not only been applied to predict interindividual variation in drug pharmacokinetics but also directly to predict interindividual differences in drug efficacy. In immune-mediated diseases, metabolomic-ML approaches provided insights into treatment resistance in immune thrombocytopenia (ITP), identifying lipid metabolism and mitochondrial dysfunction as key contributors [54]. This finding suggests that drugs targeting lipid metabolism or mitochondrial function could be prospectively explored as a combination therapy strategy for patients with treatment-resistant ITP. Simultaneously, relevant metabolites could serve as biomarkers for identifying suitable candidates among patients with resistant disease. Similarly, in Behçet’s disease, integration of microbiome, metabolome, and XAI was proposed as a framework for individualized interventions [53]. This framework can identify distinct patient metabolic subgroups through cluster analysis and use XAI to provide interpretable evidence for drug efficacy prediction. Notably, an observational study in intracranial aneurysms [52] and a randomized, placebo-controlled VITdAL-ICU trial [51] in intracranial aneurysms and critical illness demonstrated the broader clinical value of metabolic stratification: gut microbiome-derived metabolites such as indoxyl sulfate were implicated in aneurysm rupture risk, while metabolic clustering predicted differential survival benefits from vitamin D supplementation in ICU patients. Although the former study used an independent external validation cohort and achieved an AUC of 0.972, it still requires further validation through prospective studies. The latter study was a post hoc analysis of a randomized controlled trial, which validated cluster stability only through sensitivity analysis and did not include an independent external cohort, so its conclusions require further validation using an independent external cohort.
Taken together, current studies demonstrate the potential of metabolomics combined with ML algorithms for treatment response prediction, but the available evidence remains at an exploratory stage. Many models are derived from relatively small or retrospective cohorts, and independent external or prospective validation remains limited. More importantly, most studies focus on distinguishing responders from non-responders within a single treatment regimen, rather than determining which of several available therapies would provide the greatest benefit for an individual patient. Future research should prioritize externally validated and prospective models that compare alternative treatment options, assess the incremental value of metabolomic features beyond established clinical predictors, and distinguish treatment-predictive biomarkers from general prognostic markers. Such studies will be essential before metabolomics-based ML models can provide robust support for individualized treatment selection.

3.3. Applications of Metabolomics and Machine Learning in Adverse Drug Reaction Prediction

Adverse drug reactions (ADRs) are harmful and unintended responses to drugs administered at normal doses, unrelated to their therapeutic purpose [90]. They may arise from a single drug or from drug–drug interactions, often necessitating dose reduction or discontinuation and ultimately leading to treatment failure. Accurate prediction of ADRs is therefore critical to ensuring rational drug use. ML-integrated metabolomics offers a potential strategy for identifying multivariate metabolic features associated with ADRs. However, the extent to which these models improve prediction beyond conventional clinical, exposure-based, or pharmacogenomic risk factors remains incompletely established.
Natural products such as periplocin, Polygonum multiflorum, emodin, and paclitaxel are widely used in clinical practice but are frequently associated with severe ADRs, particularly cardiotoxicity and drug-induced liver injury. Recent studies have applied metabolomics in combination with ML to systematically evaluate their safety and elucidate toxicity mechanisms. For example, Li et al. [67] utilized ultra-performance liquid chromatography coupled with quadrupole time-of-flight mass spectrometry (UPLC-Q-TOF/MS) and SVM to identify 11 cardiotoxicity-associated biomarkers of periplocin. The SVM model achieved 87.5% accuracy during cross-validation and 100% accuracy in an internally partitioned hold-out test set. However, the absence of an independent external cohort and the use of primary cardiomyocytes from a single experimental batch limit confidence in the robustness and generalizability of the reported performance.
In liver injury caused by Polygonum multiflorum, Hu et al. [77] analyzed clinical plasma metabolomic profiles with an RF model and identified three highly sensitive and specific biomarkers for early ADR prediction, which can be used for early warning of liver toxicity during treatment with Polygonum multiflorum. Notably, this study only enrolled 6 positive liver injury cases and lacked independent external validation and prospective cohort verification, so the clinical utility of the biomarkers remains to be confirmed by larger cohorts. Similarly, Song et al. [75] employed a back-propagation ANN with internal validation to evaluate model performance and identified three hepatotoxic constituents of Polygonum multiflorum, including emodin. This workflow can be used for toxicity screening of lead compounds during the drug development process to eliminate high-risk candidate molecules, while Zhang et al. [85] integrated LC-MS and NMR with a double random forest (RF-RF) classifier to identify 17 valid differential metabolites linked to hepatotoxicity, which may provide candidate biomarkers for future clinical risk stratification and safety monitoring. In contrast to studies reporting high classification performance, Chen et al. [84] used ML to identify metabolic biomarkers of paclitaxel neurotoxicity among 20 amino acids, but the model performed poorly. This highlights that the key to the successful application of ML lies in high-quality feature inputs, meaning that the predictive value of ML depends strongly on whether the measured features contain sufficient information related to the outcome. In Chen’s research, amino acids such as glutamate and phenylalanine showed only weak statistical associations with neurotoxicity, suggesting that the available metabolic feature space may not have captured sufficient biological information for reliable prediction. These studies illustrate the potential of integrating ML with metabolomics for toxicity-related biomarker discovery and early risk assessment. Rigorous external validation, representative sampling, and solid biological grounding between input features and tested outcomes are core requirements for the successful application of this approach.
For small-molecule drugs such as cisplatin and doxorubicin, severe ADRs, including nephrotoxicity, cardiotoxicity, and thrombocytopenia, remain major clinical concerns. Zhang et al. [68] applied non-targeted metabolomics and ML to rat kidney tissues and revealed pronounced medullary toxicity of cisplatin, identifying 29 key metabolites associated with nephrotoxicity. Macromolecular drugs such as interferon-β (IFNβ) and immune checkpoint inhibitors (ICIs) also exhibit significant safety risks due to anti-drug antibody (ADA) formation and immune-related adverse events (irAEs). Approximately 35% of multiple sclerosis (MS) patients develop ADA following IFNβ therapy. Waddington et al. [47] employed serum metabolomics combined with six ML classifiers to predict ADA development, which were all evaluated via ten-fold cross-validation, where lasso logistic regression achieved high predictive accuracy (F1 = 0.808, specificity = 0.91). Yet a limited sample size hindered stratified analysis, and dosage forms introduced confounding bias. In the context of ICIs, Hu et al. [78] developed an RF classifier based on 14 microbial features to predict irAEs. The classifier was evaluated via stratified ten-fold cross-validation, study-to-study transfer, and leave-one-study-out validation, as well as on two retrospective independent cohorts, achieving an AUC of 0.88 across multiple cohorts. Targeted metabolomics further revealed that irAE-free patients exhibited significantly higher serum methylnaphthoquinone levels than affected patients, underscoring the utility of microbial and metabolic biomarkers in predicting irAE onset and guiding early intervention. Nevertheless, its performance was constrained by confounders, including tumor subtypes and treatment regimens, and real-world prospective validation remains lacking. While most existing studies focus on ADR prediction for single-drug regimens, research is increasingly extending to combination therapies. Li et al. [81] constructed an ML model based on metabolomic signatures to identify plasma features associated with ADRs in patients receiving Lenvatinib combined with anti-PD-1 therapy for unresectable hepatocellular carcinoma, built with repeated ten-fold cross-validation for internal assessment and further validated via independent external validation, revealing underlying metabolic mechanisms of drug synergy and toxicity. Wang et al. [73] further demonstrated that pre-treatment metabolomic and microbiome profiling, combined with multiple ML models, could achieve accurate early prediction of anti-tuberculosis drug-induced liver injury, which was tuned and assessed via repeated five-fold cross-validation, offering a novel ADR warning system for clinical use. However, the model performance was evaluated mainly within the studied cohorts, and its generalizability requires further independent external validation and prospective verification.
Overall, current evidence suggests that metabolomics integrated with ML has large potential for ADR risk stratification, biomarker discovery, and mechanistic investigation. However, the level of evidence remains heterogeneous. Many studies rely on small or retrospective cohorts, internal validation, or experimental toxicity models, and only a limited number have undergone independent external validation. The key translational gap is therefore not simply achieving high discrimination but demonstrating reproducible performance and incremental clinical value across independent populations and real-world treatment settings. Future studies should prioritize multicenter prospective validation and assess whether metabolomics-informed models improve ADR prevention or treatment decisions beyond established clinical, pharmacokinetic, and pharmacogenomic risk factors.

4. Key Barriers to Clinical Translation of ML-Integrated Metabolomics

ML integrated with metabolomics has made rapid progress in precision pharmacotherapy over recent years. While these advances hold significant promise, the translation of ML integrated with metabolomics into routine clinical practice remains hindered by substantial challenges. The high dimensionality, strong correlations, and incomplete metabolite annotation in metabolomics aggravate critical ML challenges such as interpretability and overfitting. Meanwhile, ML algorithms’ decision-mechanism dependence and feature-importance biases severely undermine biomarker discovery’s stability and reproducibility. The limited clinical translation of metabolomics integrated with ML is primarily constrained by four key challenges: limited mechanistic explainability, insufficient prospective clinical validation, lack of standardization and reproducibility, and data dimensionality and quality issues. This section provides a critical assessment of four major challenges and discusses future directions for the application of ML integrated with metabolomics in precision pharmacotherapy (Figure 5).

4.1. Limited Mechanistic Explainability

Many ML models, particularly DL, are regarded as “black-box” models with low interpretability because their internal decision-making logic is complex and the underlying operations are difficult to visualize or explicitly demonstrate. The biological rationale behind their predictions is not easily elucidated, which diminishes clinicians’ trust [91]. On the other hand, metabolomics measures downstream small-molecule metabolites, whereas the efficacy or toxicity targets of most drugs reside upstream at the protein level (such as enzymes, receptors, and ion channels). Multiple layers of metabolic regulatory networks lie between the two, making it difficult for changes in metabolite levels to directly and specifically reflect the functional state of the target [92]. This indirectness further complicates the biological interpretation of associations between metabolite features and drug mechanisms of action. In summary, the low interpretability of ML and the indirect nature of metabolic markers jointly result in the poor transparency of predictions derived from integrating ML and metabolomics, severely limiting the practical value of this technology in clinical applications.
To address this dual challenge, three complementary strategies proposed in recent years deserve attention. Firstly, multi-omics integration can help bridge the gap between downstream metabolite changes and their upstream protein executors. Secondly, metabolic network analysis can infer the partial order relations of metabolite interactions from steady-state observational data [93]. Thirdly, XAI methods partially alleviate the “black box” problem by quantifying the marginal contribution of each metabolic feature to the model output [91]. In the reviewed studies, specific XAI techniques, including SHAP, LIME, and attention mechanisms, have been increasingly adopted. For instance, SHAP analysis has been applied to identify key metabolites contributing to treatment response predictions in breast cancer [50], while LIME has been used to provide patient-level explanations for metabolic syndrome risk prediction [91]. These methods provide both global feature importance rankings and local explanations for individual predictions, thereby improving model transparency and facilitating the discovery of biologically interpretable metabolite signatures. Importantly, however, XAI explains how a model generates its predictions but does not by itself establish biological causality. Therefore, XAI should ideally be combined with pathway analysis, multi-omics evidence, and experimental validation to improve both computational and biological interpretability.

4.2. Insufficient Model Validation and Prospective Clinical Evidence

Currently, most studies integrating ML with metabolomics remain retrospective and exploratory, with generally small cohorts and relying predominantly on internal validation. Internal resampling approaches, including k-fold cross-validation, repeated cross-validation, and bootstrap resampling, are important for estimating model performance during development but cannot establish generalizability to independent populations. Moreover, when feature selection and hyperparameter optimization are performed, these procedures should be incorporated within the resampling framework to minimize information leakage and optimistic performance estimates. Independent external validation, from different centers, populations, and analytical batches, therefore provides a substantially stronger test of model transportability. Beyond discrimination, model calibration should also be evaluated to determine whether predicted probabilities correspond appropriately to observed outcome frequencies. Calibration plots and calibration intercepts and slopes should be reported, while Brier scores can provide an additional measure of overall probabilistic accuracy. Transparent reporting is equally important: studies should clearly document cohort selection, data preprocessing, missing-data handling, feature-selection procedures, hyperparameter tuning, validation design, and all reported performance measures in accordance with established reporting guidance such as TRIPOD + AI [94]. PROBAST + AI may further support the assessment of methodological quality, risk of bias, and clinical applicability [95].
In addition, a lack of large-scale, prospective cohort validation undermines the credibility of the findings and their clinical translatability. Most published studies focus on discrimination performance rather than whether model-guided decisions improve patient outcomes. An important question for precision pharmacotherapy is whether metabolomics-based ML models provide meaningful incremental value beyond established approaches such as clinical risk factors, TDM, PopPK, PK/PD modeling, and pharmacogenomics. Improvements in AUROC or accuracy alone may not justify clinical implementation unless they translate into more appropriate dosing, improved efficacy, reduced toxicity, or other measurable patient benefits. NICE has issued multiple relevant clinical guidelines, and the FDA has approved over 950 AI/ML-enabled medical devices in the field of medical imaging [96]. No mature clinical guidelines or implementation frameworks have yet emerged for ML-integrated metabolomics. Therefore, the research paradigm must shift decisively from current small cohorts, and retrospective studies toward prospective, multicenter, large-cohort investigations that rigorously validate biomarkers with clinical translation potential. Finally, even when adequate predictive and clinical validity has been demonstrated, regulatory, clinical workflow integration, and cost-effectiveness remain important implementation considerations [97].

4.3. Lack of Standardization and Reproducibility

The lack of standardization in sample collection, analytical measurement, data processing, and reporting workflows substantially limits the cross-laboratory comparison and validation of results, making it difficult to reach consensus even across studies of identical biological samples. At the core of this challenge is the lack of harmonization across different analytical platforms, as the instrument models, column types, and data acquisition modes employed by distinct platforms such as liquid chromatography-mass spectrometry (LC-MS) and gas chromatography-mass spectrometry (GC-MS) vary considerably, resulting in data with highly heterogeneous technical characteristics. In addition, pre-analytical factors, including fasting status, sample collection procedures, storage conditions, and freeze–thaw cycles, can substantially influence metabolite profiles and introduce additional sources of variability. Furthermore, batch effects caused by instrument signal drift, reagent lot differences, and variations in laboratory operating conditions may introduce systematic errors that can easily be misinterpreted as genuine biological signals. Notably, models developed under batch-confounded datasets may show apparently strong internal performance but deteriorate when applied to independently generated datasets.
Overcoming this bottleneck requires establishing a metabolomics data standardization consortium to coordinate the construction of standardized metabolomics protocols. Existing mature public platforms can play a key supporting role. For instance, MetaboAnalyst provides standardized workflows for metabolomics data processing and multi-omics integrative analysis [6]. The Metabolomics Innovation Centre (TMIC) offers comprehensive metabolomics platforms integrating advanced analytical technologies, standardized workflows, and extensive database resources. Collectively, these resources facilitate greater harmonization of metabolomics workflows, data processing, and metabolite annotation, although broader interlaboratory standards and validation efforts remain necessary.

4.4. Data Dimensionality and Quality Issues

Finally, high-dimensional data, small sample sizes, and low metabolite annotation coverage severely limit the clinical applicability of ML–metabolomics integration. At the data level, metabolomics faces several fundamental challenges. Firstly, metabolomics datasets often contain thousands of metabolic features, whereas clinical sample sizes remain relatively limited. This “high-dimensional, small-sample” structure, combined with substantial interindividual biological heterogeneity and strong correlations among metabolites, substantially increases the risk of overfitting and unstable feature selection. Secondly, in untargeted metabolomics, only 2–20% [98] of metabolic features can be successfully annotated with known chemical structures, and the vast majority of detected signals correspond to “unknown metabolites.” Although substantial progress has been made through the development of comprehensive databases and analytical platforms, such as HMDB and METLIN, challenges persist in accurately identifying and quantifying metabolites across diverse experimental settings. As a result, the large proportion of unidentified or ambiguously annotated features limits pathway-level interpretation and complicates the translation of ML-selected signals into biologically interpretable and clinically measurable biomarkers.
Beyond these structural issues, missing data, normalization handling, and feature selection constitute additional challenges at the data level that critically impact machine learning performance. Due to detection limits and spectral peak overlap, missing values are prevalent in metabolomics data. Importantly, missing values in metabolomics are not random, and inappropriate imputation may distort metabolite distributions and downstream ML performance [99]. Similarly, no universally optimal normalization strategy exists. Inappropriate normalization methods can distort the relative abundance of metabolites, introduce spurious differences, alter relationships among features, and ultimately compromise the robustness and reproducibility of model-based results. Furthermore, feature selection represents another major source of model instability because highly correlated metabolites can produce different but apparently equivalent feature subsets across resampled datasets. If researchers treat feature selection merely as a standardized preprocessing step without conducting robustness validation, they may derive poorly reproducible prediction models and identify spurious metabolic biomarkers [100]. Feature selection and hyperparameter tuning should instead be conducted within each training fold, or within an appropriate nested resampling framework, to minimize information leakage.
Addressing these challenges requires not only improved experimental design and data acquisition but also the development of advanced computational strategies tailored to high-dimensional, noisy datasets. Such practices are essential for distinguishing reproducible metabolic biomarkers from dataset-specific predictive signals.

5. Conclusions

The integration of ML and metabolomics offers a powerful framework by linking genetic variation to downstream biochemical phenotypes and enabling data-driven prediction of drug exposure, therapeutic efficacy, and toxicity. However, challenges including limited explainability, insufficient model validation and prospective clinical evidence, lack of standardization and reproducibility, and high-dimensional data continue to hinder clinical translation. In the near term, one of the most clinically feasible applications of ML–metabolomics is likely dose optimization for narrow-therapeutic-index drugs. Future research should focus on high-quality, standardized datasets and interpretable and robust models. In particular, it is necessary to strengthen the integration of multi-omics, such as metabolomics, genomics, and proteomics, to reveal the complex mechanisms underlying drug responses and provide more reliable decision support for precision pharmacotherapy. Ultimately, the clinical value of ML-integrated metabolomics will depend not only on predictive accuracy but also on whether it provides reproducible and clinically meaningful incremental benefit beyond established pharmacological and clinical decision-making approaches.

Author Contributions

Conceptualization, J.M. and P.L.; writing—original draft preparation, P.L., Y.H., X.Z. and X.H. (Xianglin Hu); review and editing, X.H. (Xiaoying Hou), Q.Z. and J.M.; supervision, M.H., X.H. (Xiaoying Hou), Y.L. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the National Natural Science Foundation of China, grant number 82504919 and the Natural Science Foundation of Hubei Province, grant number 2024AFB941.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

No new data were created or analyzed in this study.

Acknowledgments

We thank Shuxian Wang and Yunna Song (School of Medicine, Jianghan University, China) for their contributions to the original draft preparation. ChatGPT-4 was used to assist with language editing, including improving clarity, readability, and overall linguistic quality of the manuscript. After using this tool, the authors carefully reviewed and revised the content as needed and take full responsibility for the integrity and accuracy of the published work.

Conflicts of Interest

The authors declared no competing interests for this work.

References

  1. Mokbel, K.; Weedon, M.; Jackson, L. Pharmacogenomic Determinants of Adverse Drug Effects: A Systematic Review and Meta-analysis. In Vivo 2024, 38, 2098–2106. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  2. Sadee, W.; Wang, D.; Hartmann, K.; Toland, A.E. Pharmacogenomics: Driving Personalized Medicine. Pharmacol. Rev. 2023, 75, 789–814. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  3. Dalamaga, M. Clinical metabolomics: Useful insights, perspectives and challenges. Metab. Open 2024, 22, 100290. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  4. Standing, J.F. Could Metabolomics Be the Key to Unlocking Precision Dosing in the Clinic? Clin. Pharmacol. Ther. 2023, 113, 207–209. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  5. Wishart, D.S.; Tzur, D.; Knox, C.; Eisner, R.; Guo, A.C.; Young, N.; Cheng, D.; Jewell, K.; Arndt, D.; Sawhney, S.; et al. HMDB: The Human Metabolome Database. Nucleic Acids Res. 2007, 35, D521–D526. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  6. Pang, Z.; Zhou, G.; Ewald, J.; Chang, L.; Hacariz, O.; Basu, N.; Xia, J. Using MetaboAnalyst 5.0 for LC-HRMS spectra processing, multi-omics integration and covariate adjustment of global metabolomics data. Nat. Protoc. 2022, 17, 1735–1761. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  7. Elguoshy, A.; Zedan, H.; Saito, S. Machine Learning-Driven Insights in Cancer Metabolomics: From Subtyping to Biomarker Discovery and Prognostic Modeling. Metabolites 2025, 15, 514. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  8. Shenouda, A.; Senthilkumar, S.; Mourad, Y.; Xie, J.; Peker, E.; Zeeshan, S.; Ahmed, Z. Artificial intelligence to investigate metabolomics data for precision medicine. Metabolomics 2026, 22, 29. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  9. McCune, J.S.; Navarro, S.L.; Baker, K.S.; Risler, L.J.; Phillips, B.R.; Randolph, T.W.; Shireman, L.; Schoch, H.G.; Deeg, H.J.; Zhang, Y.; et al. Prediction of Busulfan Clearance by Predose Plasma Metabolomic Profiling. Clin. Pharmacol. Ther. 2023, 113, 370–379. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  10. Zhan, S.; Ma, P.; Liu, F. Application of machine learning in the therapeutic drug monitoring and individual drug therapy. China Pharm. 2023, 34, 117–128. [Google Scholar] [CrossRef]
  11. Breiman, L. Random Forests. Mach. Learn. 2001, 45, 5–32. [Google Scholar] [CrossRef] [Scilit]
  12. Biau, G.; Scornet, E. A random forest guided tour. Test 2016, 25, 197–227. [Google Scholar] [CrossRef] [Scilit]
  13. Rigatti, S.J. Random Forest. J. Insur. Med. 2017, 47, 31–39. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  14. Chen, T.; Guestrin, C. XGBoost: A Scalable Tree Boosting System. In Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, 13–17 August 2016; pp. 785–794. [Google Scholar]
  15. Mo, X.; Chen, X.; Ieong, C.; Zhang, S.; Li, H.; Li, J.; Lin, G.; Sun, G.; He, F.; He, Y.; et al. Early Prediction of Clinical Response to Etanercept Treatment in Juvenile Idiopathic Arthritis Using Machine Learning. Front. Pharmacol. 2020, 11, 1164. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  16. Cortes, C.; Vapnik, V. Support-vector networks. Mach. Learn. 1995, 20, 273–297. [Google Scholar] [CrossRef] [Scilit]
  17. Hsu, C.W.; Chang, C.C.; Lin, C.J. A Practical Guide to Support Vector Classification; Department of Computer Science National Taiwan University: Taipei, Taiwan, 2003; pp. 1–20. [Google Scholar]
  18. Nick, T.G.; Campbell, K.M. Logistic Regression. In Topics in Biostatistics; Ambrosius, W.T., Ed.; Humana Press: Totowa, NJ, USA, 2007; pp. 273–301. [Google Scholar]
  19. Stoltzfus, J.C. Logistic regression: A brief primer. Acad. Emerg. Med. 2011, 18, 1099–1104. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  20. Samet, H. K-nearest neighbor finding using MaxNearestDist. IEEE Trans. Pattern Anal. Mach. Intell. 2008, 30, 243–252. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  21. Zhang, Z. Introduction to machine learning: K-nearest neighbors. Ann. Transl. Med. 2016, 4, 218. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  22. Halder, R.K.; Uddin, M.N.; Uddin, M.A.; Aryal, S.; Khraisat, A. Enhancing K-nearest neighbor algorithm: A comprehensive review and performance analysis of modifications. J. Big Data 2024, 11, 113. [Google Scholar] [CrossRef] [Scilit]
  23. Daghir-Wojtkowiak, E.; Wiczling, P.; Bocian, S.; Kubik, Ł.; Kośliński, P.; Buszewski, B.; Kaliszan, R.; Markuszewski, M.J. Least absolute shrinkage and selection operator and dimensionality reduction techniques in quantitative structure retention relationship modeling of retention in hydrophilic interaction liquid chromatography. J. Chromatogr. A 2015, 1403, 54–62. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  24. Ma, X.; Mo, C.; Huang, L.; Cao, P.; Shen, L.; Gui, C. Corrigendum: Robust rank aggregation and least absolute shrinkage and selection operator analysis of novel gene signatures in dilated cardiomyopathy. Front. Cardiovasc. Med. 2022, 9, 1002803. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  25. Yuan, Q.; Ren, J.; Wang, Z.; Ji, L.; Deng, D.; Shang, D. Identification of the Real Hub Gene and Construction of a Novel Prognostic Signature for Pancreatic Adenocarcinoma Based on the Weighted Gene Co-expression Network Analysis and Least Absolute Shrinkage and Selection Operator Algorithms. Front. Genet. 2021, 12, 692953. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  26. Lee, T.F.; Chao, P.J.; Ting, H.M.; Chang, L.; Huang, Y.J.; Wu, J.M.; Wang, H.Y.; Horng, M.F.; Chang, C.M.; Lan, J.H.; et al. Using multivariate regression model with least absolute shrinkage and selection operator (LASSO) to predict the incidence of Xerostomia after intensity-modulated radiotherapy for head and neck cancer. PLoS ONE 2014, 9, e89700. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  27. Naz, H.; Ahuja, N.J. A novel contrast enhancement technique for diabetic retinal image pre-processing and classification. Int. Ophthalmol. 2024, 45, 11. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  28. Nedyalkova, M.; Madurga, S.; Simeonov, V. Combinatorial K-Means Clustering as a Machine Learning Tool Applied to Diabetes Mellitus Type 2. Int. J. Environ. Res. Public Health 2021, 18, 1919. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  29. Hozumi, Y.; Wang, R.; Yin, C.; Wei, G.W. UMAP-assisted K-means clustering of large-scale SARS-CoV-2 mutation datasets. Comput. Biol. Med. 2021, 131, 104264. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  30. Tang, Z.; Zhu, Z.; Yang, Y.; Caihong, L.; Lian, L. DK-means algorithm based on distance and density. Appl. Res. Comput. 2020, 37, 1719–1723. [Google Scholar]
  31. Yi, S.; He, Z.; Jing, X.Y.; Li, Y.; Cheung, Y.M.; Nie, F. Adaptive Weighted Sparse Principal Component Analysis for Robust Unsupervised Feature Selection. IEEE Trans. Neural Netw. Learn. Syst. 2020, 31, 2153–2163. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  32. Candés, E.; Li, X.; Ma, Y.; Wright, J. Robust principal component analysis?: Recovering low-rank matrices from sparse errors. In Proceedings of the 2010 IEEE Sensor Array and Multichannel Signal Processing Workshop, Jerusalem, Israel, 4–7 October 2010; pp. 201–204. [Google Scholar]
  33. Fong, S.; Pabis, K.; Latumalea, D.; Dugersuren, N.; Unfried, M.; Tolwinski, N.; Kennedy, B.; Gruber, J. Principal component-based clinical aging clocks identify signatures of healthy aging and targets for clinical intervention. Nat. Aging 2024, 4, 1137–1152. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  34. Hubert, M.; Rousseeuw, P.J.; Vanden Branden, K. ROBPCA: A New Approach to Robust Principal Component Analysis. Technometrics 2005, 47, 64–79. [Google Scholar] [CrossRef] [Scilit]
  35. Chen, H.; Engkvist, O.; Wang, Y.; Olivecrona, M.; Blaschke, T. The rise of deep learning in drug discovery. Drug Discov. Today 2018, 23, 1241–1250. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  36. Shen, C. A transdisciplinary review of deep learning research and its relevance for water resources scientists. Water Resour. Res. 2018, 54, 8558–8593. [Google Scholar] [CrossRef] [Scilit]
  37. An, Z.; Wang, X.; Li, P.; He, J.; Liu, L. Exploring the metabolic characteristics and pharmacokinetic variation of paroxetine in healthy volunteers using a pharmacometabonomic approach. J. Pharm. Biomed. Anal. 2021, 204, 114224. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  38. Silveira, A.M.R.; Duarte, G.H.B.; Fernandes, A.; Garcia, P.H.D.; Vieira, N.R.; Antonio, M.A.; Carvalho, P.O. Serum Predose Metabolic Profiling for Prediction of Rosuvastatin Pharmacokinetic Parameters in Healthy Volunteers. Front. Pharmacol. 2021, 12, 752960. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  39. Zhu, H.; Wang, M.; Xiong, X.; Du, Y.; Li, D.; Wang, Z.; Ge, W.; Zhu, Y. Plasma metabolomic profiling reveals factors associated with dose-adjusted trough concentration of tacrolimus in liver transplant recipients. Front. Pharmacol. 2022, 13, 1045843. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  40. Yu, H.; Xiao, J.; Zhu, H.J. Predicting Vancomycin Clearance in Neonates and Infants by Integrating Machine Learning and Metabolomics With Population Pharmacokinetics. Clin. Transl. Sci. 2025, 18, e70293. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  41. Burghelea, D.; Moisoiu, T.; Ivan, C.; Elec, A.; Munteanu, A.; Tabrea, R.; Antal, O.; Kacso, T.P.; Socaciu, C.; Elec, F.I.; et al. Identification of urinary metabolites correlated with tacrolimus levels through high-precision liquid chromatography-mass spectrometry and machine learning algorithms in kidney transplant patients. Med. Pharm. Rep. 2025, 98, 125–134. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  42. Phua, L.C.; Goh, S.; Tai, D.W.M.; Leow, W.Q.; Alkaff, S.M.F.; Chan, C.Y.; Kam, J.H.; Lim, T.K.H.; Chan, E.C.Y. Metabolomic prediction of treatment outcome in pancreatic ductal adenocarcinoma patients receiving gemcitabine. Cancer Chemother. Pharmacol. 2018, 81, 277–289. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  43. Jia, H.; Shen, X.; Guan, Y.; Xu, M.; Tu, J.; Mo, M.; Xie, L.; Yuan, J.; Zhang, Z.; Cai, S.; et al. Predicting the pathological response to neoadjuvant chemoradiation using untargeted metabolomics in locally advanced rectal cancer. Radiother. Oncol. 2018, 128, 548–556. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  44. Noh, K.; Yoo, S.; Lee, D. A systematic approach to identify therapeutic effects of natural products based on human metabolite information. BMC Bioinform. 2018, 19, 205. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  45. McComb, M.; Ramanathan, M. Generalized Pharmacometric Modeling, a Novel Paradigm for Integrating Machine Learning Algorithms: A Case Study of Metabolomic Biomarkers. Clin. Pharmacol. Ther. 2020, 107, 1343–1351. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  46. Lin, X.; Xu, R.; Mao, S.; Zhang, Y.; Dai, Y.; Guo, Q.; Song, X.; Zhang, Q.; Li, L.; Chen, Q. Metabolic biomarker signature for predicting the effect of neoadjuvant chemotherapy of breast cancer. Ann. Transl. Med. 2019, 7, 670. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  47. Waddington, K.E.; Papadaki, A.; Coelewij, L.; Adriani, M.; Nytrova, P.; Kubala Havrdova, E.; Fogdell-Hahn, A.; Farrell, R.; Dönnes, P.; Pineda-Torra, I.; et al. Using Serum Metabolomics to Predict Development of Anti-drug Antibodies in Multiple Sclerosis Patients Treated with IFNβ. Front. Immunol. 2020, 11, 1527. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  48. Xiao, Y.; Ma, D.; Yang, Y.S.; Yang, F.; Ding, J.H.; Gong, Y.; Jiang, L.; Ge, L.P.; Wu, S.Y.; Yu, Q.; et al. Comprehensive metabolomics expands precision medicine for triple-negative breast cancer. Cell Res. 2022, 32, 477–490. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  49. Díaz, C.; González-Olmedo, C.; Díaz-Beltrán, L.; Camacho, J.; Mena García, P.; Martín-Blázquez, A.; Fernández-Navarro, M.; Ortega-Granados, A.L.; Gálvez-Montosa, F.; Marchal, J.A.; et al. Predicting dynamic response to neoadjuvant chemotherapy in breast cancer: A novel metabolomics approach. Mol. Oncol. 2022, 16, 2658–2671. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  50. Irajizad, E.; Wu, R.; Vykoukal, J.; Murage, E.; Spencer, R.; Dennison, J.B.; Moulder, S.; Ravenberg, E.; Lim, B.; Litton, J.; et al. Application of Artificial Intelligence to Plasma Metabolomics Profiles to Predict Response to Neoadjuvant Chemotherapy in Triple-Negative Breast Cancer. Front. Artif. Intell. 2022, 5, 876100. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  51. Kobayashi, H.; Amrein, K.; Mahmoud, S.H.; Lasky-Su, J.A.; Christopher, K.B. Metabolic phenotypes and vitamin D response in the critically ill: A metabolomic cohort study. Clin. Nutr. 2024, 43, 10–19. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  52. Sun, H.; Sun, K.; Tian, H.; Chen, X.; Su, S.; Tu, Y.; Chen, S.; Wang, J.; Peng, M.; Zeng, M.; et al. Integrated metagenomic and metabolomic analysis reveals distinctive stage-specific gut-microbiome-derived metabolites in intracranial aneurysms. Gut 2024, 73, 1662–1674. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  53. Tangaro, S.; Lopalco, G.; Sabella, D.; Venerito, V.; Novielli, P.; Romano, D.; Di Gilio, A.; Palmisani, J.; de Gennaro, G.; Filannino, P.; et al. Unraveling the microbiome-metabolome nexus: A comprehensive study protocol for personalized management of Behçet’s disease using explainable artificial intelligence. Front. Microbiol. 2024, 15, 1341152. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  54. Li, Y.; Sun, T.; Chen, J.; Liu, X.; Fu, R.; Xue, F.; Liu, W.; Ju, M.; Dai, X.; Li, H.; et al. Metabolomics profile and machine learning prediction of treatment responses in immune thrombocytopenia: A prospective cohort study. Br. J. Haematol. 2024, 204, 2405–2417. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  55. Jiang, Y.; Qu, Y.; Shi, L.; Ou, M.; Du, Z.; Zhou, Z.; Zhou, H.; Zhu, H. The role of gut microbiota and metabolomic pathways in modulating the efficacy of SSRIs for major depressive disorder. Transl. Psychiatry 2024, 14, 493. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  56. Zheng, L.; Nie, W.; Wang, S.; Yang, L.; Hu, F.; Ma, M.; Cheng, L.; Lu, J.; Zhang, B.; Xu, J.; et al. Metabolomic machine learning-based model predicts efficacy of chemoimmunotherapy for advanced lung squamous cell carcinoma. Front. Immunol. 2025, 16, 1545976. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  57. Zhang, J.; Hu, D.; Fang, P.; Qi, M.; Sun, G. Deciphering key roles of B cells in prognostication and tailored therapeutic strategies for lung adenocarcinoma: A multi-omics and machine learning approach towards predictive, preventive, and personalized treatment strategies. EPMA J. 2025, 16, 127–163. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  58. Buck, A.; Prade, V.M.; Kunzke, T.; Feuchtinger, A.; Kröll, D.; Feith, M.; Dislich, B.; Balluff, B.; Langer, R.; Walch, A. Metabolic tumor constitution is superior to tumor regression grading for evaluating response to neoadjuvant therapy of esophageal adenocarcinoma patients. J. Pathol. 2022, 256, 202–213. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  59. Zhang, Y.; Ye, L.; Qin, Y.; Qiu, C.; Sun, Q.; Fan, T.; Chen, Y.; Jiang, Y. Serum metabolomics to identify molecular subtypes and predict XELOX efficacy in colorectal cancer. Sci. Rep. 2025, 15, 13671. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  60. Zhang, D.; Li, X.; Wang, Z.; Fan, J.; Yang, Y.; Han, S.; Sun, W.; Wang, D.; Zhou, S.; Liu, Z.; et al. Machine learning-driven prediction of immune checkpoint inhibitor responses against cholangiocarcinoma: A bile biopsy perspective. Front. Immunol. 2025, 16, 1614683. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  61. Luo, M.; Zhang, S.; Xue, J.; Gao, T.; Li, X.; Zhai, Z.; Lu, C.; Dong, Y.; Zhuo, K.; Xiang, Q.; et al. Identifying serum lipidomic signatures related to prognosis in first-episode schizophrenia. BMC Psychiatry 2025, 25, 467. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  62. Baron, C.; Mehanna, P.; Daneault, C.; Hausermann, L.; Busseuil, D.; Tardif, J.C.; Dupuis, J.; Des Rosiers, C.; Ruiz, M.; Hussin, J.G. Insights into heart failure metabolite markers through explainable machine learning. Comput. Struct. Biotechnol. J. 2025, 27, 1012–1022. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  63. Yu, J.; Xu, H.; Xiong, F.; Liu, X.; Lingfei, M.; Gao, H.; Li, Y. Lipidomics reveals biomarkers of the efficacy of first-line ICI therapy combined with chemotherapy in NSCLC. J. Transl. Med. 2025, 23, 638. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  64. Liu, L.; Liang, L.; Liang, H.; Wang, M.; Zhou, W.; Mai, G.; Yang, C.; Chen, Y. Microbiome-metabolome generated bile acids gatekeep infliximab efficacy in Crohn’s disease by licensing M1 suppression and Treg dominance. J. Adv. Res. 2026, 83, 789–806. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  65. Acharjee, A.; Ament, Z.; West, J.A.; Stanley, E.; Griffin, J.L. Integration of metabolomics, lipidomics and clinical data using a machine learning method. BMC Bioinform. 2016, 17, 440. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  66. García-Cañaveras, J.C.; Castell, J.V.; Donato, M.T.; Lahoz, A. A metabolomics cell-based approach for anticipating and investigating drug-induced liver injury. Sci. Rep. 2016, 6, 27239. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  67. Li, A.; Guo, X.; Xie, J.; Liu, X.; Zhang, Z.; Li, Y.; Zhang, Y. Validation of biomarkers in cardiotoxicity induced by Periplocin on neonatal rat cardiomyocytes using UPLC-Q-TOF/MS combined with a support vector machine. J. Pharm. Biomed. Anal. 2016, 123, 179–185. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  68. Zhang, P.; Chen, J.Q.; Huang, W.Q.; Li, W.; Huang, Y.; Zhang, Z.J.; Xu, F.G. Renal Medulla is More Sensitive to Cisplatin than Cortex Revealed by Untargeted Mass Spectrometry-Based Metabolomics in Rats. Sci. Rep. 2017, 7, 44804. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  69. Mina, S.G.; Alaybeyoglu, B.; Murphy, W.L.; Thomson, J.A.; Stokes, C.L.; Cirit, M. Assessment of Drug-Induced Toxicity Biomarkers in the Brain Microphysiological System (MPS) Using Targeted and Untargeted Molecular Profiling. Front. Big Data 2019, 2, 23. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  70. Ben Guebila, M.; Thiele, I. Predicting gastrointestinal drug effects using contextualized metabolic models. PLoS Comput. Biol. 2019, 15, e1007100. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  71. Cuykx, M.; Beirnaert, C.; Rodrigues, R.M.; Laukens, K.; Vanhaecke, T.; Covaci, A. Untargeted liquid chromatography-mass spectrometry metabolomics to assess drug-induced cholestatic features in HepaRG® cells. Toxicol. Appl. Pharmacol. 2019, 379, 114666. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  72. Smith, M.R.; Chacko, B.K.; Johnson, M.S.; Benavides, G.A.; Uppal, K.; Go, Y.M.; Jones, D.P.; Darley-Usmar, V.M. A precision medicine approach to defining the impact of doxorubicin on the bioenergetic-metabolite interactome in human platelets. Redox Biol. 2020, 28, 101311. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  73. Wang, M.G.; Wu, S.Q.; Zhang, M.M.; He, J.Q. Urine metabolomics and microbiome analyses reveal the mechanism of anti-tuberculosis drug-induced liver injury, as assessed for causality using the updated RUCAM: A prospective study. Front. Immunol. 2022, 13, 1002126. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  74. Zhao, S.; Fu, H.; Zhou, T.; Cai, M.; Huang, Y.; Gan, Q.; Zhang, C.; Qian, C.; Wang, J.; Zhang, Z.; et al. Alteration of Bile Acids and Omega-6 PUFAs Are Correlated With the Progression and Prognosis of Drug-Induced Liver Injury. Front. Immunol. 2022, 13, 772368. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  75. Song, Y.; Yang, J.; Hu, X.; Gao, H.; Wang, P.; Wang, X.; Liu, Y.; Cheng, X.; Wei, F.; Ma, S. A stepwise strategy integrating metabolomics and pseudotargeted spectrum-effect relationship to elucidate the potential hepatotoxic components in Polygonum multiflorum. Front. Pharmacol. 2022, 13, 935336. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  76. Tay, S.H.; Santosa, A.; Goh, E.C.H.; Xu, C.X.; Wu, L.H.; Bigliardi-Qi, M.; Pakkiri, L.S.S.; Lee, B.T.K.; Drum, C.L.; Bigliardi, P.L. Distinct transcriptomic and metabolomic profiles characterize NSAID-induced urticaria/angioedema patients undergoing aspirin desensitization. J. Allergy Clin. Immunol. 2022, 150, 1486–1497. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  77. Hu, Y.; Wang, C.; Fei, Z.; Zhou, M.; Yu, H.; Sun, Z. Potential biomarkers screening of Polygonum multiflorum radix-induced liver injury based on metabonomics analysis of clinical samples. J. Ethnopharmacol. 2023, 308, 116217. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  78. Hu, M.; Lin, X.; Sun, T.; Shao, X.; Huang, X.; Du, W.; Guo, M.; Zhu, X.; Zhou, Y.; Tong, T.; et al. Gut microbiome for predicting immune checkpoint blockade-associated adverse events. Genome Med. 2024, 16, 16. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  79. Artacho, A.; González-Torres, C.; Gómez-Cebrián, N.; Moles-Poveda, P.; Pons, J.; Jiménez, N.; Casanova, M.J.; Montoro, J.; Balaguer, A.; Villalba, M.; et al. Multimodal analysis identifies microbiome changes linked to stem cell transplantation-associated diseases. Microbiome 2024, 12, 229. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  80. Lötsch, J.; Gasimli, K.; Malkusch, S.; Hahnefeld, L.; Angioni, C.; Schreiber, Y.; Trautmann, S.; Wedel, S.; Thomas, D.; Ferreiros Bouzas, N.; et al. Machine learning and biological validation identify sphingolipids as potential mediators of paclitaxel-induced neuropathy in cancer patients. eLife 2024, 13, RP91941. [Google Scholar] [CrossRef] [PubMed]
  81. Li, Z.C.; Wang, J.; Liu, H.B.; Zheng, Y.M.; Huang, J.H.; Cai, J.B.; Zhang, L.; Liu, X.; Du, L.; Yang, X.T.; et al. Proteomic and metabolomic features in patients with HCC responding to lenvatinib and anti-PD1 therapy. Cell Rep. 2024, 43, 113877. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  82. Moreno-Torres, M.; Quintás, G.; Martínez-Sena, T.; Jover, R.; Castell, J.V. Exploring Individual Variability in Drug-Induced Liver Injury (DILI) Responses through Metabolomic Analysis. Int. J. Mol. Sci. 2024, 25, 3003. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  83. Yu, S.M.; Zheng, H.C.; Wang, S.C.; Rong, W.Y.; Li, P.; Jing, J.; He, T.T.; Li, J.H.; Ding, X.; Wang, R.L. Salivary metabolites are promising noninvasive biomarkers of drug-induced liver injury. World J. Gastroenterol. 2024, 30, 2454–2466. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  84. Chen, C.S.; Zirpoli, G.; Budd, G.T.; Barlow, W.E.; Pusztai, L.; Hortobagyi, G.N.; Albain, K.S.; Godwin, A.K.; Thompson, A.; Henry, N.L.; et al. Pre-treatment amino acids and risk of paclitaxel-induced peripheral neuropathy in SWOG S0221. Cancer Chemother. Pharmacol. 2024, 94, 311–321. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  85. Zhang, Y.; Wang, H.; Mao, R.; Chen, B.; Jiang, M. A novel data fusion strategy of LC-MS and NMR technologies using random forest model for emodin hepatotoxic metabolomics research. J. Pharm. Biomed. Anal. 2025, 264, 116990. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  86. Su, X.; Tian, Z.; Fang, Y.; Zhou, S.; Ma, S. Effects of high-dose glucocorticoids on gut microbiota in the treatment of Graves’ ophthalmopathy. Microbiol. Spectr. 2025, 13, e0246724. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  87. Liu, Y.; Wu, Z.; Gu, C.; Fang, J.; Peng, Y.; Peng, L.; Chen, W.; Yao, L.; He, L. ShenJiaoLingCao decoction ameliorates cyclophosphamide-induced splenic injury and immunosuppression via the inhibition of MEK/ERK signaling pathway activity and modulation of amino acid metabolism. J. Ethnopharmacol. 2025, 348, 119830. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  88. Tian, W.; Tang, H.; Liu, X.; Lv, J.; Xu, Y.; Hua, Y.; Xie, F.; Ding, Y. Integrated metabolomics and machine learning identify predictive biomarkers via SHAP analysis for sintilimab-induced rash in lung cancer patients. Front. Pharmacol. 2026, 17, 1846667. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  89. Holmes, N.E. Using AUC/MIC to guide vancomycin dosing: Ready for prime time? Clin. Microbiol. Infect. 2020, 26, 406–408. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  90. Edwards, I.R.; Aronson, J.K. Adverse drug reactions: Definitions, diagnosis, and management. Lancet 2000, 356, 1255–1259. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  91. Zhang, Y.; Zhang, X.; Razbek, J.; Li, D.; Xia, W.; Bao, L.; Mao, H.; Daken, M.; Cao, M. Opening the black box: Interpretable machine learning for predictor finding of metabolic syndrome. BMC Endocr. Disord. 2022, 22, 214. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  92. Chowdhury, S.; Zielinski, D.C.; Dalldorf, C.; Rodrigues, J.V.; Palsson, B.O.; Shakhnovich, E.I. Empowering drug off-target discovery with metabolic and structural analysis. Nat. Commun. 2023, 14, 3390. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  93. Toubiana, D.; Puzis, R.; Wen, L.; Sikron, N.; Kurmanbayeva, A.; Soltabayeva, A.; Del Mar Rubio Wilhelmi, M.; Sade, N.; Fait, A.; Sagi, M.; et al. Combined network analysis and machine learning allows the prediction of metabolic pathways from tomato metabolomics data. Commun. Biol. 2019, 2, 214. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  94. Collins, G.S.; Moons, K.G.M.; Dhiman, P.; Riley, R.D.; Beam, A.L.; Van Calster, B.; Ghassemi, M.; Liu, X.; Reitsma, J.B.; van Smeden, M.; et al. TRIPOD+AI statement: Updated guidance for reporting clinical prediction models that use regression or machine learning methods. BMJ 2024, 385, e078378. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  95. Moons, K.G.M.; Damen, J.A.A.; Kaul, T.; Hooft, L.; Andaur Navarro, C.; Dhiman, P.; Beam, A.L.; Van Calster, B.; Celi, L.A.; Denaxas, S.; et al. PROBAST+AI: An updated quality, risk of bias, and applicability assessment tool for prediction models using regression or artificial intelligence methods. BMJ 2025, 388, e082505. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  96. Bahadori, S.; Buckle, P.; Soukup Ascensao, T.; Ghafur, S.; Kierkegaard, P. Evolving Digital Health Technologies: Aligning with and Enhancing the National Institute for Health and Care Excellence Evidence Standards Framework. JMIR mHealth uHealth 2025, 13, e67435. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  97. Raven, W.; de Hond, A.; Vermeire, J.; Schinkelshoek, L.; Mulder, L.; van Someren, A.; Gaakeer, M.; de Jonge, E.; de Groot, B. From prediction to practice: Early implementation of a machine learning-based hospitalization prediction tool in the emergency department. Int. J. Med. Inform. 2026, 215, 106446. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  98. Bao, H.; Zhang, X.; Wang, X.; Zhao, J.; Zhao, X.; Zhao, C.; Lu, X.; Xu, G. MS2MP: A Deep Learning Framework for Metabolic Pathway Prediction from MS/MS-Based Untargeted Metabolomics. Anal. Chem. 2025, 97, 14200–14209. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  99. Lin, W.; Ji, J.; Su, K.J.; Qiu, C.; Tian, Q.; Zhao, L.J.; Luo, Z.; Wu, C.; Shen, H.; Deng, H. omicsMIC: A comprehensive benchmarking platform for robust comparison of imputation methods in mass spectrometry-based omics data. NAR. Genom. Bioinform. 2024, 6, lqae071. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  100. Zhang, M.; Du, J.; Nie, B.; Luo, J.; Liu, M.; Yuan, Y. Hybrid mRMR and multi-objective particle swarm feature selection methods and application to metabolomics of traditional Chinese medicine. PeerJ Comput. Sci. 2024, 10, e2073. [Google Scholar] [CrossRef] [Scilit] [PubMed]
Figure 1. Schematic illustration of supervised machine learning algorithms used in metabolomics analysis. These models are trained on labeled metabolomic datasets to classify samples or predict clinical outcomes. Ensemble methods such as Random Forest (A) and XGBoost (B) enhance prediction accuracy through multiple weak learners; SVM (C) constructs optimal separating hyperplanes in high-dimensional space; Logistic Regression (D) estimates outcome probabilities; KNN (E) classifies samples based on feature proximity, it estimates outcome probabilities based on feature proximity, with red and blue regions indicating class-specific prediction areas and the boundary representing the decision threshold and LASSO (F) performs variable selection by penalizing regression coefficients, thereby improving model interpretability and reducing overfitting.
Figure 1. Schematic illustration of supervised machine learning algorithms used in metabolomics analysis. These models are trained on labeled metabolomic datasets to classify samples or predict clinical outcomes. Ensemble methods such as Random Forest (A) and XGBoost (B) enhance prediction accuracy through multiple weak learners; SVM (C) constructs optimal separating hyperplanes in high-dimensional space; Logistic Regression (D) estimates outcome probabilities; KNN (E) classifies samples based on feature proximity, it estimates outcome probabilities based on feature proximity, with red and blue regions indicating class-specific prediction areas and the boundary representing the decision threshold and LASSO (F) performs variable selection by penalizing regression coefficients, thereby improving model interpretability and reducing overfitting.
Metabolites 16 00600 g001
Figure 2. Schematic illustration of unsupervised machine learning algorithms used in metabolomic analysis. (A) KMC partitions samples into k distinct groups based on similarity in their metabolite profiles, enabling the identification of intrinsic metabolic subgroups without prior class labels. (B) PCA reduces the dimensionality of complex metabolomic datasets by projecting correlated variables onto a smaller number of orthogonal principal components, thereby revealing the major sources of variance in the data. For (A), differently colored dots denote samples assigned to distinct K-means clusters. For (B), colored dots represent data samples at different processing stages; solid and dashed orange lines indicate the first and second orthogonal principal components, respectively; the color gradient in the heatmap corresponds to the magnitude of covariance values.
Figure 2. Schematic illustration of unsupervised machine learning algorithms used in metabolomic analysis. (A) KMC partitions samples into k distinct groups based on similarity in their metabolite profiles, enabling the identification of intrinsic metabolic subgroups without prior class labels. (B) PCA reduces the dimensionality of complex metabolomic datasets by projecting correlated variables onto a smaller number of orthogonal principal components, thereby revealing the major sources of variance in the data. For (A), differently colored dots denote samples assigned to distinct K-means clusters. For (B), colored dots represent data samples at different processing stages; solid and dashed orange lines indicate the first and second orthogonal principal components, respectively; the color gradient in the heatmap corresponds to the magnitude of covariance values.
Metabolites 16 00600 g002
Figure 3. Schematic illustration of deep learning algorithms used in metabolomics analysis. Deep learning, a subset of machine learning based on multi-layer neural networks, learns hierarchical feature representations through iterative optimization. According to the availability of labeled data, DL methods are generally categorized into supervised, unsupervised, and semi-supervised learning, including artificial neural networks (ANN), convolutional neural networks (CNN), recurrent neural networks (RNN), and graph convolutional networks (GCN).
Figure 3. Schematic illustration of deep learning algorithms used in metabolomics analysis. Deep learning, a subset of machine learning based on multi-layer neural networks, learns hierarchical feature representations through iterative optimization. According to the availability of labeled data, DL methods are generally categorized into supervised, unsupervised, and semi-supervised learning, including artificial neural networks (ANN), convolutional neural networks (CNN), recurrent neural networks (RNN), and graph convolutional networks (GCN).
Metabolites 16 00600 g003
Figure 4. The recent applications of machine learning and metabolomics in precision pharmacotherapy. This figure summarizes studies from recent years that integrate metabolomic profiling with machine learning algorithms to support individualized medication strategies. The summarized research is systematically classified into three principal domains: (1) dose optimization, which leverages metabolic biomarkers and predictive models to tailor drug dosing. (2) Therapeutic efficacy prediction, involving metabolomics-based machine learning models that identify responders and enable personalized therapeutic decisions. (3) Adverse reaction prediction, which applies metabolomics-derived biomarkers and algorithmic risk assessment to forecast drug-induced toxicity. Together, these advances highlight the emerging role of metabolomics-driven machine learning frameworks in supporting precision medicine [37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88].
Figure 4. The recent applications of machine learning and metabolomics in precision pharmacotherapy. This figure summarizes studies from recent years that integrate metabolomic profiling with machine learning algorithms to support individualized medication strategies. The summarized research is systematically classified into three principal domains: (1) dose optimization, which leverages metabolic biomarkers and predictive models to tailor drug dosing. (2) Therapeutic efficacy prediction, involving metabolomics-based machine learning models that identify responders and enable personalized therapeutic decisions. (3) Adverse reaction prediction, which applies metabolomics-derived biomarkers and algorithmic risk assessment to forecast drug-induced toxicity. Together, these advances highlight the emerging role of metabolomics-driven machine learning frameworks in supporting precision medicine [37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88].
Metabolites 16 00600 g004
Figure 5. Key barriers and potential strategies for the clinical translation of ML-integrated metabolomics. The major challenges include limited explainability, insufficient prospective clinical validation, lack of standardization and reproducibility, and data dimensionality and quality issues.
Figure 5. Key barriers and potential strategies for the clinical translation of ML-integrated metabolomics. The major challenges include limited explainability, insufficient prospective clinical validation, lack of standardization and reproducibility, and data dimensionality and quality issues.
Metabolites 16 00600 g005
Table 1. The overview of the recent applications of machine learning and metabolomics in precision pharmacotherapy.
Table 1. The overview of the recent applications of machine learning and metabolomics in precision pharmacotherapy.
Application AreaAuthor(s)Year of PublicationMedicineModel Name/TypeKey Point
Pharmacokinetics and Dose OptimizationAn Z et al. [37] 2021ParoxetineTwo-stage Partial Least Squares; predicts individual drug response (high vs. low responders). AUC: R2Y = 0.799, Q2 = 0.678; Cmax: R2Y = 0.710, Q2 = 0.551Paroxetine is used in the therapy of depression, anxiety disorders, and obsessive–compulsive disorder.
Silveira AMR et al. [38] 2021RosuvastatinElastic Net (EN) (ESI + mode): Training set R2 = 1.00, cross-validation R2 = 0.93, RMSE = 19.03 ng·h/mL, MAPE = 10.12%Rosuvastatin is used to treat hypercholesterolemia and prevent coronary artery disease.
Zhu H et al. [39] 2022TacrolimusLASSO: MAE = 0.611, RMSE = 0.788,
R = 0.78
Tacrolimus is used for immunosuppressive therapy in liver transplant recipients.
Yu H et al. [40] 2025VancomycinKNN, SVR, Decision Tree (DT), Gradient Boosting Regressor (GBR), RFR, AdaBoost, XGBoost, Logistic Regression, LASSO. GBR combined with 10 clinical covariates: MSE = 0.0033, R2 = 0.830Vancomycin is used to treat suspected or confirmed Gram-positive bacterial infections.
Burghelea D et al. [41] 2025TacrolimusLogistic Regression: AUC = 0.810, CA = 0.690Tacrolimus is used for immunosuppressive therapy in kidney transplant patients.
Drug EfficacyPhua LC et al. [42] 2017GemcitabinePLS-DA: AUC = 1.0Gemcitabine is used for the adjuvant chemotherapy of pancreatic ductal adenocarcinoma, and the partial least squares discriminant analysis (PLS-DA) model can accurately distinguish patients with different treatment responses.
Jia H et al. [43] 2018Capecitabine (combined with radiotherapy)PLS: AUC = 0.87, RF: AUC = 0.83, SVM: AUC = 0.85Metabolic biomarkers screened through machine learning models can effectively distinguish between patients with locally advanced rectal cancer who are sensitive to capecitabine-based neoadjuvant chemoradiotherapy and those who are resistant to it.
Noh K et al. [44] 2018Natural MedicinesSVM: AUROC = 0.893The study proposes a systematic approach to predicting the therapeutic effects of natural products based on their similarity to human metabolites.
McComb M et al. [45] 2019Cholesterol TracerRF: PR = 0.853, M1 = 0.821, M3 = 0.780, Mtot = 0.845; Bayesian NetworkBy outputting the core parameters of cholesterol metabolism through the model, it can simulate the impact of drugs on cholesterol metabolism, thereby providing a quantitative basis for dosage optimization and efficacy prediction of drugs in diverse populations.
Lin X et al. [46] 2019Epirubicin, Cyclophosphamide, Docetaxel, TrastuzumabPLS-DA, EN, Logistic Regression: AUC = 0.957, Specificity = 100%, Sensitivity = 81.2%A therapeutic effect prediction model for breast cancer treated with an anthracycline-docetaxel-based neoadjuvant chemotherapy regimen was constructed based on 9 serum metabolites.
Waddington KE et al. [47] 2020IFNβKNN, SVM, DT: F1 = 0.778, Specificity = 0.942, Classification accuracy = 0.854; LASSO, Logistic Regression, Lasso with InteractionsPatients with multiple sclerosis may develop IFNβ ADA, which impairs drug efficacy. Machine learning models have been established based on serum metabolomics data to predict the development of ADA, aiming to identify patients at risk of treatment failure prior to therapy.
Xiao Y et al. [48] 2022Drugs for the LAR subtype, Drugs for the BLIS subtypeLASSO: AUC = 0.9549; SVMThe study focuses on the precision medicine of TNBC, discovers potential therapeutic targets, and establishes machine learning models for subtype stratification.
Díaz C et al. [49] 2022Anthracyclines, Taxanes RF, SVM, ANOVA-Simultaneous Component Analysis (ASCA): Efficacy prediction (response vs. non-response): AUC = 0.946; Prognosis prediction: AUC = 0.777A model is established that can effectively analyze the association between metabolomics data and the treatment response of breast cancer treated with anthracycline-taxane-based neoadjuvant chemotherapy (NACT).
Irajizad E et al. [50] 2022Adriamycin-Cyclophosphamide, Paclitaxel, and Platinum-based therapyDL: Baseline prediction (distinguishing RCB-II/III vs. RCB-0/I), AUC = 0.97Effectively predict the treatment response of TNBC treated with NACT.
Kobayashi H et al. [51] 2024Vitamin D3Partitioning Around Medoids: Consistency of the original clustering results > 75%; LR, PCA: R2X (cum) = 0.718Only vitamin D-deficient patients with specific metabolic phenotypes derive significant benefits from high-dose vitamin D3 treatment, and a model is established to effectively distinguish metabolic phenotypes and predict treatment responses.
Sun H et al. [52] 2024Antibiotic cocktail, Indoxyl sulfateRF: Test set AUC = 0.974Reveals the association between gut microbiota-derived metabolites (such as indoxyl sulfate, IS) and the progression/rupture of IA.
Tangaro S et al. [53] 2024InulinRF, XGBoost, SHAP, CN, PCA, Boruta, Generative Adversarial Networks (GANs)Investigate the relationships between the microbiome, volatilome (volatile subset of metabolome), and clinical characteristics in patients with Behçet’s Disease, and elucidate the pathogenesis and improve clinical outcomes through data-driven, explainable artificial intelligence models.
Li Y et al. [54] 2024Dexamethasone, rhTPO, EltrombopagBoruta, RF, OPLS-DA: VIP > 1, p < 0.05Five treatment regimens, including dexamethasone, recombinant human thrombopoietin (rhTPO), and eltrombopag, are used to treat ITP. Metabolic biomarkers are screened through models, which can effectively distinguish between patients with treatment response and non-response.
Jiang Y et al. [55] 2024Citalopram, Paroxetine, FluoxetineLogistic Regression: Training set AUC = 0.993; RF, SVMSelective serotonin reuptake inhibitors are used to treat major depressive disorder, and three machine learning models are employed to predict treatment response based on gut microbiota and metabolite characteristics.
Zheng L et al. [56] 2025PD-1 inhibitor combined with chemotherapeutic agentsLASSO, RF: Training set AUC = 0.973, validation set AUC = 0.944; SVM, Logistic RegressionChemoimmunotherapy combining PD-1 inhibitors with chemotherapy is used to treat advanced lung squamous cell carcinoma, and a model is constructed to effectively distinguish between responders and non-responders, as well as high-risk and low-risk populations.
Zhang J et al. [57] 2025CisplatinCoxBoost, Stepwise Cox Regression, EN, Gradient Boosting, LASSO, Partial Least Squares, Cox, Random Survival Forest, Ridge, Supervised Principal Components, survival-SVMsA B cell-associated Scissor+ related B cell score model has been developed for lung adenocarcinoma, which can effectively stratify patient risk and predict treatment response.
Buck A et al. [58] 2022neoadjuvant therapyRF: HR = 3.38, p = 0.007The study focuses on esophageal adenocarcinoma, and the neoadjuvant treatment regimens used include platinum/5-fluorouracil (5-FU) chemotherapy and 45Gy radiotherapy combined with platinum/5-FU chemoradiotherapy.
Zhang Y et al. [59] 2025Oxaliplatin, CapecitabineCox: Training set, 1-year RFS prediction AUC = 0.959; LASSOThe XELOX regimen (oxaliplatin combined with capecitabine) is used to treat colorectal cancer, and a predictive model is constructed to effectively predict the chemosensitivity of XELOX.
Zhang D et al. [60] 2025PD-1 inhibitorsLASSO: Training set R2 = 0.83Integrating biliary metabolomic data and the Immune Hot-Cold Index through the LASSO regression model enables effective prediction of treatment response to PD-1 inhibitors in cholangiocarcinoma patients.
Luo M et al. [61] 2025Olanzapine, Risperidone, etc.LASSO, RF, Logistic Regression: AUC = 0.805Five antipsychotic drugs, including olanzapine and risperidone, are used to treat first-episode schizophrenia. By constructing a model, 3 core lipid biomarkers are screened out, which can effectively distinguish between patients with treatment response and non-response.
Baron C et al. [62] 2025Heart failure classificationSVM, XGBoost, Ridge Logistic Regression, LIMEThis study analyzed 55 plasma metabolites and used SVM and XGBoost to identify lignoceric acid as a critical discriminator for distinguishing patients with HFrEF from the control group. The SVM achieved an accuracy of 85.73%, while XGBoost achieved 84.8%, and these results were validated in a replication cohort. LIME was used to assess local interpretability for individual predictions.
Yu J et al. [63] 2025Immune checkpoint inhibitorsMLR, OPLS-DA: ESI + mode, R2Y = 0.811, Q2 = 0.465ICIs combined with chemotherapy are used as the first-line regimen for treating oncogene-negative advanced non-small cell lung cancer. Through a multivariate logistic regression model, 3 core lipid biomarkers are screened out, which can effectively distinguish between patients with treatment response and non-response.
Liu L et al. [64] 2025infliximabLDA: Test set AUC = 0.805; RF, etc.Infliximab is used to treat Crohn’s disease, and the gut microbiota-based Linear Discriminant Analysis (LDA) model can effectively distinguish between patients with treatment response and non-response.
Adverse Drug Reaction
Prediction
Acharjee A et al. [65] 2016PPAR-pan agonistRF: Variance explanation rate, Q2 = 84%PPAR pan-agonists are used in the treatment of metabolic syndrome and related diseases (such as insulin resistance, dyslipidemia, etc.).
García-Cañaveras JC et al. [66] 2016Oxidative stress inducers, phospholipidosis inducers, and steatosis inducersPLS-DA: R2 = 0.832, Q2 = 0.686By using a variety of known hepatotoxic compounds (to simulate different mechanisms of liver injury), a partial least squares discriminant analysis [PLS-DA(R2 = 0.832, Q2 = 0.686)] model was established to predict drug-induced liver injury and classify its injury mechanisms.
Li A et al. [67] 2016Periplocin SVM: cross-validation accuracy = 87.5%; independent test set predictive accuracy = 100%Periplocin is used for the treatment of rheumatoid arthritis and chronic congestive heart failure, but it is prone to causing cardiotoxicity.
Zhang P et al. [68] 2017CisplatinRF, OPLS-DA: In the renal medulla, the Q2 values of the low, medium, and high dose groups are 0.45, 0.872, and 0.949, respectivelyCisplatin is used to treat a variety of solid tumors but is prone to causing nephrotoxicity. A model has been established in the study to reveal the difference in sensitivity to cisplatin between the renal cortex and medulla.
Mina SG et al. [69] 2019BortezomibPLS-DA: Bortezomib group R2 = 0.97, Q2 = 0.79; LASSO: Goodness of fit for predicting cumulative DJ-1 levels R2 = 0.88Bortezomib is used to treat relapsed/refractory multiple myeloma and mantle cell lymphoma but has neurotoxicity.
Ben Guebila M et al. [70] 2019Many drugsSVM Combined feature model: Micro-average AUROC = 0.94The study did not focus on the correspondence between specific therapeutic drugs and diseases. Instead, it covered a variety of marketed small-molecule drugs and established a multi-label SVM to predict drug-induced gastrointestinal side effects.
Cuykx M et al. [71] 2019Bosentan PLS-DA, RF: 24 h exposure group Q2 > 0.6Bosentan is used for the treatment of pulmonary arterial hypertension but is prone to causing drug-induced cholestasis. A study established models to screen for metabolic biomarkers associated with cholestasis.
Waddington KE et al. [47] 2020Beta interferons KNN, RF, SVM, DT: F1 score = 0.778, specificity = 0.942, classification accuracy = 0.854; LLR + I, LASSO logistic regression: F1 = 0.808, specificity = 0.91IFNβ is used for the treatment of RRMS and CIS, but some patients may develop ADA. The study established predictive models based on baseline serum metabolomics to identify patients at high risk for ADA development prior to IFNβ treatment, helping avoid subsequent efficacy decline caused by ADA.
Smith MR et al. [72] 2020DoxorubicinxMWAS, PCA, Hierarchical Cluster Analysis (HCA): FDR < 0.2Doxorubicin (Adriamycin, Dox) is used for the treatment of various cancers such as leukemia, multiple myeloma, and breast cancer, but it is prone to causing side effects like cardiotoxicity and thrombocytopenia. A study established models to integrate platelet metabolomics and bioenergetics data, revealing the drug’s impact on the metabolic-energetic interaction network.
Wang MG et al. [73] 2022HRZE regimen (INH + RFP + PZA + EMB)RF: AUC = 0.98; ANN, SVM-linear, SVM-rbfFirst-line anti-tuberculosis drugs are used for the treatment of tuberculosis, and models have been established to predict the risk of drug-induced liver injury.
Zhao S et al. [74] 2022Herbal medicinesRF, Logistic Regression, AdA-Asp: Training set performance AUC = 0.889, sensitivity = 73.7%, specificity = 92.7%To evaluate the risk of chronicity of drug-induced liver injury (DILI) that may be caused by a variety of drugs (including herbal medicines, conventional drugs, etc.) when they are used to treat relevant diseases.
Song Y et al. [75] 2022Polygonum multiflorumGRA, OPLS: Model parameters of L02 cells R2X = 0.94, R2Y = 0.82, Q2 = 0.67; BP-ANN: L02 cell model training set R = 0.938The study aims to screen for potential hepatotoxic components in raw Polygonum multiflorum, which exerts the effects of detoxification, resolving carbuncles, and moistening the intestines to relieve constipation.
Tay SH et al. [76] 2022Nonsteroidal anti-inflammatory drugsGLMnet: L02 cell model training set R = 0.938The model distinguishes between the pre-desensitization and post-desensitization states of patients with nonsteroidal anti-inflammatory drug-induced urticaria/angioedema and the state of healthy controls.
Hu Y et al. [77] 2023Polygonum multiflorum RadixRF-ROC: Three key biomarkers: hypoxanthine (AUC = 0.974, Sen = 1.000, Spe = 0.846), LysoPC (P-16:0/0:0) (AUC = 1.000, Sen = 1.000, Spe = 1.000), and taurochenodesoxycholic acid (AUC = 0.974, Sen = 1.000, Spe = 0.846)The study screened for biomarkers of liver injury induced by Polygonum multiflorum (which exerts the effects of tonifying the liver and kidneys and lowering blood lipids) using algorithms and established a diagnostic model based on 3 core biomarkers.
Hu M et al. [78] 2024Immune checkpoint inhibitorsRF: distinguish between irAEs and non-irAEs. Average AUC = 0.88The study established a classification model to predict the risk of irAEs induced by immune checkpoint inhibitors used in the treatment of various cancers.
Artacho A et al. [79] 2024Ciprofloxacin, Meropenem, etc.Boruta algorithm, RF:34 functional gene features34 functional gene features AUC = 0.88; Partial Least Squares-Correspondence AnalysisThe study established a model to identify gut microbiota features associated with complications such as graft-versus-host disease and infections induced by allogeneic hematopoietic stem cell transplantation in the treatment of various hematological malignancies.
Lötsch J et al. [80] 2024PaclitaxelPCA, Emergent Self-Organizing Map (ESOM), SVM, RF, Logistic Regression: The median balanced accuracy of the
three algorithms reached up to 90%
The study found that sphinganine-1-phosphate may serve as a potential co-therapeutic target for alleviating chemotherapy-induced peripheral neuropathy caused by paclitaxel in the treatment of breast cancer and other types of cancers.
Li ZC et al. [81] 2024Lenvatinib and anti-PD1 monoclonal antibodyLogistic Regression: AUC = 1.000; RF: AUC = 0.944Predicting the treatment response of hepatocellular carcinoma patients treated with Lenvatinib combined with anti-PD1 antibodies based on plasma metabolomic features.
Moreno-Torres M et al. [82] 2024Epistane, oxaliplatin, etc.PLS-DA: The quantitative accuracy of residual abnormality detection reaches the “percentage-level”The study focuses on DILI associated with 31 different drugs and has established PLS-DA models that can accurately classify DILI subtypes and quantify the contributions of these subtypes.
Yu SM et al. [83] 2024 LASSO: The quantitative accuracy of residual abnormality detection reaches the “percentage-level”; RF: AUC = 0.969A variety of machine learning models have been established for DILI diagnosis and marker screening.
Chen CS et al. [84] 2024PaclitaxelLR, LinR, ORA, DSPCN; ML: poor predictive performanceProfiled 20 pretreatment serum amino acids in breast cancer patients; weak univariate associations with CIPN vanished after multivariate adjustment; no stable predictive metabolic biomarkers obtained
Zhang Y et al. [85] 2025EmodinDouble random forest (RF-RF): Training accuracy = 1.00, Test accuracy = 0.97, Precision = 0.99; PCA, PLS-DA, etc.The research focuses on liver metabolic disorders induced by emodin (exploring its hepatotoxic mechanism).
Su X et al. [86] 2025methylprednisoloneRF: Classification accuracy, model constructed with 3 bacterial genera, AUC = 0.91This study investigates the effects of high-dose glucocorticoid therapy on the gut microbiota and metabolome of patients with Graves’ ophthalmopathy, providing new insights into the microbiota-mediated glucocorticoid toxicity mechanisms.
Liu Y et al. [87] 2025CyclophosphamidePCA: VIP > 1, p < 0.05; OPLS-DA: VIP > 1, p < 0.05Shenjiao Lingcao Decoction (a Chinese herbal compound) is used to improve cyclophosphamide-induced immunosuppression and spleen damage.
Tian W et al. [88] 2026SintilimabRF; XAI(SHAP) for feature interpretation, optimal AUC ≥ 0.80Combining plasma metabolomics with machine learning predicts sintilimab-triggered rash in lung cancer patients, where SHAP (XAI tool) quantifies metabolite contribution to screen predictive biomarkers.
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Li, P.; Mao, J.; Hu, X.; Hu, Y.; Zhang, X.; Zheng, Q.; Hou, X.; Liu, Y.; Huang, M. Machine Learning–Integrated Metabolomics for Precision Pharmacotherapy: Advances, Challenges, and Clinical Translation. Metabolites 2026, 16, 600. https://doi.org/10.3390/metabo16080600

AMA Style

Li P, Mao J, Hu X, Hu Y, Zhang X, Zheng Q, Hou X, Liu Y, Huang M. Machine Learning–Integrated Metabolomics for Precision Pharmacotherapy: Advances, Challenges, and Clinical Translation. Metabolites. 2026; 16(8):600. https://doi.org/10.3390/metabo16080600

Chicago/Turabian Style

Li, Pan, Jing Mao, Xianglin Hu, Yujiao Hu, Xiaoke Zhang, Qian Zheng, Xiaoying Hou, Yuchen Liu, and Min Huang. 2026. "Machine Learning–Integrated Metabolomics for Precision Pharmacotherapy: Advances, Challenges, and Clinical Translation" Metabolites 16, no. 8: 600. https://doi.org/10.3390/metabo16080600

APA Style

Li, P., Mao, J., Hu, X., Hu, Y., Zhang, X., Zheng, Q., Hou, X., Liu, Y., & Huang, M. (2026). Machine Learning–Integrated Metabolomics for Precision Pharmacotherapy: Advances, Challenges, and Clinical Translation. Metabolites, 16(8), 600. https://doi.org/10.3390/metabo16080600

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop