From 7aab1f69ddd275a883c7226b7568cfa00faabcc2 Mon Sep 17 00:00:00 2001 From: Aniello Anzevino Date: Sat, 30 May 2026 13:05:39 +0200 Subject: [PATCH] Revisione codice per risoluzione problemi --- .gitignore | 3 +- app.py | 43 +- data/raw/pubmed_20260530_111908.xml | 21919 +++++++++++++++ data/raw/pubmed_20260530_112127.xml | 21919 +++++++++++++++ data/raw/pubmed_20260530_124620.xml | 22257 ++++++++++++++++ sources/samples/standardized_scopus_test.xlsx | Bin 0 -> 127113 bytes www/services/file_extractor.py | 182 +- www/services/format_functions.py | 1 + www/services/standardizer.py | 558 +- www/services/validation.py | 78 + 10 files changed, 66670 insertions(+), 290 deletions(-) create mode 100644 data/raw/pubmed_20260530_111908.xml create mode 100644 data/raw/pubmed_20260530_112127.xml create mode 100644 data/raw/pubmed_20260530_124620.xml create mode 100644 sources/samples/standardized_scopus_test.xlsx diff --git a/.gitignore b/.gitignore index 23b99e0..a62a19a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ __pycache__/ bibliovenv/ Bibenv/ -.idea/ \ No newline at end of file +.idea/ +.shiny-app*.log \ No newline at end of file diff --git a/app.py b/app.py index a254180..5b7f6c1 100644 --- a/app.py +++ b/app.py @@ -108,7 +108,7 @@ @functools.lru_cache(maxsize=1) def get_latest_cran_version(): try: - resp = requests.get("https://crandb.r-pkg.org/bibliometrix") + resp = requests.get("https://crandb.r-pkg.org/bibliometrix", timeout=3) if resp.status_code == 200: data = resp.json() return data.get("Version", None) @@ -587,6 +587,14 @@ def reset_all_analyses(): # Instead of complex introspection, use a simple direct approach # Only reset if variables exist to avoid unnecessary operations pass # Analysis results will be reset naturally when new data is loaded + + def prepare_dataframe_for_app(dataframe: pd.DataFrame) -> pd.DataFrame: + """Prepare standardized ETL output for Shiny analysis widgets.""" + prepared = dataframe.copy() + prepared["PY"] = pd.to_numeric(prepared["PY"], errors="coerce") + prepared = prepared.dropna(subset=["PY"]) + prepared["PY"] = prepared["PY"].astype(int) + return prepared report_choices = reactive.Value({}) report_excel = reactive.Value(io.BytesIO()) @@ -799,10 +807,7 @@ def mostra(): # Combine all standard dataframes into one standardized_df = pd.concat(all_standardized_dfs, ignore_index=True) - # Converte l'anno in numerico e rimuove le righe senza anno valido - standardized_df["PY"] = pd.to_numeric(standardized_df["PY"], errors="coerce") - standardized_df = standardized_df.dropna(subset=["PY"]) - standardized_df["PY"] = standardized_df["PY"].astype(int) + standardized_df = prepare_dataframe_for_app(standardized_df) # --- FASE LOAD: Salvataggio nel reattivo Shiny --- df.set(standardized_df) @@ -811,6 +816,29 @@ def mostra(): except Exception as e: ui.notification_show(f"❌ Errore durante l'aggregazione dei dati: {e}", type="error", duration=10) + else: + ui.notification_show("Nessun record valido trovato nei file caricati.", type="warning", duration=8) + + elif selected_action == "1B": # File gia' standardizzati + files = input.Dataset() + if files: + loaded_dfs = [] + for file_info in files: + try: + loaded = pd.read_excel(file_info["datapath"]) + loaded_dfs.append(convert2df(loaded.to_dict(orient="records"), source="WEB_OF_SCIENCE", validate=True)) + except Exception as e: + ui.notification_show(f"Errore nel caricamento di ({file_info['name']}): {e}", type="error", duration=8) + + if loaded_dfs: + try: + standardized_df = pd.concat(loaded_dfs, ignore_index=True) + standardized_df = prepare_dataframe_for_app(standardized_df) + df.set(standardized_df) + reset_all_analyses() + ui.notification_show(f"File Bibliometrix caricato: {len(standardized_df)} record.", duration=5) + except Exception as e: + ui.notification_show(f"Errore durante il caricamento: {e}", type="error", duration=10) # -------- ADVICE BUTTON -------- @render.ui @reactive.event(input.advice_modal_completeness) @@ -976,10 +1004,7 @@ def esegui_pipeline_api(): # Pass "api" as file_type since these aren't traditional physical files standardized_df = convert2df(raw_records, source=source_mapped, file_type="api", validate=True) - # Prepara il dato per i calcoli temporali della UI - standardized_df["PY"] = pd.to_numeric(standardized_df["PY"], errors="coerce") - standardized_df = standardized_df.dropna(subset=["PY"]) - standardized_df["PY"] = standardized_df["PY"].astype(int) + standardized_df = prepare_dataframe_for_app(standardized_df) # Assegna i dati al DataFrame reattivo df.set(standardized_df) diff --git a/data/raw/pubmed_20260530_111908.xml b/data/raw/pubmed_20260530_111908.xml new file mode 100644 index 0000000..24dcff4 --- /dev/null +++ b/data/raw/pubmed_20260530_111908.xml @@ -0,0 +1,21919 @@ + + + + + 42216193 + + 2026 + 05 + 29 + +
+ + 1742-4755 + + + 2026 + May + 29 + + + Reproductive health + Reprod Health + + Predicting short birth intervals in Bangladesh using stacked machine learning and SHAP explainability: evidence from BDHS 2022. + 10.1186/s12978-026-02367-0 + + Short birth interval (SBI) is a major public health concern, associated with adverse outcomes such as preterm birth, low birth weight, and maternal depletion. Identifying its influential predictors is essential for improving family planning and maternal health interventions. The study aimed to predict SBI and identify its influential predictors using stacked machine learning and SHAP explainability. + This study used data, obtained from the Bangladesh Demographic and Health Survey (BDHS), 2022. The dataset comprised 11,872 respondents, of whom 2,137 experienced SBI (18.0%). Class imbalance problem was addressed by applying class weighting during model training. Boruta and least absolute shrinkage and selection operator-based methods were applied to identify the most important predictors of SBI. Subsequently, multiple machine learning models (including logistic regression, random forest, extreme gradient boosting, categorical boosting, artificial neural network, and stacking ensemble) were used to predict SBI and evaluated their model performances using accuracy, precision, sensitivity, F1-score, and the area under the curve (AUC). Finally, SHAP explainability were employed to identify the most influential predictors of SBI. + The stacking ensemble model achieved the highest predictive performance compared to the individual models, with an accuracy of 65.8%, precision of 42.6%, sensitivity of 72.3%, F1-score of 53.6%, and modest AUC of approximately 0.667. The SHAP analysis showed that no educated respondents, higher parity, and do not intend to use contraceptive method were the most influential predictors of SBI. + Interventions could therefore focus on improving female education, expanding access to contraceptives, and promoting awareness of optimal birth spacing. Policymakers may incorporate SHAP explainability to support data-driven reproductive health strategies to reduce SBI in Bangladesh. + © 2026. The Author(s). + + + + Mia + Mostakim + M + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Akter + Shanti + S + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Sraboni + Takyeatun Nesa + TN + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Islam + Md Merajul + MM + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Tawabunnahar + Mst + M + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Maniruzamman + Md + M + + Statistics Discipline, Khulna University, Khulna, 9208, Bangladesh. + + + + Hossain + Md Golam + MG + + Health Research Group, Department of Statistics, University of Rajshahi, Rajshahi, 6205, Bangladesh. hossain95@yahoo.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Reprod Health + 101224380 + 1742-4755 + + IM + + Birth Spacing + Family Planning + Maternal and Child health + Model Interpretability + Predictive Modeling + + Declarations. Ethics approval and consent to participate: The survey was conducted in accordance with the Declaration of Helsinki, and the protocol for the 2022 BDHS received ethical clearance from both the ICF Institutional Review Board ethics committee and the Bangladesh Medical Research Council (BMRC). Informed written consent was obtained from each participant before commencement of the interview. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. Conflict of interest: The authors declare that they have no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 10 + 14 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 23 + 45 + + + aheadofprint + + 42216193 + 10.1186/s12978-026-02367-0 + 10.1186/s12978-026-02367-0 + + +
+ + + 42216185 + + 2026 + 05 + 29 + +
+ + 1758-2946 + + + 2026 + May + 29 + + + Journal of cheminformatics + J Cheminform + + Towards the design of artificial sensing materials via quantum-informed explainable AI. + 10.1186/s13321-026-01232-3 + + Computational design of sensing materials remains fundamentally challenging due to the vast configurational landscape and the absence of robust property correlations that enable efficient molecular representation. These challenges become particularly critical in healthcare applications, where reliable and interpretable molecular recognition is essential for non-invasive diagnostics. To address these challenges, we developed MORE-ML, a quantum-informed AI framework that combines electronic-structure-derived properties of e-nose molecular building blocks with machine learning (ML) methods to uncover sensing mechanisms and guide the design of new systems. Within this framework, we expanded our previous dataset, MORE-Q, to MORE-QX by sampling a larger conformational space of interactions between body odor volatilomes (BOV) molecules and mucin-derived receptors, both in the gas phase and when deposited on graphene. MORE-QX provides extensive electronic binding features (BFs) computed upon BOV adsorption. Analysis of the property space revealed weak correlations between quantum-mechanical (QM) properties of building blocks and resulting BFs. Leveraging this observation, we defined electronic descriptors of building blocks as inputs for tree-based ML models to predict BFs. Benchmarking showed CatBoost models outperform alternatives, especially in transferability to unseen compounds. Through explainable AI, we reduced the high-dimensional QM property space to a compact and physically interpretable set of descriptors, revealing the properties that most influence BF predictions. Collectively, MORE-ML combines QM insights with ML to provide mechanistic understanding and rational design principles for artificial sensing materials in BOV sensing. This approach establishes a foundation for advancing materials capable of analyzing complex odor mixtures, bridging the gap between molecular-level computations and practical e-nose applications. + © 2026. The Author(s). + + + + Chen + Li + L + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. + + + + Medrano Sandonas + Leonardo + L + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. leonardo.medrano@tu-dresden.de. + + + + Huang + Shirong + S + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. + + + + Croy + Alexander + A + + Institute of Physical Chemistry, Friedrich Schiller University Jena, 07737, Jena, Germany. + + + + Cuniberti + Gianaurelio + G + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Dresden Center for Computational Materials Science (DCMS), TUD Dresden University of Technology, 01062, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Cluster of Excellence CARE, TUD Dresden University of Technology and RWTH Aachen, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Cluster of Excellence CeTI, TUD Dresden University of Technology, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + + eng + + + 101046369 + HORIZON EUROPE European Innovation Council + + + + RTG2767 + Deutsche Forschungsgemeinschaft + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + J Cheminform + 101516718 + 1758-2946 + + + Explainable AI + Healthcare + Molecular sensing + Quantum-informed descriptors + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 17 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 23 + 45 + + + aheadofprint + + 42216185 + 10.1186/s13321-026-01232-3 + 10.1186/s13321-026-01232-3 + + +
+ + + 42216176 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + 26 + 1 + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Correction to: Simultaneous prediction of early and delayed mortality in burn patients: a comparative machine learning analysis of feature importance in a single-center retrospective study. + 194 + 10.1186/s12911-026-03563-5 + + + Motamedi + Mehran + M + + Nanotechnology Engineering, Babol Noshirvani University of Technology, Shariati Avenue, Babol, Mazandaran Province, 47148-71167, Iran. + + + + Moallemkolaei + Najibeh Mohseni + NM + + Health Information Management, Health Information Management Research Center, Kashan University of Medical Sciences, Ravandi Boulevard, Kashan, Isfahan Province, 87159-73449, Iran. + + + + Hesamirostami + Mohammadhossein + M + + Plastic and Reconstructive Surgery, Mazandaran University of Medical Sciences, Daneshgah Boulevard, Sari, Mazandaran Province, 48157-33971, Iran. hesami_plas@yahoo.com. + + + + Ghorbani + Mojtaba + M + + Plastic and Reconstructive Surgery, Mazandaran University of Medical Sciences, Daneshgah Boulevard, Sari, Mazandaran Province, 48157-33971, Iran. + + + + Arani + Leila Shokrizadeh + LS + + Health Information Management, Health Information Management Research Center, Kashan University of Medical Sciences, Ravandi Boulevard, Kashan, Isfahan Province, 87159-73449, Iran. + + + + eng + + Published Erratum + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + + BMC Med Inform Decis Mak. 2025 Dec 5;26(1):7. doi: 10.1186/s12911-025-03311-1. + 41350855 + + +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 44 + + + epublish + + 42216176 + 10.1186/s12911-026-03563-5 + 10.1186/s12911-026-03563-5 + + +
+ + + 42216170 + + 2026 + 05 + 29 + +
+ + 1475-9276 + + + 2026 + May + 29 + + + International journal for equity in health + Int J Equity Health + + Intersection of gender and class in the assessment of self-rated health in the Spanish population: a classification tree study. + 10.1186/s12939-026-02897-w + + This study assesses the influence of various specific health conditions as activity limitations and groups of chronic diseases, in estimating poor self-rated health for the Spanish population aged 30-60, stratified by the intersections of gender and social class. Moving beyond unidimensional social gradients, the research utilises decision tree analysis to identify specific configurations of SRH responses that align with the epidemiological profiles of distinct intersectional strata. + Data were drawn from the 2023 Spanish Health Survey (ESdE), focusing on a sample of 10,210 adults aged 30-60. This age bracket was selected to capture health inequality dynamics during the working life-course. Specific machine learning decision trees (J48 algorithm) were employed to assess the pathways for classifying individuals with poor SRH across six distinct intersectional groups. + Resulting decision trees differ significantly in composition, shape, and length across strata. A clear trend emerged: less skilled groups exhibited higher tree complexity, reflecting a more rapid accumulation of chronic illnesses at earlier ages. + This research contributes to the emerging field of study regarding what truly underlies individuals' general assessment of their health. The resulting decision trees illustrate the social gradient in health in a novel way that enriches the understanding of health inequalities. Instead of simply showing a linear trend across a one-dimensional variable, these trees reveal that as disadvantages accumulate through the intersection between gender and social class, the combination of relevant diseases do not only become more complex, but also distinct, in specific and unique ways for each group, as the intersectional framework predicts. + © 2026. The Author(s). + + + + Gumà-Lao + Jordi + J + + Centre for Demographic Studies, Barcelona, Spain. jguma@ced.uab.es. + + + + Barnils + Núria Pedrós + NP + + Institute for Public Health and Nursing Research, University of Bremen, Bremen, Germany. + + + Department of Epidemiology and Global Health, Umeå University, Umeå, Sweden. + + + + Parra-Casado + Daniel La + D + + Department of Sociology II, University of Alicante, Alicante, Spain. + + + + eng + + + Ramón y Cajal program (RYC2022-037781-I) + Agencia Estatal de Investigación + + + + "Generación de Conocimiento" Project [PID2022-141543OB-I00] + Agencia Estatal de Investigación + + + + 535865195 + Deutsche Forschungsgemenischaft + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Int J Equity Health + 101147692 + 1475-9276 + + IM + + Health inequity + Intersectional framework + Machine learning + Self-rated health + + Declarations. Human ethics and consent to participate: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 3 + + + 2026 + 5 + 14 + + + 2026 + 5 + 29 + 23 + 44 + + + aheadofprint + + 42216170 + 10.1186/s12939-026-02897-w + 10.1186/s12939-026-02897-w + + +
+ + + 42216166 + + 2026 + 05 + 29 + +
+ + 1471-2474 + + + 2026 + May + 29 + + + BMC musculoskeletal disorders + BMC Musculoskelet Disord + + Optimizing preoperative planning for total hip arthroplasty using random forest models to predict stem size and compatibility. + 10.1186/s12891-026-10022-9 + + Preoperative planning is essential for optimal outcomes post-total hip arthroplasty (THA). Appropriate stem size and compatibility with femoral dimensions are essential in THA to prevent distal fixation. Previous studies have proposed deep learning-based models with image recognition for preoperative planning to determine the best-fit stem; however, whether size and compatibility are adequately optimized remains unclear. This study developed methods that may assist surgeons in preoperative planning to estimate the stem size and compatibility using supervised machine learning models. + Two Random Forest (RF) models were developed to estimate the best-fit stem size and stem compatibility with the femoral geometry. Femoral size information measured at 10 locations from computed tomography images of 320 hips was used to train the models. The training data included the sizes and compatibility information as the target variables for supervised learning provided by a simulation software currently used in clinical practice to determine the optimal stem. As part of feature engineering, ratios derived from combinations of the 10 measured values were used as learning data. The size estimation model was designed as a seven-class classification model, whereas the compatibility estimation model was a binary classification model, predicting whether the stem will exclusively fit distally or not. Both models were tested using data from 109 hips of patients who underwent THA. The model performances were assessed using accuracy, F1 score, precision, and recall. Each parameter's impact was determined using feature importance analysis. + The size and compatibility estimation models trained without ratio information showed accuracies of 89.0% (exact-match: 46.8%) and 85.3%, respectively. When it was included, the models' performance improved, with the size and compatibility estimation accuracies increasing to 92.7% (exact-match: 39.4%) and 87.2%, respectively. Feature importance analysis highlighted that distal medullary cavity diameter is key in size estimation, while overall femoral dimensions are vital for compatibility estimation. + This study developed models that estimate the two critical factors in stem selection: size and compatibility. These models may support preoperative planning for THA using the Accolade II stem, although further validation is required to establish applicability to other implant systems. + © 2026. The Author(s). + + + + Kaneoka + Takehiro + T + 0000-0002-2742-4183 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Imagama + Takashi + T + 0000-0001-8509-1850 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Okazaki + Tomoya + T + 0000-0002-6635-3541 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Matsuki + Yuta + Y + 0000-0002-0664-4136 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Kawakami + Takehiro + T + 0000-0001-6363-560X + + Department of Orthopaedic surgery, Yamaguchi Prefectural Grand Medical Centre, Hofu, Yamaguchi, JP, Japan. + + + + Yamazaki + Kazuhiro + K + 0000-0002-1627-7368 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Sasaki + Kei + K + 0009-0003-8535-1589 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Asai + Yoshiyuki + Y + 0000-0001-5519-4306 + + Department of Systems Bioinformatics, Graduate School of Medicine, Yamaguchi University, Yamaguchi, Japan. + + + + Sakai + Takashi + T + 0000-0001-6367-1299 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. cozy@yamaguchi-u.ac.jp. + + + + eng + + + JP22he0122010 + Japan Agency for Medical Research and Development (AMED) + + + + JP 23K10426 + JSPS KAKENHI + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Musculoskelet Disord + 100968565 + 1471-2474 + + IM + + femoral dimensions + machine learning + preoperative planning + random forest + total hip arthroplasty + + Declarations. Ethics approval and consent to participate: This retrospective study’s protocol was approved by the by the Ethics Committee of Yamaguchi University Graduate School of Medicine (approval number: H2021-166-2), and informed consent was obtained from all participants. The ethical standards from the 1964 Helsinki declaration and its later amendments were upheld. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2024 + 12 + 4 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 44 + + + aheadofprint + + 42216166 + 10.1186/s12891-026-10022-9 + 10.1186/s12891-026-10022-9 + + +
+ + + 42216115 + + 2026 + 05 + 29 + +
+ + 1471-2393 + + + 2026 + May + 30 + + + BMC pregnancy and childbirth + BMC Pregnancy Childbirth + + Predicting facility delivery and its determinants among reproductive-age women in Ethiopia using machine learning algorithm: evidence from performance monitoring for action Ethiopia 2019 dataset. + 10.1186/s12884-026-09354-0 + + Facility delivery attended by skilled health professionals is a critical strategy for reducing maternal and neonatal mortality. Despite substantial efforts to expand maternal health services in Ethiopia, a large proportion of births still occur at home. This study aimed to predict facility delivery and identify its associated factors among reproductive-age women in Ethiopia using machine learning approaches. + This study used secondary data from the 2019 Performance Monitoring for Action (PMA) Ethiopia cross-sectional household and female survey. A weighted sample of 5,413 women aged 15-49 years who had a recent birth was included in the analysis. Data extraction and preprocessing were conducted using STATA version 17, while machine learning models were implemented using Python version 3.11.5. Seven supervised machine learning algorithms were developed to predict facility delivery. Model performance was evaluated using accuracy, precision, recall, F1 score, and the area under the receiver operating characteristic curve (AUC). Data preparation included feature engineering, data splitting, handling missing values, addressing class imbalance, and outlier detection. SHapley Additive exPlanations (SHAP) were applied to interpret the contribution of important predictors to model predictions. + Among the evaluated models, the Random Forest algorithm demonstrated the best predictive performance, achieving 74.15% accuracy, 72.58% recall, 76.27% F1-score, and 80.36% precision on test data. The most influential predictors of facility delivery included higher household wealth status, secondary or higher maternal education, television ownership, discussion of delivery location with a partner, partner encouragement for antenatal care attendance, family planning use, maternal age between 20 and 34 years, age at first sexual intercourse of 19 years or older, awareness of emergency contacts, and completion of primary education. + Interpretable machine learning approaches can provide useful insights for identifying factors associated with facility delivery. The findings highlight key socioeconomic and behavioral characteristics that may inform targeted strategies to improve utilization of facility-based delivery services and support efforts to enhance maternal health outcomes in Ethiopia. + © 2026. The Author(s). + + + + Degefa + Siraj Muhidin + SM + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. sirajmuhidin6@gmail.com. + + + + Hailu + Beriso Alemu + BA + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. + + + + Serbessa + Naol Gonfa + NG + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. + + + + Tsehay + Asmamaw Ketemaw + AK + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Sedi + Tigist Tollessa + TT + + Department of Health Informatics, College of Medicine and Health Sciences, Arbaminch University, Arbaminch, Ethiopia. + + + + Woldekidan + Eden Ketema + EK + + Department of Health Informatics, College of Medicine and Health Sciences, Arbaminch University, Arbaminch, Ethiopia. + + + + Ahmed + Mohammedjud Hassen + MH + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Adem + Jibril Bashir + JB + + Department of Public Health, College of medicine and Health sciences, Arsi University, Asella, Ethiopia. + + + + Wale + Agmasie Damtew + AD + + Department of Health Informatics, School of Public Health, Asrat Woldeyes Health Science Campus, Debre Berhan University, Debre Berhan, Ethiopia. + + + + Guadie + Habtamu Alganeh + HA + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Asemahagn + Mulusew Andualem + MA + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + England + BMC Pregnancy Childbirth + 100967799 + 1471-2393 + + IM + + Determinants + Ethiopia + Facility delivery + Women + + Declarations. Ethics approval and consent to participate: For this study, secondary anonymized data were used, and permission to access the dataset was obtained from the Performance Monitoring for Action (PMA) data repository through the official PMA data access portal: PMA Dataset Access Portal. Ethical clearance for this secondary data analysis was obtained from the Institutional Review Board (IRB) of Bahir Dar University, College of Medicine and Health Sciences. The study was conducted in accordance with the Declaration of Helsinki. Since the dataset was fully anonymized and publicly available for research purposes, informed consent from participants was not required for this secondary analysis. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2024 + 11 + 7 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 42 + + + aheadofprint + + 42216115 + 10.1186/s12884-026-09354-0 + 10.1186/s12884-026-09354-0 + + +
+ + + 42216109 + + 2026 + 05 + 29 + +
+ + 2045-3701 + + + 2026 + May + 29 + + + Cell & bioscience + Cell Biosci + + Decoding the role of H19 in cholestatic liver injury using snRNA-seq, spatial transcriptomics, and machine learning-based disease prediction. + 10.1186/s13578-026-01590-3 + + Despite recent advances, Primary Sclerosing Cholangitis (PSC)-a chronic obstructive biliary disease-still lacks effective therapies to prevent disease progression or the need for liver transplantation. Moreover, up to 30% of transplant recipients experience recurrence. Long non-coding RNA H19 (H19) has been implicated in promoting PSC progression, yet the cellular and molecular mechanisms underlying its pathogenic role remain incompletely understood. + Liver tissues from age- and sex-matched wild type (WT), H19 knockout (H19KO), Mdr2 knockout (Mdr2KO), and double-knockout (DKO; Mdr2KO/H19KO) mice were analyzed using single-nucleus RNA sequencing (snRNAseq) and GeoMx spatial transcriptomics to define the cell type and spatially specific effects of H19 deletion in cholestatic liver injury. Machine learning models were built to develop cell-type-specific gene prediction signatures and cross-validated using the human dataset GSE243981. A disease-associated cholangiocyte subcluster that increased in Mdr2KO but was markedly reduced in DKO mice was identified. SPP1 signaling was significantly dysregulated in cholestatic liver injury and mitigated following H19 deletion. Translationally conserved healthy (Clu, Spp1) and diseased (Csmd1, Slco3a1, Cftr) cholangiocyte markers were identified. When validated in a human patient dataset (GSE243981), our machine-learning prediction models achieved AUC values > 0.869. Finally, spatial analyses demonstrated that the mitigation of disease-associated gene expression following H19 deletion was specifically restricted to hepatocytes within the bile duct region. + H19 deletion mitigates cholestatic injury by suppressing pathogenic cholangiocyte states, normalizing Spp1-mediated signaling, and shifting transcriptional programs specifically within the periductal niche. Furthermore, our machine-learning signatures demonstrate robust cross-species translation and may benefit future post-transplant analytics and disease recurrence predictions. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Way + Grayson W + GW + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Jiang + Xixian + X + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Lu + Hongkun + H + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Wu + Nan + N + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Zhao + Derrick + D + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Tai + Yun-Ling + YL + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Bayatpour + Sareh + S + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Wang + Xuan + X + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Zhou + Huiping + H + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. huiping.zhou@vcuhealth.org. + + + Richmond Veterans Affairs Medical Center, Richmond, VA, 23249, USA. huiping.zhou@vcuhealth.org. + + + + eng + + + 5T32AA029975 + GF + NIH HHS + United States + + + DK115377, 2R56DK115377-05A1, 5R01AA030180, R01DK139587, NIH-NCI P01CA275740 + GF + NIH HHS + United States + + + 5I01BX005730,1 IS1 BX004777-01 and 1IS1BX005517-01, IK6BX004477 + U.S. Department of Veterans Affairs + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Cell Biosci + 101561195 + 2045-3701 + + + Cholestasis + H19 + Long non-coding RNA + Machine learning + Primary sclerosing cholangitis + SPP1 + + Declarations. Conflict of interest: Huiping Zhou is the corresponding author and is also an Editor for the journal. Ethics approval and consent to participate: All animal experiments were performed following institutional guidelines for ethical animal studies and approved by the Virginia Commonwealth University and Richmond VA Medical Center Institutional Animal Care and Use Committee, Virginia, USA. All patient samples used followed Richmond VA Medical Center Institutional Review Board guidelines for de-identified consenting patients. Consent for publication: All authors have given their consent for publication. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 11 + + + 2026 + 5 + 7 + + + 2026 + 5 + 29 + 23 + 40 + + + aheadofprint + + 42216109 + 10.1186/s13578-026-01590-3 + 10.1186/s13578-026-01590-3 + + +
+ + + 42216097 + + 2026 + 05 + 29 + +
+ + 1758-9193 + + + 2026 + May + 29 + + + Alzheimer's research & therapy + Alzheimers Res Ther + + EEG biomarkers can predict early-stage Alzheimer's disease and correlate with intracerebral pathology: a multimodal machine learning study. + 10.1186/s13195-026-02096-3 + + Early recognition of Alzheimer's disease (AD) is crucial for timely intervention and delaying disease progression. Electroencephalogram (EEG) technology provides a direct reflection of the brain's dynamic activity. However, the relationship between potential EEG features and cognitive function in early-stage AD patients, as well as cerebrospinal fluid (CSF) pathological biomarkers, remains unclear. + This study included 101 patients with mild cognitive impairment (MCI) and mild AD, alongside 69 healthy controls (HC) matched for gender, age, and educational attainment. Extracting EEG power spectral density (PSD) and microstates analysis features as training features for machine learning (ML), we employed five ML algorithms-Support Vector Machines (SVM), Logistic Regression (LR), Random Forests (RF), XGBoost, and LightGBM-for training and testing. Model performance was assessed using the area under the receiver operating characteristic curve (AUC). SHapley Additive exPlanations (SHAP) plots were employed to elucidate variable importance within the model, and sequential forward selection (SFS) was utilised to identify potential features. Correlation analysis and mediation analysis were conducted to investigate the relationships between EEG features, CSF pathological biomarkers, and cognitive function. + The LR model demonstrated the highest average predictive performance in the training set (mean AUC = 0.859 ± 0.059). The model incorporating PSD and microstates features demonstrated optimal predictive performance in the test set (AUC = 0.949, 95% CI: 0.877-1.000), outperforming any single-feature model. Based on SHAP and SFS analyses, six potential EEG indicators were identified: central region delta frequency band, central region theta frequency band, temporal region beta frequency band, microstate mean duration, microstate C duration, and the transition probability from microstate C to A. Mediation analysis revealed a significant negative correlation between central region theta frequency band and CSF Aβ₁₋₄₂ levels (r = - 0.31, p = 0.015), and the central region theta frequency band mediated the relationship between Aβ₁₋₄₂ levels and Mini-Mental State Examination (MMSE) scores (indirect effect = 0.0007, 95% CI: 0.0001-0.0013). + The combined application of EEG and ML enables efficient classification diagnosis of early-stage AD, and EEG is correlated with intracerebral pathological biomarkers and cognitive impairment. + © 2026. The Author(s). + + + + Geng + Zhi + Z + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Song + Wenqian + W + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Gao + Chen + C + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Zhu + Yun + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Yue + Y + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + Department of Sleep Psychology, The Second Hospital of Anhui Medical University, Anhui Medical University, Hefei, China. + + + + Song + Bo + B + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Guo + Haihua + H + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Jiayun + J + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Fang + Miao + M + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Yan + Yibing + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Zhou + Shanshan + S + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Hu + Panpan + P + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Tian + Yanghua + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Xingqi + X + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. wuxq@fy.ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. wuxq@fy.ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. wuxq@fy.ahmu.edu.cn. + + + + Wang + Kai + K + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. kwang@ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. kwang@ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. kwang@ahmu.edu.cn. + + + Anhui Provincial Institute of Translational Medicine, Anhui Medical University, Hefei, China. kwang@ahmu.edu.cn. + + + + Wei + Ling + L + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. weil@fy.ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. weil@fy.ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. weil@fy.ahmu.edu.cn. + + + + eng + + + 82101498 + National Natural Science Foundation of China + + + + 82371201 + National Natural Science Foundation of China + + + + 82371201 + National Natural Science Foundation of China + + + + 2021kj19 + The 2021 Youth Foundation training program of the First Affliated Hospital of Anhui Medical University + + + + 202204295107020006 + The Anhui Province Clinical Medical ResearchTransformation Special Project + + + + XZZR202402048 + The Natural Science Foundation of theXizang Autonomous Region Group Medical Aid Project to Xizang + + + + 2022zhyx-B11 + Research Fund of Anhui Institute of Translational Medicine + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Alzheimers Res Ther + 101511643 + + IM + + Alzheimer’s disease + CSF biomarkers + EEG microstates + EEG power spectral density + Machine learning + + Declarations. Ethics approval and consent to participate: The studies involving human participants were reviewed and approved by the Research Ethics Committee of the First Affiliated Hospital of Anhui Medical University. The patients/participants provided their written informed consent to participate in this study. Consent for publication: All participants provided consent for the publication of this manuscript. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 12 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 40 + + + aheadofprint + + 42216097 + 10.1186/s13195-026-02096-3 + 10.1186/s13195-026-02096-3 + + +
+ + + 42216034 + + 2026 + 05 + 29 + +
+ + 1475-2867 + + + 2026 + May + 29 + + + Cancer cell international + Cancer Cell Int + + DNA damage response signature-based prognostic genes for intrahepatic cholangiocarcinoma: a combined analysis of machine learning and biological experiments. + 10.1186/s12935-026-04355-7 + + Intrahepatic cholangiocarcinoma (ICC) is a highly aggressive subtype of primary liver cancer with insidious onset, early metastasis, and poor prognosis. DNA damage response (DDR) dysfunction is linked to ICC tumorigenesis, progression, and drug resistance. However, the detailed mechanisms remain underexplored. + DDR activity was quantified by ssGSEA across 6 independent ICC cohorts. DDR risk model was analyzed using 10 machine learning algorithms to construct 101 combined models, and the optimal Lasso + RSF model was adopted by c-index. The core gene SFN was selected for experimental validation. Single‑cell RNA sequencing and spatial transcriptomics were used to explore cellular localization and tissue distribution of signature genes. In vitro assays were performed in ICC cell lines after SFN knockdown to assess cell proliferation and chemosensitivity. + The DDR risk model showed stable prognostic performance in training and external validation cohorts. High‑risk patients exhibited poor prognosis, immunosuppressive microenvironment and reduced sensitivity to multiple chemotherapeutic agents. SFN was specifically enriched in malignant cells. Knockdown of SFN significantly suppressed cell proliferation and colony formation, enhanced sensitivity to cisplatin and gemcitabine, and increased γ‑H2AX expression indicating elevated DNA double‑strand breaks. + We constructed a robust DDR‑based prognostic model for ICC that enables accurate risk stratification and prediction of therapeutic response. SFN serves as a critical driver of chemoresistance and a potential therapeutic target. These results offer novel biomarkers and mechanistic insights to facilitate precision medicine for ICC patients. + © 2026. The Author(s). + + + + Lu + Kai + K + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Li + Hanqi + H + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Wu + Yinying + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Dong + Xuyuan + X + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Dong + Danfeng + D + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Fan + Yangwei + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Li + Enxiao + E + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Sun + Liankang + L + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. sunliankang@xjtu.edu.cn. + + + + Shi + Yu + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. shiyu@xjtu.edu.cn. + + + + eng + + + 2022JQ-846 + Natural Science Basic Research Program of Shaanxi + + + + 2021QN-01,2022QN-15 + Research Foundation of the First Affiliated Hospital of Xi'an Jiaotong University + + + + xzy012022103 + Fundamental Research Funds for the Central Universities + + + + 82303663 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Cancer Cell Int + 101139795 + 1475-2867 + + + DNA damage response + Experimental validation + Intrahepatic cholangiocarcinoma + Machine learning + Prognostic markers + + Declarations. Ethics approval and consent to participate: All data utilized in this study were retrieved from publicly available online databases, as specified in the manuscript. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 8 + 3 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 38 + + + aheadofprint + + 42216034 + 10.1186/s12935-026-04355-7 + 10.1186/s12935-026-04355-7 + + +
+ + + 42216026 + + 2026 + 05 + 29 + +
+ + 1757-6512 + + + 2026 + May + 29 + + + Stem cell research & therapy + Stem Cell Res Ther + + KRT6A derived from mesenchymal stem cells as a potential biomarker and therapeutic target for alopecia areata: insights from multi-omics analysis and experimental evidence. + 10.1186/s13287-026-05077-3 + + Mesenchymal stem cells (MSCs) secretome have shown promise in the treatment of alopecia areata (AA). However, the key therapeutic genes remain unclear. This study aimed to identify potential critical therapeutic molecules using multi-omics approaches. + MSCs extracellular vesicles related genes was retrieved from ExoCarta database, and which integrated with transcriptomic and proteomic sequencing data from AA for cross-analysis to identify AA-related therapeutic genes. Mfuzz clustering, PPI networks, and machine learning algorithms were employed to potential key therapeutic factors. Functional mechanisms were explored through gene expression analysis, immune infiltration, single-cell RNA sequencing (scRNA-seq) and spatial transcriptomics. AA mice were used for experimental validation. + We identified 146 MSCs-derived genes with potential therapeutic relevance for AA. Enrichment analysis suggests that they are involved in skin development and differentiation. Through Mfuzz clustering, 13 machine learning algorithms, and combined with SHAP interpretability analysis, the KRT6A was we further identified as the most critical candidate gene. Validation analyses demonstrated that KRT6A serves as a robust diagnostic marker for AA (AUC = 0.989), a predictor of disease severity (AUC = 0.769), and a protective factor (HR = 0.52, 95%CI: 0.34-0.79). Immune infiltration analysis revealed severe immune dysregulation in AA, and KRT6A was significantly negative correlated with dysregulated immune cells. By exploring the expression source of KRT6A, we found that it was mainly enriched in skin hair follicle tissues, and single-cell subset analysis and spatial transcriptomics further mapped KRT6A to hair follicle stem-like cells from the cellular level, yet KRT6A was significantly downregulated in AA models. Primary human hair follicle mesenchymal stem cells (HFMSCs) further confirmed KRT6A localization. Furthermore, KRT6A-overexpressing HFMSCs exhibited enhanced migration, whereas KRT6A knockdown reduced migration and suppressed WNT pathway activation. Conditioned medium from KRT6A-overexpressing HFMSCs effectively alleviated alopecia and reduced apoptosis in AA mice, whereas KRT6A knockdown reversed these effects. + MSCs-derived KRT6A may serve as a potentia biomarker and therapeutic target for AA, which provide novel insights into AA pathogenesis and may help the development of targeted therapeutic strategies. + © 2026. The Author(s). + + + + Peng + Shixiong + S + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Deng + Jia + J + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Meng + Xiuming + X + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Deng + Shuangjie + S + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Yan + Wenjie + W + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. ywj716@glmu.edu.cn. + + + + Huang + Xi + X + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. professorhuangxi@163.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Stem Cell Res Ther + 101527581 + 1757-6512 + + IM + + Alopecia areata + KRT6A + Machine learning + Mesenchymal stem cells + Multi-omics + + Declarations. Ethics approval and consent to participate: The animal research, entitled “KRT6A from Mesenchymal Stem Cells Exosomes as a Potential Biomarker and Therapeutic Target for Alopecia Areata: Insights from Multi-omics Analysis and Experimental Evidence”, was approved by the Animal Ethics Committee of Guilin Medical University (GLMU-IACUC-20251084) on August 13, 2025, and was performed in accordance with the ARRIVE 2.0 guidelines. The human-related research in this study, which was part of the project entitled “Exosome Multimodal Analysis Reveals the Mechanism by Which Mesenchymal Stem Cell Exosomes Regulate Hair Follicle Regeneration”, was approved by the Ethics Committee of the Affiliated Hospital of Guilin Medical University on February 18, 2025 (No. 2025QTLL-10), and was conducted in compliance with the principles of the Declaration of Helsinki. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 11 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216026 + 10.1186/s13287-026-05077-3 + 10.1186/s13287-026-05077-3 + + +
+ + + 42216024 + + 2026 + 05 + 29 + +
+ + 2050-6511 + + + 2026 + May + 29 + + + BMC pharmacology & toxicology + BMC Pharmacol Toxicol + + Network toxicology and bioinformatics reveal potential molecular links between cadmium exposure and pancreatic cancer. + 10.1186/s40360-026-01156-6 + + Environmental cadmium (Cd) pollution poses a severe threat to human health due to its strong bioaccumulation and high carcinogenicity. Although Cd exposure has been linked to various cancers, its specific role in pancreatic cancer (PC) remains unclear. This study aimed to explore the molecular mechanisms underlying Cd-associated PC and identify potential diagnostic and therapeutic targets. + Transcriptomic data of PC were obtained from the GEO database to screen differentially expressed genes (DEGs), which were then intersected with Cd-related genes retrieved from the Comparative Toxicogenomics Database (CTD). Functional enrichment analyses, including GO and KEGG, were conducted to identify key biological processes and pathways. Multiple machine learning algorithms were used to construct a diagnostic model and identify hub genes. Furthermore, molecular docking and molecular dynamics simulations were performed to evaluate drug-target interactions, and in vitro experiments were used to validate the effects of Cd exposure on PC cell proliferation and invasiveness. + A total of five key genes-FN1, COL5A1, AHR, COL3A1, and TIMP1-were identified as core regulators of Cd-associated PC. Functional analyses indicated that Cd primarily affects the extracellular matrix (ECM) metabolic and collagen remodeling pathways. Experimental results confirmed that Cd exposure significantly enhanced the proliferation and invasiveness of PC cells. Molecular docking and dynamics simulations revealed that the EGFR inhibitor dacomitinib exhibited favorable predicted binding affinity to FN1, suggesting its potential as a therapeutic agent. + This study reveals that Cd may promote the malignant progression of PC by regulating ECM remodeling through key genes such as FN1. Dacomitinib shows promise as an FN1-associated therapy, offering new insights for the precise prevention and treatment of Cd-associated PC. + © 2026. The Author(s). + + + + Liu + Shuyuan + S + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Lu + Xinyan + X + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + + Li + Desheng + D + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + + Ma + Jingyuan + J + + The First Clinical Medical College, Liaoning University of Traditional Chinese Medicine, Shenyang, China. + + + + Zhang + Yunshu + Y + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Li + Junchen + J + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Wan + Xing + X + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. wanx03@dmu.edu.cn. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. wanx03@dmu.edu.cn. + + + + Shang + Dong + D + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + + Zhang + Qingkai + Q + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. zhangqk@dmu.edu.cn. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. zhangqk@dmu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Pharmacol Toxicol + 101590449 + 2050-6511 + + IM + + Cadmium + Machine learning + Molecular dynamic simulation + Network toxicology + Pancreatic cancer + + Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 11 + 11 + + + 2026 + 5 + 20 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216024 + 10.1186/s40360-026-01156-6 + 10.1186/s40360-026-01156-6 + + +
+ + + 42216013 + + 2026 + 05 + 29 + +
+ + 1749-7922 + + + 2026 + May + 29 + + + World journal of emergency surgery : WJES + World J Emerg Surg + + Machine learning models for early mortality prediction in trauma patients using public data: a nationwide retrospective study. + 10.1186/s13017-026-00706-x + + Trauma is a leading cause of morbidity and mortality worldwide, particularly in younger populations. Early identification of high-risk trauma patients is critical for timely interventions and improved outcomes. Although artificial intelligence and machine learning have demonstrated promise in healthcare, their application in trauma mortality prediction has been limited. + This study developed and validated machine learning models to predict mortality in trauma patients using a large public dataset from the National Community-Based Critical Injury Survey (South Korea, 2016-2020). Overall, 207,012 cases were analyzed. Six machine learning algorithms, including logistic regression, k-nearest neighbor, decision tree, random forest (RF), extreme gradient boosting (XGB), and multi-layer perceptron, were trained and evaluated. Their performance was assessed using the areas under the receiver operating characteristic curve (AUROC) and precision-recall curve (AUPRC), and other metrics. Shapley additive explanations (SHAP) scores were used to interpret feature importance. + The XGB model demonstrated the highest performance (AUROC 0.985; AUPRC 0.957), followed closely by the RF model (AUROC 0.984; AUPRC 0.956). Performance remained stable during the COVID-19 period, supporting the model's temporal robustness under systemic disruption. SHAP analysis identified clinically actionable features such as out-of-hospital cardiac arrest, injury severity score, age, and time to transfusion. Unlike many prior studies based on small or single-center datasets, our model was developed using a nationally representative cohort and prioritized interpretability, scalability, and generalizability. + This study presents a high-performing, interpretable machine learning framework for early mortality risk stratification in trauma patients using nationwide registry data. The strong discrimination and temporal robustness of the model support its value as a system-level prediction tool; however, further calibration analyses, external validation, and prospective implementation studies are required before integration into clinical workflows. + © 2026. The Author(s). + + + + Baik + Seung Min + SM + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Lee + Jae Gil + JG + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Shim + Hongjin + H + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Kim + Sujung + S + + Division of Acute Care Surgery, Department of Surgery, Korea University Anam Hospital, Korea University College of Medicine, Goryeodae-ro 73, Seongbuk-gu, Seoul, 02841, Republic of Korea. + + + + Hong + Kyung Sook + KS + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Seoul Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Yi + Heejung + H + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Seoul Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Lee + Kyung Hyun + KH + + Department of Digital Health, SAIHST, Sungkyunkwan University, Seoul, Republic of Korea. + + + + Lee + Jae-Myeong + JM + + Division of Acute Care Surgery, Department of Surgery, Korea University Anam Hospital, Korea University College of Medicine, Goryeodae-ro 73, Seongbuk-gu, Seoul, 02841, Republic of Korea. ljm3225@hanmail.net. + + + + eng + + + RS-2023-00240766 + National Research Foundation of Korea + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + World J Emerg Surg + 101266603 + 1749-7922 + + IM + + Artificial intelligence + Clinical decision-making + Emergency medical services + Injury severity score + + Declarations. Ethics approval and consent to participate: The Ewha Womans University Mokdong Hospital Institutional Review Board deemed this study exempt from ethics review and waived the informed consent requirement. Consent for publication: Not applicable. Competing interests: The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 10 + 20 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216013 + 10.1186/s13017-026-00706-x + 10.1186/s13017-026-00706-x + + +
+ + + 42215973 + + 2026 + 05 + 29 + +
+ + 1472-6963 + + + 2026 + May + 29 + + + BMC health services research + BMC Health Serv Res + + Why are rural hospitals closing in the U.S.? Predictors identified using explainable machine learning. + 10.1186/s12913-026-14810-w + + Rural hospital closures in the U.S. reduce access to essential healthcare services and worsen health and economic outcomes in rural communities. This study uses national longitudinal data and explainable machine learning (XML) to identify and interpret risk factors of rural hospital closures. + We conducted a retrospective longitudinal study of U.S. rural hospitals using national datasets from 2011 to 2022, integrating hospital-level financial, operational, policy, population, and community data. Longitudinal feature engineering and statistical summarization were performed, class imbalance and multicollinearity were addressed using random undersampling and variance inflation factor (VIF) analysis, and an XGBoost classifier was trained using stratified three-fold cross-validation and Optuna for hyperparameter tuning. Model explainability was assessed using SHapley Additive exPlanations (SHAP). + Among 2,683 rural hospitals, 139 (5.2%) closed during the study period. The model achieved a recall of 86%, accuracy of 75%, and an AUC of 89%. The key variables linked to closure risk are sustained financial weakness and volatility (e.g., total margin, variability in return on equity, and current ratio), operational instability (low patient volume and variability in bed-days available), policy context (e.g., years since Medicaid expansion), and community context, including sociodemographic characteristics of the service area (e.g., proportion of Black or African American residents), which may reflect underlying structural and socioeconomic conditions rather than direct predictors or causal drivers of closure. + These findings indicate that the risk of closure of rural hospitals reflects accumulated long-term financial and operational instability, as well as policy and community context, rather than short-term distress, highlighting the value of longitudinal and explainable modeling approaches. + Longitudinal data integrated into XML provides a practical approach for early warning systems that enable proactive monitoring and timely interventions, particularly for hospitals serving historically underserved communities. + Not applicable. + © 2026. The Author(s). + + + + Balakrishnan + Kiruthika + K + + National Center for Rural Health Professions, University of Illinois College of Medicine Rockford, 1601 Parkview Avenue, Rockford, IL, 61107, USA. bkiruthi@uic.edu. + + + AI.Health4All Center, University of Illinois Chicago, 1747 West Roosevelt Road, Chicago, IL, 60608, USA. bkiruthi@uic.edu. + + + + Abuhay + Tesfamariam M + TM + + Department of Medicine, University of Illinois Chicago, 840 S. Wood St., Chicago, IL, 60612, USA. + + + AI.Health4All Center, University of Illinois Chicago, 1747 West Roosevelt Road, Chicago, IL, 60608, USA. + + + + Hinkle + Hana E + HE + + National Center for Rural Health Professions, University of Illinois College of Medicine Rockford, 1601 Parkview Avenue, Rockford, IL, 61107, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Health Serv Res + 101088677 + 1472-6963 + + IM + + Early warning systems + Explainable machine learning + Hospital closure risk factors + Longitudinally derived features + Rural hospital closures + + Declarations. Ethics consent to participate: This study is a retrospective analysis of publicly available data and published literature and did not involve human participants, identifiable private information, or the collection of new data requiring ethical approval or informed consent. Consent for publication: Not applicable Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 10 + + + 2026 + 5 + 15 + + + 2026 + 5 + 29 + 23 + 36 + + + aheadofprint + + 42215973 + 10.1186/s12913-026-14810-w + 10.1186/s12913-026-14810-w + + +
+ + + 42215935 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Explainable machine learning for the prediction of Alzheimer's disease-related cognitive impairment: a consensus feature selection approach. + 10.1186/s12911-026-03585-z + + Early identification of Alzheimer's disease-related cognitive impairment remains challenging, and existing machine learning (ML) models often suffer from feature instability and limited interpretability. This study developed robust and explainable ML models using cerebrospinal fluid (CSF) biomarkers by systematically comparing sparsity-based (LASSO), importance-based (Boruta), and consensus feature selection strategies. + A publicly available cohort of 333 individuals (91 cognitively impaired, 242 cognitively normal) was analyzed. Data were split into training (70%) and independent test (30%) sets. Multiple classifiers, including Elastic Net-regularized logistic regression (LR), support vector machine (SVM), random forest, XGBoost, and Naive Bayes (NB), were trained using repeated 5-fold cross-validation (10 repetitions; 10 × 5-fold cross-validation) with class weighting. Model performance was evaluated using discrimination, calibration, and clinical utility metrics, and interpretability was assessed using SHAP. + All models demonstrated strong discriminative performance on the test set (AUROC 0.861-0.958). LASSO-based models showed high specificity, Boruta-based models achieved higher sensitivity, and consensus-based models provided the most balanced performance. The consensus-LR and -SVM models achieved AUROC values of 0.954 and 0.951, respectively. Beyond discrimination, the consensus-LR model demonstrated good calibration and consistent net clinical benefit in decision curve analysis, analyses that remain relatively underreported in the Alzheimer's disease machine learning literature. SHAP analyses highlighted biologically plausible contributions from key biomarkers, including tau, Aβ42, NT-proBNP, pancreatic polypeptide, and IL-7. + In summary, stable and interpretable ML models for Alzheimer's disease-related cognitive impairment can be developed using CSF-derived biomarkers obtained through lumbar puncture. The proposed consensus-based feature selection framework improves feature stability and model transparency, facilitating the discrimination between cognitively normal and impaired individuals and providing a foundation for future external validation studies. + © 2026. The Author(s). + + + + Cantaş Türkiş + Fulden + F + 0000-0002-7018-7187 + + Division of Biostatistics, Faculty of Medicine, Muğla Sıtkı Koçman University, Muğla, 48000, Turkey. fuldencantas@mu.edu.tr. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + Calibration + Clinical utility + Explainability + Feature selection + Machine learning + + Declarations. Ethics approval and consent to participate: Not applicable. This study is a secondary analysis of publicly available, anonymized data obtained from an open-access repository. Ethical approval and informed consent were obtained in the original study, and no additional ethical approval was required for the present analysis. The study was conducted in accordance with the principles of the Declaration of Helsinki. Consent for publication: Not applicable. The study does not include any individual-level identifiable data. Authors’ information: Fulden Cantaş Türkiş is an Assistant Professor at Muğla Sıtkı Koçman University, Faculty of Medicine, Department of Biostatistics. Her research interests include biostatistics, time-to-event data analysis, machine learning, artificial intelligence in healthcare, explainable artificial intelligence, predictive modeling, and statistical learning using real-world clinical data. She collaborates with multiple interdisciplinary research groups as the lead biostatistician and provides statistical consultancy for clinical and translational research projects. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 22 + + + 2026 + 5 + 20 + + + 2026 + 5 + 29 + 23 + 35 + + + aheadofprint + + 42215935 + 10.1186/s12911-026-03585-z + 10.1186/s12911-026-03585-z + + +
+ + + 42215930 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Beyond prediction: explainable machine learning for ferritin estimation from complete blood count. + 10.1186/s12911-026-03601-2 + + Serum ferritin is a primary marker of body iron stores; however, its diagnostic utility is limited by cost and non-specific elevation during inflammatory states. This study aimed to develop and validate explainable machine learning (ML) models to estimate ferritin status using only widely available and cost-effective complete blood count (CBC) and demographic parameters. + This prospective study analyzed 12,450 adult laboratory records. To ensure ferritin reflected true iron status, cases with inflammation (elevated white blood cell count or erythrocyte sedimentation rate) were excluded. A balanced dataset of 7,200 samples was used to train five supervised ML algorithms, including Logistic Regression, XGBoost, and Artificial Neural Network (ANN), for both binary classification and regression tasks. Model interpretability was assessed using SHapley Additive Explanations (SHAP) to evaluate global feature importance. + The ANN model achieved the best classification performance, with an area under the curve of 0.837 and an F1-score of 0.760 in discriminating low ferritin levels (< 30 ng/mL) from normal values. Although the regression model demonstrated a moderate global R² of 0.32, it showed higher predictive accuracy in lower ferritin ranges critical for diagnosing iron deficiency. SHAP analysis revealed Sex, Mean Corpuscular Hemoglobin, and Red Cell Distribution Width as the most influential predictors, consistent with iron-restricted erythropoiesis. + ML models based solely on routine hemogram data provide a reliable, zero-cost screening approach for iron deficiency. The integration of explainable AI enhances clinical credibility and supports implementation as an accessible decision support tool. + © 2026. The Author(s). + + + + Us + Ramazan Berk + RB + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. berkus62@gmail.com. + + + + Panatli + Oguzhan + O + + Department of Biomedical Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + Department of Computer Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + + Bozkürk + Mine Büşra + MB + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Öztürk + Atakan + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Sağlam + Suadiye + S + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Kösem + Arzu + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Öztürk + Alpaslan + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Bostanci + Gazi Erkan + GE + + Department of Computer Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + Clinical decision support systems + Complete blood count + Explainable artificial intelligence + Ferritin + Iron deficiency + SHAP + + Declarations. Ethics approval and consent to participate: The study protocol was approved by the Ankara Etlik City Hospital Ethics Committee (Approval No: AEŞH-BADEK1-2025-032, Date: 02/07/2025) and was conducted in accordance with the principles of the Declaration of Helsinki. Informed consent was obtained from all participants prior to inclusion in the study. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 6 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 35 + + + aheadofprint + + 42215930 + 10.1186/s12911-026-03601-2 + 10.1186/s12911-026-03601-2 + + +
+ + + 42215875 + + 2026 + 05 + 29 + +
+ + 1480-9222 + + + 2026 + May + 29 + + + Biological procedures online + Biol Proced Online + + A novel prognostic model based on MVIRGs identifies ANGPT2 as a key target driving the malignant progression of HCC. + 10.1186/s12575-026-00347-z + + Hepatocellular carcinoma (HCC) is a highly lethal malignancy with high recurrence and limited therapies. Microvascular invasion (MVI) is a critical prognostic factor, but its molecular mechanisms and precise predictive tools are lacking. This study aimed to identify key MVI-associated genes (MVIRGs), develop a prognostic model, and elucidate the role of ANGPT2 in HCC progression and therapeutic responses. + Machine learning on multi-cohort data (TCGA, ICGC) identified MVIRGs and constructed a prognostic model. ANGPT2, the core oncogenic MVIRG, was validated clinically (IHC) and functionally (in vitro and in vivo). We analyzed its association with the tumor immune microenvironment (TIME), immune checkpoint inhibitors (ICIs), and drug sensitivity. + A powerful six-MVIRG prognostic model was developed, with ANGPT2 identified as the sole oncogenic gene. Clinically, ANGPT2 was significantly overexpressed, correlating strongly with aggressive features like MVI, vascular invasion, and advanced stages, serving as a robust poor prognostic biomarker for OS and PFS. Functionally, ANGPT2 knockdown significantly inhibited HCC cell growth and migration in vitro, and inhibited tumor growth in vivo. Bioinformatics revealed ANGPT2 fosters an immunosuppressive TIME, upregulating immune checkpoints (e.g., PD-L1) to mediate resistance to ICIs. High ANGPT2 expression showed a differential drug response: resistance to targeted therapies (e.g., EGFR-TKIs) but paradoxically increased sensitivity to chemotherapies (e.g., docetaxel, paclitaxel). + This study constructed a powerful MVIRG model and identified ANGPT2 as a core oncogenic molecule. ANGPT2 drives HCC progression, mediates immune resistance, and differentially regulates drug sensitivity, making it a key biomarker for prognosis and treatment guidance. + © 2026. The Author(s). + + + + Li + Xian + X + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Tan + Zhouli + Z + + The Fifth School of Clinical Medicine, Anhui Medical University, Hefei, China. + + + Navy Clinical College, Anhui Medical University, Beijing, China. + + + + Feng + Shanru + S + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Yu + Qiang + Q + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Zhou + Jian + J + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Fan + Jia + J + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Xu + Yang + Y + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. xuyangdoctor@163.com. + + + + eng + + + 82073272 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Biol Proced Online + 100963717 + 1480-9222 + + + ANGPT2 + Hepatocellular carcinoma + MVIRGs + Microvascular invasion + Prognostic model + + Declarations. Ethics approval and consent to participate: Ethical approval was provided by the Ethics Committee of Zhongshan Hospital, and written informed consent was obtained from each patient (Approval number: No. Y2020-374). All animal experiments involved in this study were reviewed and approved by the Ethics Committee of Zhongshan Hospital, Fudan University, Xiamen Hospital (Approval number: No. Y2024-021). We confirm that all experiments were performed in accordance with the approved protocols and all relevant guidelines and regulations for the care and use of laboratory animals. Regarding the tumor burden, the maximum tumor size/burden permitted by our Ethics Committee/IRB is a tumor volume not exceeding 2000 mm3 or a longest tumor diameter not exceeding 2.0 cm. We confirm that this maximum permitted tumor size/burden was not exceeded at any point during the study. Clinical trial number: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 31 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 33 + + + aheadofprint + + 42215875 + 10.1186/s12575-026-00347-z + 10.1186/s12575-026-00347-z + + +
+ + + 42215857 + + 2026 + 05 + 29 + +
+ + 1471-2164 + + + 2026 + May + 30 + + + BMC genomics + BMC Genomics + + PRIME: An evaluation framework for protein representation inference and generalization in viral mutation space. + 10.1186/s12864-026-12976-5 + + Protein language models (PLMs) have revolutionized protein fitness prediction, yet their application to rapidly evolving viral pathogens is often confounded by extreme sequence homology. This homology leads to "data leakage" in standard random validation splits, yielding inflated performance metrics that fail to translate into real-world biosurveillance utility. + We present Protein Representation Inference for Mutation Evaluation (PRIME), a framework that integrates domain-specific fine-tuning with a rigorous position-stratified validation protocol to evaluate viral threats. Using a dataset of 347,432 SARS-CoV-2 receptor binding domain (RBD) sequences, we demonstrate that while random training data split yields deceptive R2 values (> 0.90), they fail to generalize to novel mutational sites. By benchmarking models up to 650 M parameters, we show that domain-specific fine-tuning of the ESM-C 600 M model with correctly stratified data provides an initial demonstration of predictive signal for binding affinity and expression at unseen mutational sites of binding affinity and expression on unseen sites (R2 ~0.23), a significant advancement over base foundation models which exhibit no predictive power (R2 <0). PRIME's embedding-based clustering identified 3.03% of bat coronavirus sequences as candidates for further experimental prioritization based on their functional similarity to human-infective strains in embedding space, offering a perspective complementary to traditional phylogenetic methods. + PRIME establishes a new benchmark for the application of PLMs in pathogen surveillance. Our findings demonstrate that state-of-the-art models and fine-tuning, when paired with stratified validation, provide biologically meaningful insights into pathogen evolution and zoonotic risk. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Gibson + Kaetlyn + K + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Li + Po-E + PE + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Li + Valerie + V + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Dix + Martha + M + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Hung + Li-Wei + LW + + Biochemistry and Biotechnology Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Stelle + George Widgery + GW + + Applied Computer Science Group, Computer, Computational and Statistical Sciences Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Babinski + Michal + M + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Chain + Patrick + P + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Hu + Bin + B + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. bhu@lanl.gov. + + + + eng + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + + Journal Article + + + 2026 + 05 + 30 + +
+ + England + BMC Genomics + 100965258 + 1471-2164 + + IM + + Biosurveillance + Gomology leakage + Host tropism prediction + Machine learning efficiency + Model fine-tuning + Phenotype prediction + Position-stratified validation + Protein language models + + Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 12 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 32 + + + aheadofprint + + 42215857 + 10.1186/s12864-026-12976-5 + 10.1186/s12864-026-12976-5 + + +
+ + + 42215832 + + 2026 + 05 + 29 + +
+ + 1573-6822 + + + 2026 + May + 29 + + + Cell biology and toxicology + Cell Biol Toxicol + + Integrative multi-omics, machine learning, and experimental validation reveal that TPM1 suppresses M2 macrophage polarization and enhances chemosensitivity in acute myeloid leukemia. + 10.1007/s10565-026-10201-3 + + Acute myeloid leukemia (AML) remains a therapeutic challenge due to chemoresistance and immunosuppression. This study aimed to discover novel regulatory mechanisms in AML pathogenesis. + Integrative transcriptomic (GSE30029) and proteomic (PXD008378) analyses with machine learning (LASSO, SVM-RFE, random forest) were performed to identify core AML regulators. Functional validation was conducted in AML cell lines (HL-60, NB4), including cell proliferation and apoptosis assays, cytarabine (Ara-C) sensitivity testing, and a subcutaneous xenograft model. Macrophage polarization was evaluated in co-culture systems. Molecular mechanisms were explored via MeRIP, RIP, and mRNA stability assays. + Tropomyosin 1 (TPM1) was identified as a potential key factor in AML. TPM1 was downregulated in AML tissues and cells. TPM1 overexpression inhibited AML cell proliferation, promoted apoptosis and oxidative stress, and enhanced sensitivity to Ara-C. Furthermore, TPM1 upregulation attenuated M2 macrophage polarization. Mechanistically, the m6A eraser fat mass and obesity-associated protein (FTO) destabilized TPM1 mRNA in an m6A-dependent manner. Downregulation of TPM1 reversed the effects of FTO depletion on AML cell proliferation, Ara-C sensitivity, and M2 macrophage polarization. + This study unveils a novel FTO/m6A/TPM1 axis that coordinately governs AML cell growth, chemosensitivity, and macrophage polarization, highlighting it as a promising therapeutic target. + © 2026. The Author(s). + + + + Li + Yue + Y + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + Wei + Baosheng + B + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + Hu + Liuping + L + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. huhuliuping@163.com. + + + + Du + Yuzhen + Y + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Switzerland + Cell Biol Toxicol + 8506639 + 0742-2091 + + IM + + Acute myeloid leukemia + Chemosensitivity + M6A eraser + Macrophage polarization + Tropomyosin 1 + + Declarations. Ethics approval: The present study was approved by the ethical review committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine with approval No.20250222. Written informed consent was obtained from all enrolled patients. Human study: This study was carried out in strict accordance with the relevant regulations and requirements of the Declaration of Helsinki. Written informed consents were obtained from all participants and this study was permitted by the Ethics Committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine. Animal study: The procedures performed on all animals complied with the standards formulated by the Experimental Animal Ethics Committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine and obtained the approval of the said committee. Conflicts of interest: The authors declare no competing interests. Clinical trial number: Not applicable +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 31 + + + 2026 + 4 + 23 + + + 2026 + 5 + 29 + 23 + 26 + + + aheadofprint + + 42215832 + 10.1007/s10565-026-10201-3 + 10.1007/s10565-026-10201-3 + + +
+ + + 42215825 + + 2026 + 05 + 29 + +
+ + 1618-1905 + + + 2026 + May + 30 + + + International microbiology : the official journal of the Spanish Society for Microbiology + Int Microbiol + + Gut microbial alterations and functional shifts in patients with hypertriglyceridemia: insights from a northwestern Chinese metagenomic study. + 10.1007/s10123-026-00845-w + + Although hypertriglyceridemia (HTG) is a significant contributor to lipid-associated pathologies such as atherosclerotic cardiovascular disease, its regulation by host‒microbiome interactions remain insufficiently characterized. While the gut microbiota (GM) is known to influence cholesterol metabolism, its specific role in systemic triglyceride (TG) homeostasis, particularly in non-Western populations, is poorly defined. This study aimed to identify preliminary robust GM signatures associated with HTG and to assess their translational potential using integrated multiomics and explainable machine learning approaches. In a cross-sectional investigation of 50 well-phenotyped adults from Northwest China, we combined 16S rRNA sequencing, shotgun metagenomics, and ensemble machine learning (LightGBM/XGBoost) to elucidate the associations between the GM and TGs. Microbial features were rigorously linked to serum lipid profiles through dual-algorithm validation and SHAP interpretability analysis, while functional potential was assessed via KEGG pathway mapping. Subjects with HTG exhibited a distinct gut microbial configuration, marked by consistent enrichment of Faecalibacterium and Bacteroides coprocola (positively correlated with serum TG levels) and depletion of Bifidobacterium pseudocatenulatum and Lactobacillus salivarius (inversely correlated). Machine learning converged on five exploratory consensus biomarker taxa, three of which were independently confirmed by LEfSe analysis (Faecalibacterium). Functional profiling further revealed the upregulation of microbial starch and sucrose metabolism pathways in the HTG cohort. Our findings establish a preliminary gut microbial signature for HTG patients and suggest context‑dependent associations of butyrate-producing taxa such as Faecalibacterium. By integrating multiomics with explainable artificial intelligence, this work addresses key challenges in reproducibility and mechanistic inference in microbiome research. These results pave the way for novel microbiota-targeted therapeutic strategies, including precision probiotics and dietary interventions, to modulate lipid metabolism, pending further validation in expanded cohorts and functional studies. + © 2026. The Author(s). + + + + Lv + Jing + J + + Department of Clinical Laboratory, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Wang + Ji-Han + JH + + Yan'an Medical College of Yan'an University, Yan'an, Shaanxi, 716000, China. + + + + Wang + Yang-Yang + YY + + School of Physics and Electronic Information, Yan'an University, Yan'an, Shaanxi, 716000, China. + + + + Huang + Jing + J + + Department of Clinical Pharmacy, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Chen + Fen-Rong + FR + + Department of Gastroenterology, The Second Affiliated Hospital of Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710000, China. + + + + Fang + Sa + S + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Wang + Xiao-Juan + XJ + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Li + Zi-Tong + ZT + + Department of Spine Surgery, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Shi + Yu-Peng + YP + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. xjshiyupeng@163.com. + + + + Guo + Lei + L + + Department of Spine Surgery, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. guolei0711@163.com. + + + + eng + + + 2025JC-YBMS-916 + Shaanxi Natural Science Foundation of China + + + + No. 81702067 and 82560411 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 30 + +
+ + Switzerland + Int Microbiol + 9816585 + 1139-6709 + + IM + + Biomarker + Gut microbiota + Hypertriglyceridemia + Machine learning + Triglyceride + + Declarations. Competing interests: The authors declare no competing interests. Consent to participate: Informed consent was provided by all recruited subjects prior to the study. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 18 + + + 2026 + 5 + 22 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 23 + 26 + + + aheadofprint + + 42215825 + 10.1007/s10123-026-00845-w + 10.1007/s10123-026-00845-w + + + + The Writing Committee Of The Report On Cardiovascular Health And Diseases In China (2022) Key points of Report on Cardiovascular Health and Diseases in China 2021. Chin J Cardiovasc Res, 20(7): 577–596 + + + An HM et al (2011) Antiobesity and lipid-lowering effects of Bifidobacterium spp. in high fat diet-induced obese rats. Lipids Health Dis 10:116 + + 21745411 + 10.1186/1476-511X-10-116 + + + + Association LM et al (2022) China guideline for clinical lipid profile testing. Chin J Lab Med 45(10):1017–1033 + + + Bäckhed F et al (2004) The gut microbiota as an environmental factor that regulates fat storage. Proc Natl Acad Sci USA 101(44):15718–15723 + + 15505215 + 524219 + 10.1073/pnas.0407076101 + + + + Bäckhed F, Manchester JK, Semenkovich CF, Gordon JI (2007) Mechanisms underlying the resistance to diet-induced obesity in germ-free mice. Proc Natl Acad Sci USA 104(3):979–984 + + 17210919 + 1764762 + 10.1073/pnas.0605374104 + + + + Bell JA et al (2021) Sex differences in systemic metabolites at four life stages: cohort study with repeated metabolomics. BMC Med 19(1):58 + + 33622307 + 7903597 + 10.1186/s12916-021-01929-2 + + + + Beserra BT et al (2015) A systematic review and meta-analysis of the prebiotics and synbiotics effects on glycaemia, insulin concentrations and lipid parameters in adult patients with overweight or obesity. Clin Nutr 34(5):845–858 + + 25456608 + 10.1016/j.clnu.2014.10.004 + + + + Bezirtzoglou E, Stavropoulou E (2011) Immunology and probiotic impact of the newborn and young children intestinal microflora. Anaerobe 17(6):369–374 + + 21515397 + 10.1016/j.anaerobe.2011.03.010 + + + + Bishehsari F, Voigt RM, Keshavarzian A (2020) Circadian rhythms and the gut microbiota: from the metabolic syndrome to cancer. Nat Rev Endocrinol 16(12):731–739 + + 33106657 + 8085809 + 10.1038/s41574-020-00427-4 + + + + Bondia-Pons I et al (2014) Metabolome and fecal microbiota in monozygotic twin pairs discordant for weight: a Big Mac challenge. FASEB journal: official publication Federation Am Soc Experimental Biology 28(9):4169–4179 + + 10.1096/fj.14-250167 + + + + Borén J et al (2020) Low-density lipoproteins cause atherosclerotic cardiovascular disease: pathophysiological, genetic, and therapeutic insights: a consensus statement from the European Atherosclerosis Society Consensus Panel. Eur Heart J 41(24):2313–2330 + + 32052833 + 7308544 + 10.1093/eurheartj/ehz962 + + + + Brischetto CS, Connor WE, Connor SL, Matarazzo JD (1983) Plasma lipid and lipoprotein profiles of cigarette smokers from randomly selected families: enhancement of hyperlipidemia and depression of high-density lipoprotein. Am J Cardiol 52(7):675–680 + + 6624657 + 10.1016/0002-9149(83)90396-X + + + + Buck GM, Sever LE, Batt RE, Mendola P (1997) Life-style factors and female infertility. Epidemiology 8(4):435–441 + + 9209860 + 10.1097/00001648-199707000-00015 + + + + Cano PG, Santacruz A, Trejo FM, Sanz Y (2013) Bifidobacterium CECT 7765 improves metabolic and immunological alterations associated with obesity in high-fat diet-fed mice. Obesity 21(11):2310–2321 + + 23418126 + 10.1002/oby.20330 + + + + Castaner O et al (2018a) The Gut Microbiome Profile in Obesity: A Systematic Review. International journal of endocrinology, 2018 + + + Castaner O et al (2018b) The Gut Microbiome Profile in Obesity: A Systematic Review. International journal of endocrinology, 2018: 4095789 + + + Chang CC, Liu TC, Lu CJ, Chiu HC, Lin WN (2023) Machine learning strategy for identifying altered gut microbiomes for diagnostic screening in myasthenia gravis. Front Microbiol 14:1227300 + + 37829445 + 10565662 + 10.3389/fmicb.2023.1227300 + + + + Cheng Z et al (2020) Revealing the Variation and Stability of Bacterial Communities in Tomato Rhizosphere Microbiota. Microorganisms, 8(2) + + + Cole JR et al (2014) Ribosomal Database Project: data and tools for high throughput rRNA analysis. Nucleic Acids Res 42(D1):D633–D642 + + 24288368 + 10.1093/nar/gkt1244 + + + + Comertpay B, Gov E (2025) Multiomics Analysis and Machine Learning-based Identification of Molecular Signatures for Diagnostic Classification in Liver Disease Types Along the Microbiota-gut-liver Axis. J Clin Exp Hepatol 15(5):102552 + + 40292334 + 12019836 + 10.1016/j.jceh.2025.102552 + + + + Cotillard A et al (2013) Dietary intervention impact on gut microbial gene richness. Nature 500(7464):585–588 + + 23985875 + 10.1038/nature12480 + + + + Cui Y, Li S, Yin Y, Li X, Li X (2022) Daytime restricted feeding promotes circadian desynchrony and metabolic disruption with changes in bile acids profiles and gut microbiota in C57BL/6 Male Mice. J Nutr Biochem 109:109121 + + 35940511 + 10.1016/j.jnutbio.2022.109121 + + + + de la Cuesta-Zuluaga J et al (2019) Age- and Sex-Dependent Patterns of Gut Microbial Diversity in Human Adults. mSystems, 4(4) + + + Dominguez-Bello MG, Blaser MJ, Ley RE, Knight R (2011) Development of the Human Gastrointestinal Microbiota and Insights From High-Throughput Sequencing. Gastroenterology 140(6):1713–1719 + + 21530737 + 10924805 + 10.1053/j.gastro.2011.02.011 + + + + Edgar RC (2013) UPARSE: highly accurate OTU sequences from microbial amplicon reads. Nat Methods 10(10):996–998 + + 23955772 + 10.1038/nmeth.2604 + + + + Esan O, Wierzbicki AS (2021) Triglycerides and cardiovascular disease. Curr Opin Cardiol 36(4):469–477 + + 33797418 + 10.1097/HCO.0000000000000862 + + + + Ference BA et al (2019) Association of Triglyceride-Lowering LPL Variants and LDL-C-Lowering LDLR Variants With Risk of Coronary Heart Disease. JAMA 321(4):364–373 + + 30694319 + 6439767 + 10.1001/jama.2018.20045 + + + + Fernandes V, Santos MJ, Perez A (2016) Statin-related myotoxicity. Endocrinol Nutr 63(5):239–249 + + 27005745 + 10.1016/j.endonu.2016.01.001 + + + + Fernández-Friera L et al (2017) Normal LDL-Cholesterol Levels Are Associated With Subclinical Atherosclerosis in the Absence of Risk Factors. J Am Coll Cardiol 70(24):2979–2991 + + 29241485 + 10.1016/j.jacc.2017.10.024 + + + + Franzosa EA et al (2014) Relating the metatranscriptome and metagenome of the human gut. Proc Natl Acad Sci USA 111(22):E2329–E2338 + + 24843156 + 4050606 + 10.1073/pnas.1319284111 + + + + Fu JY et al (2015) The Gut Microbiome Contributes to a Substantial Proportion of the Variation in Blood Lipids. Circul Res 117(9):817–824 + + 10.1161/CIRCRESAHA.115.306807 + + + + Gao NN et al (2016) Dyslipidemia in rural areas of North China: prevalence, characteristics, and predictive value. Lipids Health Dis 15:9 + + 10.1186/s12944-016-0328-y + + + + Garcia-Giustiniani D, Stein R (2016) Genet Dyslipidemia Arq Bras Cardiol 106(5):434–438 + + + Ghazalpour A, Cespedes I, Bennett BJ, Allayee H (2016) Expanding role of gut microbiota in lipid metabolism. Curr Opin Lipidol 27(2):141–147 + + 26855231 + 5125441 + 10.1097/MOL.0000000000000278 + + + + Gorden DL et al (2015) Biomarkers of NAFLD progression: a lipidomics approach to an epidemic. J Lipid Res 56(3):722–736 + + 25598080 + 4340319 + 10.1194/jlr.P056002 + + + + Gordon DJ et al (1987) Seasonal cholesterol cycles: the Lipid Research Clinics Coronary Primary Prevention Trial placebo group. Circulation 76(6):1224–1231 + + 3315294 + 10.1161/01.CIR.76.6.1224 + + + + Guo L et al (2022) Associations of gut microbiota with dyslipidemia based on sex differences in subjects from Northwestern China. World J Gastroenterol 28(27):3455–3475 + + 36158270 + 9346449 + 10.3748/wjg.v28.i27.3455 + + + + Han K et al (2023) Extension Region Domain of Soybean 7S Globulin Contributes to Serum Triglyceride-Lowering Effect via Modulation of Bile Acids Homeostasis. Mol Nutr Food Res 67(17):e2200883 + + 37423975 + 10.1002/mnfr.202200883 + + + + Hendijani F, Akbari V (2018) Probiotic supplementation for management of cardiovascular risk factors in adults with type II diabetes: A systematic review and meta-analysis. Clin Nutr 37(2):532–541 + + 28318686 + 10.1016/j.clnu.2017.02.015 + + + + Huang YJ, Ke W, Hu L, Wei YD, Dong MX (2023) Liquid chromatography-mass spectrometry-based metabolomic profiling reveals sex differences of lipid metabolism among the elderly from Southwest China. BMC Geriatr 23(1):156 + + 36944918 + 10031952 + 10.1186/s12877-023-03897-z + + + + Huang Z et al (2025) The synergistic role of gut microbiota and RNA in metabolic diseases: mechanisms and therapeutic insights. Front Microbiol 16:1504395 + + 39944642 + 11814227 + 10.3389/fmicb.2025.1504395 + + + + Ingelsson E et al (2007) Clinical utility of different lipid measures for prediction of coronary heart disease in men and women. JAMA 298(7):776–785 + + 17699011 + 10.1001/jama.298.7.776 + + + + Jasirwan COM, Lesmana CRA, Hasan I, Sulaiman AS, Gani RA (2019) The role of gut microbiota in non-alcoholic fatty liver disease: pathways of mechanisms. Biosci Microbiota Food Health 38(3):81–88 + + 31384519 + 6663510 + 10.12938/bmfh.18-032 + + + + Jellinger PS, American Association Of Clinical Endocrinologists And American College Of Endocrinology Guidelines For Management Of Dyslipidemia And Prevention Of Cardiovascular Disease - Executive Summary (2017) Endocr practice: official J Am Coll Endocrinol Am Association Clin Endocrinologists 23(4):479–497 + + 10.4158/EP171764.GL + + + + Kakiyama G et al (2013) Modulation of the fecal bile acid profile by gut microbiota in cirrhosis. J Hepatol 58(5):949–955 + + 23333527 + 3936319 + 10.1016/j.jhep.2013.01.003 + + + + Kim S et al (2020a) Akkermansia muciniphila Prevents Fatty Liver Disease, Decreases Serum Triglycerides, and Maintains Gut Homeostasis. Appl Environ Microbiol, 86(7) + + + Kim YS, Unno T, Kim BY, Park MS (2020b) Sex Differences in Gut Microbiota. World J Mens Health 38(1):48–60 + + 30929328 + 10.5534/wjmh.190009 + + + + Kindt A et al (2018) The gut microbiota promotes hepatic fatty acid desaturation and elongation in mice. Nat Commun 9(1):3760 + + 30218046 + 6138742 + 10.1038/s41467-018-05767-4 + + + + Klempfner R et al (2016) Elevated Triglyceride Level Is Independently Associated With Increased All-Cause Mortality in Patients With Established Coronary Heart Disease: Twenty-Two-Year Follow-Up of the Bezafibrate Infarction Prevention Study and Registry. Circ Cardiovasc Qual Outcomes 9(2):100–108 + + 26957517 + 10.1161/CIRCOUTCOMES.115.002104 + + + + Koh A, De Vadder F, Kovatcheva-Datchary P, Bäckhed F (2016) From Dietary Fiber to Host Physiology: Short-Chain Fatty Acids as Key Bacterial Metabolites. Cell 165(6):1332–1345 + + 27259147 + 10.1016/j.cell.2016.05.041 + + + + Kokkinos PF, Fernhall B (1999) Physical activity and high density lipoprotein cholesterol levels: what is the relationship? Sports Med 28(5):307–314 + + 10593643 + 10.2165/00007256-199928050-00002 + + + + Law MR, Wald NJ, Rudnicka AR (2003) Quantifying effect of statins on low density lipoprotein cholesterol, ischaemic heart disease, and stroke: systematic review and meta-analysis. Br Med J 326(7404):1423–1427 + + 10.1136/bmj.326.7404.1423 + + + + Le Chatelier E et al (2013) Richness of human gut microbiome correlates with metabolic markers. Nature 500(7464):541–546 + + 23985870 + 10.1038/nature12506 + + + + Lee H et al (2020) Association of four lipid components with mortality, myocardial infarction, and stroke in statin-naïve young adults: A nationwide cohort study. Eur J Prev Cardiol 27(8):870–881 + + 32013600 + 10.1177/2047487319898571 + + + + Lim GB (2016) Dyslipidaemia: Balancing the benefits and risks of statin therapy. Nat Rev Cardiol 13(11):632–633 + + 27681574 + 10.1038/nrcardio.2016.164 + + + + Liu H et al (2018) Astaxanthin Prevents Alcoholic Fatty Liver Disease by Modulating Mouse Gut Microbiota. Nutrients, 10(9) + + + Lv J et al (2023) Alterations of gut microbiota are associated with blood pressure: a cross-sectional clinical trial in Northwestern China. J translational Med 21(1):429 + + 10.1186/s12967-023-04176-6 + + + + Mach F et al (2020) 2019 ESC/EAS Guidelines for the management of dyslipidaemias: lipid modification to reduce cardiovascular risk. Eur Heart J 41(1):111–188 + + 31504418 + 10.1093/eurheartj/ehz455 + + + + Management JC o.t.C.G.f.L., 2023. Chinese guidelines for lipid management (2023). Chin J Cardiol, 51(3): 221–255 + + + Marques FZ et al (2019) Guidelines for Transparency on Gut Microbiome Studies in Essential and Experimental Hypertension. Hypertension (Dallas, Tex.: 1979), 74(6): 1279–1293 + + + Matey-Hernandez ML et al (2018) Genetic and microbiome influence on lipid metabolism and dyslipidemia. Physiol Genom 50(2):117–126 + + 10.1152/physiolgenomics.00053.2017 + + + + Meikle PJ, Wong G, Barlow CK, Kingwell BA (2014) Lipidomics: potential role in risk prediction and therapeutic monitoring for diabetes and cardiovascular disease. Pharmacol Ther 143(1):12–23 + + 24509229 + 10.1016/j.pharmthera.2014.02.001 + + + + Morales C et al (2022) Characterization of microbial communities from gut microbiota of hypercholesterolemic and control subjects. Front Cell Infect Microbiol 12:943609 + + 36523636 + 9745040 + 10.3389/fcimb.2022.943609 + + + + Moszak M, Szulińska M, Bogdańsk P (2020) You Are What You Eat-The Relationship between Diet, Microbiota, and Metabolic Disorders-A Review. Nutrients 12(4):1096 + + 32326604 + 7230850 + 10.3390/nu12041096 + + + + Nichols GA, Philip S, Reynolds K, Granowitz CB, Fazio S (2018) Increased Cardiovascular Risk in Hypertriglyceridemic Patients With Statin-Controlled LDL Cholesterol. J Clin Endocrinol Metab 103(8):3019–3027 + + 29850861 + 10.1210/jc.2018-00470 + + + + Nogal A, Valdes AM, Menni C (2021) The role of short-chain fatty acids in the interplay between gut microbiota and diet in cardio-metabolic health. Gut Microbes 13(1):1–24 + + 33764858 + 8007165 + 10.1080/19490976.2021.1897212 + + + + Novielli P et al (2024) Explainable artificial intelligence for microbiome data analysis in colorectal cancer biomarker identification. Front Microbiol 15:1348974 + + 38426064 + 10901987 + 10.3389/fmicb.2024.1348974 + + + + O’Doherty AF, Jones HS, Sathyapalan T, Ingle L, Carroll S (2017) The Effects of Acute Interval Exercise and Strawberry Intake on Postprandial Lipemia. Med Sci Sports Exerc 49(11):2315–2323 + + 29045326 + 10.1249/MSS.0000000000001341 + + + + Oliphant K, Allen-Vercoe E (2019) Macronutrient metabolism by the human gut microbiome: major fermentation by-products and their impact on host health. Microbiome 7:15 + + 10.1186/s40168-019-0704-8 + + + + Org E et al (2015) Genetic and environmental control of host-gut microbiota interactions. Genome Res 25(10):1558–1569 + + 26260972 + 4579341 + 10.1101/gr.194118.115 + + + + Organization WH (2025) Obesity and overweight Fact Sheet. Available from: https://www.who.int/news-room/fact-sheets/detail/obesity-and-overweight + + + Pan L et al (2016) The prevalence, awareness, treatment and control of dyslipidemia among adults in China. Atherosclerosis 248:2–9 + + 26978581 + 10.1016/j.atherosclerosis.2016.02.006 + + + + Plaza-Diaz J (2020) Nutrition, Microbiota and Noncommunicable Diseases. Nutrients 12(7):4 + + 10.3390/nu12071971 + + + + Qin JJ et al (2010) A human gut microbial gene catalogue established by metagenomic sequencing. Nature 464(7285):59–65 + + 20203603 + 3779803 + 10.1038/nature08821 + + + + Rabot S et al (2010) Germ-free C57BL/6J mice are resistant to high-fat-diet-induced insulin resistance and have altered cholesterol metabolism. FASEB journal: official publication Federation Am Soc Experimental Biology 24(12):4948–4959 + + + Raposeiras-Roubin S et al (2021) Triglycerides and Residual Atherosclerotic Risk. J Am Coll Cardiol 77(24):3031–3041 + + 34140107 + 8215641 + 10.1016/j.jacc.2021.04.059 + + + + Razavi AC, Potts KS, Kelly TN, Bazzano LA (2019) Sex, gut microbiome, and cardiovascular disease risk. Biol Sex Differ 10:14 + + 10.1186/s13293-019-0240-z + + + + Ridaura VK et al (2013) Gut Microbiota from Twins Discordant for Obesity Modulate Metabolism in Mice. Science 341(6150):1079–U49 + + 10.1126/science.1241214 + + + + Rinninella E et al (2019) What is the Healthy Gut Microbiota Composition? A Changing Ecosystem across Age, Environment, Diet, and Diseases. Microorganisms 7(1):22 + + 10.3390/microorganisms7010014 + + + + Riva A et al (2017) Pediatric obesity is associated with an altered gut microbiota and discordant shifts in Firmicutes populations. Environ Microbiol 19(1):95–105 + + 27450202 + 10.1111/1462-2920.13463 + + + + Rodriguez J, Delzenne NM (2021) Modulation of the gut microbiota-adipose tissue-muscle interactions by prebiotics. J Endocrinol 249(1):R1–R23 + + 33502337 + 10.1530/JOE-20-0499 + + + + Ruscica M et al (2019) Nutraceutical approach for the management of cardiovascular risk - a combination containing the probiotic Bifidobacterium longum BB536 and red yeast rice extract: results from a randomized, double-blind, placebo-controlled study. Nutr J 18(1):13 + + 30795775 + 6387491 + 10.1186/s12937-019-0438-2 + + + + Rynazal R et al (2023) Leveraging explainable AI for gut microbiome-based colorectal cancer classification. Genome Biol 24(1):21 + + 36759888 + 9912568 + 10.1186/s13059-023-02858-4 + + + + Schloissnig S et al (2013) Genomic variation landscape of the human gut microbiome. Nature 493(7430):45–50 + + 23222524 + 10.1038/nature11711 + + + + Schoeler M, Caesar R (2019) Dietary lipids, gut microbiota and lipid metabolism. Rev Endocr Metab Disord 20(4):461–472 + + 31707624 + 6938793 + 10.1007/s11154-019-09512-0 + + + + Seganfredo FB et al (2017) Weight-loss interventions and gut microbiota changes in overweight and obese patients: a systematic review. Obes reviews: official J Int Association Study Obes 18(8):832–851 + + 10.1111/obr.12541 + + + + Shimizu M, Hashiguchi M, Shiga T, Tamura H-o, Mochizuki M (2015) Meta-Analysis: Effects of Probiotic Supplementation on Lipid Profiles in Normal to Mildly Hypercholesterolemic Individuals. PloS one, 10(10) + + + Song D, Yang CS, Zhang X, Wang Y (2021) The relationship between host circadian rhythms and intestinal microbiota: A new cue to improve health by tea polyphenols. Crit Rev Food Sci Nutr 61(1):139–148 + + 31997655 + 10.1080/10408398.2020.1719473 + + + + Song PK et al (2019) Trends in Lipids Level and Dyslipidemia among Chinese Adults, 2002–2015. Biomed Environ Sci: BES 32(8):559–570 + + 31488232 + + + + Taskinen MR et al (1987) Alcohol-induced changes in serum lipoproteins and in their metabolism. Am Heart J 113(2 Pt 2):458–464 + + 3544760 + 10.1016/0002-8703(87)90614-4 + + + + Thompson PD, Panza G, Zaleski A, Taylor B (2016) Statin-Associated Side Effects. J Am Coll Cardiol 67(20):2395–2410 + + 27199064 + 10.1016/j.jacc.2016.02.071 + + + + Tomaro-Duchesneau C et al (2014) Effect of orally administered L. fermentum NCIMB 5221 on markers of metabolic syndrome: an in vivo analysis using ZDF rats. Appl Microbiol Biotechnol 98(1):115–126 + + 24121931 + 10.1007/s00253-013-5252-8 + + + + Turnbaugh PJ et al (2009) A core gut microbiome in obese and lean twins. Nature 457(7228):480–U7 + + 19043404 + 10.1038/nature07540 + + + + Turnbaugh PJ et al (2007) Hum Microbiome Project Nat 449(7164):804–810 + + + Turnbaugh PJ et al (2006) An obesity-associated gut microbiome with increased capacity for energy harvest. Nature 444(7122):1027–1031 + + 17183312 + 10.1038/nature05414 + + + + Uranga AP, Levine J, Jensen M (2005) Isotope tracer measures of meal fatty acid metabolism: reproducibility and effects of the menstrual cycle. Am J Physiol Endocrinol Metab 288(3):E547–E555 + + 15507534 + 10.1152/ajpendo.00340.2004 + + + + Velagapudi VR et al (2010) The gut microbiota modulates host energy and lipid metabolism in mice. J Lipid Res 51(5):1101–1112 + + 20040631 + 10.1194/jlr.M002774 + + + + Vergès B (2015) Pathophysiology of diabetic dyslipidaemia: where are we? Diabetologia 58(5):886–899 + + 25725623 + 4392164 + 10.1007/s00125-015-3525-8 + + + + Vital M, Karch A, Pieper DH (2017) Colonic Butyrate-Producing Communities in Humans: an Overview Using Omics Data. mSystems, 2(6) + + + Vítek L, Haluzík M (2016) The role of bile acids in metabolic regulation. J Endocrinol 228(3):R85–R96 + + 26733603 + 10.1530/JOE-15-0469 + + + + Vojinovic D et al (2019) Relationship between gut microbiota and circulating metabolites in population-based cohorts. Nat Commun 10(1):5813 + + 31862950 + 6925111 + 10.1038/s41467-019-13721-1 + + + + Wang F et al (2018) Perilla Oil Supplementation Improves Hypertriglyceridemia and Gut Dysbiosis in Diabetic KKAy Mice. Mol Nutr Food Res 62(24):e1800299 + + 30358922 + 6646911 + 10.1002/mnfr.201800299 + + + + Wang H et al (2023) Probio-X Relieves Symptoms of Hyperlipidemia by Regulating Patients’ Gut Microbiome, Blood Lipid Metabolism, and Lifestyle Habits. Microbiol Spectr 11(3):e0444022 + + 37022264 + 10269629 + 10.1128/spectrum.04440-22 + + + + Wang LX, Liu K, Gao DW, Hao JK (2013) Protective effects of two Lactobacillus plantarum strains in hyperlipidemic mice. World J Gastroenterol 19(20):3150–3156 + + 23716997 + 3662957 + 10.3748/wjg.v19.i20.3150 + + + + Wu Y, Zhang Q, Ren Y, Ruan Z (2017) Effect of probiotic Lactobacillus on lipid profile: A systematic review and meta-analysis of randomized, controlled trials. PLoS ONE 12(6):e0178868 + + 28594860 + 5464580 + 10.1371/journal.pone.0178868 + + + + Xia M et al (2024) Structural and functional alteration of the gut microbiota in elderly patients with hyperlipidemia. Front Cell Infect Microbiol 14:1333145 + + 38812752 + 11133514 + 10.3389/fcimb.2024.1333145 + + + + Yang DF et al (2023) Acute sleep deprivation exacerbates systemic inflammation and psychiatry disorders through gut microbiota dysbiosis and disruption of circadian rhythms. Microbiol Res 268:127292 + + 36608535 + 10.1016/j.micres.2022.127292 + + + + Yatsunenko T et al (2012) Human gut microbiome viewed across age and geography. Nature 486(7402):222–227 + + 22699611 + 3376388 + 10.1038/nature11053 + + + + Yoo S-R et al (2013) Probiotics L. plantarum and L. curvatus in Combination Alter Hepatic Lipid Metabolism and Suppress Diet-Induced Obesity. Obesity 21(12):2571–2578 + + 23512789 + 10.1002/oby.20428 + + + + Zhao D, Liu J, Wang M, Zhang X, Zhou M (2019) Epidemiology of cardiovascular disease in China: current features and implications. Nat Rev Cardiol 16(4):203–212 + + 30467329 + 10.1038/s41569-018-0119-4 + + + + Zhu Y et al (2025) Machine learning algorithms reveal gut microbiota signatures associated with chronic hepatitis B-related hepatic fibrosis. World J Gastroenterol 31(16):105985 + + 40308807 + 12038523 + 10.3748/wjg.v31.i16.105985 + + + + +
+ + + 42215821 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1550-7416 + + 28 + 4 + + 2026 + May + 29 + + + The AAPS journal + AAPS J + + New Frontiers of Drug Development Through the Use of New Approach Methodologies. + 112 + 10.1208/s12248-026-01263-6 + + On November 2025, AAPS PharmSci 360 convened a symposium that included experts in the application of various types of New Approach Methodologies (NAMs). They shared their experiences and insights on topics that included microphysiological systems (MPS), the use of 3D organoids, and in silico tools. MPS systems were explored from the perspective of their testing and qualification through an academia-industry-government tissue chip testing consortium whose mission is to perform context-of-use-based testing of MPS and conduct comparative evaluations to support the use of MPS systems in safety assessments. 3D organoids were described and insights shared on how and when they may provide an appropriate tool for evaluating drug safety and effectiveness, and their use in supporting personalized medicine. Regarding in silico tools, examples were provided to describe their growing utility in predicting drug toxicity, population variability, and its potential benefits over traditional evidence-based toxicology. These tools include in silico models (e.g., physiologically based pharmacokinetic models), Artificial Intelligence (AI), and Machine Learning (ML) which, unlike other aspects of model informed drug development, reduce reliance on predefined models and allows for the integration of diverse sources of data. Computationally, these tools can generate predictions in hours where it would otherwise have taken weeks or months (and extensive experimentation). Within this meeting report, we highlight the key issues discussed during that symposium and share additional aspects to consider when developing a NAMs-based roadmap for specific contexts of use. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Martinez + M N + MN + 0000-0002-4512-853X + + Food and Drug Administration, Center for Veterinary Medicine, Office of Generic Animal Drugs, CPK1 5001 Campus Drive, College Park, MD, 20740-3835, USA. marilyn.martinez@fda.hhs.gov. + + + + Mochel + J P + JP + 0000-0002-0997-3111 + + Precision One Health Initiative and Biomedical & Translational Sciences Institute (One Health), Diane L. Wynocker Endowed Professor, Athens, GA, USA. + + + + Allenspach + K + K + 0000-0002-2168-5809 + + Precision One Health and Department of Pathology, College of Veterinary Medicine, The University of Georgia, 501 D. W. Brooks Drive, Athens, GA, 30602, USA. + + + + Zdyrski + C + C + 0000-0002-7556-5298 + + Precision One Health and College of Veterinary Medicine, The University of Georgia, 501 D. W. Brooks Drive, Athens, GA, 30602, USA. + + + + Krishna + S + S + 0000-0002-4960-2753 + + Physicians Committee for Responsible Medicine, 5100 Wisconsin Ave., NW, Suite 400, Washington, DC, 20016, USA. + + + + Rusyn + I + I + 0000-0001-9340-7384 + + Department of Veterinary Physiology and Pharmacology, Texas A&M College of Veterinary Medicine & Biomedical Sciences, 4466 TAMU, College Station, TX, 77843, USA. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + United States + AAPS J + 101223209 + 1550-7416 + + IM + + + Drug Development + methods + trends + + + Humans + + + Microphysiological Systems + + + Computer Simulation + + + Organoids + + + Animals + + + Machine Learning + + + Artificial Intelligence + + + + AI + NAMs + PBPK models + organ-on-a-chip + organoid + + Declarations. Disclaimer: The findings and conclusions in this research have not been formally disseminated by the Food and Drug Administration and should not be construed to represent any Agency endorsement, determination, or policy. The mention of commercial products, their sources, or their use in connection with material reported herein is not to be construed as either an actual or implied endorsement of such products by the FDA. Animal Use and Assurances: No animals were used in the writing of this Commentary. A.I. Statement: "No, but part of the graphical abstract had assist from Google AI. This was indicated in the figure.". Conflict of interest: Ivan Rusyn has no conflicts of interest to declare. Jonathan Mochel is a co-founder of 3D Health Solutions Inc., a small biotechnology company specializing in the development of animal-derived organoids for drug testing. Karin Allenspach co-founder of 3D Health Solutions. She serves as a consultant for Ceva Animal Health, Antech Diagnostics, hills, Royal Canin, Purina, and Heel GmbH. Christopher Zdyrski is the Director of Research and Product Development at 3D Health Solutions. Shagun Krishna has no conflicts of interest to declare. Marilyn N. Martinez has no conflicts of interest to declare. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 3 + 12 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 25 + + + epublish + + 42215821 + 10.1208/s12248-026-01263-6 + 10.1208/s12248-026-01263-6 + + + + Avila AM, Bebenek I, Mendrick DL, Peretz J, Yao J, Brown PC. Gaps and challenges in nonclinical assessments of pharmaceuticals: An FDA/CDER perspective on considerations for development of new approach methodologies. Regul Toxicol Pharmacol. 2023;139:105345. https://doi.org/10.1016/j.yrtph.2023.105345 . + + 10.1016/j.yrtph.2023.105345 + 36746323 + + + + Avila AM, Bebenek I, Bonzo JA, Bourcier T, Davis Bruno KL, Carlson DB, et al. An FDA/CDER perspective on nonclinical testing strategies: classical toxicology approaches and new approach methodologies (NAMs). Regul Toxicol Pharmacol. 2020;114:104662. https://doi.org/10.1016/j.yrtph.2020.104662 . + + 10.1016/j.yrtph.2020.104662 + 32325112 + + + + Jia Y, Jackye P, Bebenek I, Avila A, Alapatt T, Lee B, et al. FDA/CDER/OND experience with new approach mthodologies (NAMs). Int J Toxicol. 2025;10915818251384270. https://doi.org/10.1177/10915818251384270 . + + 10.1177/10915818251384270 + + + + Portela JMD, Paul P, Moriarty O, Theunissen P, Beken S, Brendler-Schwaab S, et al. Review on organs-on-chips for medicines safety assessment: a European regulatory perspective. ALTEX. 2026;43:98–112. https://doi.org/10.14573/altex.2502061 . Accessed 24 May 2026. + + + U.S. FDA. Roadmap to reducing animal testing in preclinical safety studies [Internet]. 2025.  https://www.fda.gov/files/newsroom/published/roadmap_to_reducing_animal_testing_in_preclinical_safety_studies.pdf . Accessed 25 May 2026. + + + Krebs CE, Camp C, Constantino H, Courtot L, Kavanagh O, McCarthy J, et al. Author guide for addressing animal methods bias in publishing. Adv Sci. 2023;10:2303226. https://doi.org/10.1002/advs.202303226 . + + 10.1002/advs.202303226 + + + + PCRM. The physicians committee recommends the NIH fund human-based research infrastructure [Internet]. 2025. https://www.pcrm.org/news/good-science-digest/physicians-committee-recommends-nih-fund-human-based-research . Accessed 24 May 2026. + + + Berggren E, Worth AP. Managing change while phasing out animal testing in chemical safety assessments – a collection of stakeholder experiences and expectations. NAM J. 2026;2:100079. https://doi.org/10.1016/j.namjnl.2026.100079 . + + 10.1016/j.namjnl.2026.100079 + + + + Hope L, Bailey J. Breaking down the barriers to animal-free research. Altern Lab Anim. 2025;53:215–31. https://doi.org/10.1177/02611929251349465 . + + 10.1177/02611929251349465 + 40624753 + + + + Oyetade OB, Allen DG, Carder J, Farley-Dawson EA, Reinke EN, Marko S, et al. Ways to broaden the awareness, consideration and adoption of new approach methodologies (NAMs)*. ALTEX. ALTEX Edition; 2025;42:714–26. https://doi.org/10.14573/altex.2505281 . + + + U.S. FDA. Implementing alternative methods: agency-wide efforts for advancing development, qualification, and implementation of new alternative methods for product testing [Internet]. 2025 [cited 2026 Jan 26]. https://www.fda.gov/science-research/advancing-alternative-methods-fda/implementing-alternative-methods . Accessed 26 Jan 2026. + + + Alves VM, Borba J, Capuzzi SJ, Muratov E, Andrade CH, Rusyn I, et al. Oy Vey! A comment on “Machine learning of toxicological big data enables read-across structure activity relationships outperforming animal test reproducibility”. Toxicol Sci [Internet]. 2019;167:3–4. https://doi.org/10.1093/toxsci/kfy286 . + + 10.1093/toxsci/kfy286 + 30500930 + 6317419 + + + + Beilmann M, Adkins K, Boonen HCM, Hewitt P, Hu W, Mader R, et al. Application of new approach methodologies for nonclinical safety assessment of drug candidates. Nat Rev Drug Discov. 2025;24:705–25. https://doi.org/10.1038/s41573-025-01182-9 . + + 10.1038/s41573-025-01182-9 + 40316753 + + + + Dao T, Sadrieh N. A CDER perspective: landscape of New approach methodologies (NAMs) submitted in drug development programs. Regul Toxicol Pharmacol. 2026;165:106007. https://doi.org/10.1016/j.yrtph.2025.106007 . + + 10.1016/j.yrtph.2025.106007 + 41360337 + + + + Yao J, Peretz J, Bebenek I, Avila A, Alapatt T, Lee B, et al. FDA/CDER/OND experience with New approach methodologies (NAMs). Int J Toxicol. 2026;45:136–56. https://doi.org/10.1177/10915818251384270 . + + 10.1177/10915818251384270 + 41231273 + + + + U.S. Food & Drug Administration. CDER/Office of new drugs streamlined nonclinical studies and acceptable New approach methodologies (NAMs) [Internet]. [cited 2026 Apr 25]. https://www.fda.gov/about-fda/center-drug-evaluation-and-research-cder/cderoffice-new-drugs-streamlined-nonclinical-studies-and-acceptable-new-approach-methodologies-nams . Accessed 25 Apr 2026. + + + U.S. Food & Drug Administration. General considerations for the use of new approach methodologies in drug development [Internet]. [cited 2026 Apr 25]. https://www.fda.gov/regulatory-information/search-fda-guidance-documents/general-considerations-use-new-approach-methodologies-drug-development . Accessed 25 Apr 2026. + + + The 3Rs Collaborative. Microphysiological systems technology hub [Internet].  https://3rc.org/microphysiological-systems-companies/ . Accessed 24 May 2026. + + + Marx U, Beken S, Chen Z, Dehne EM, Doherty A, Ewart L, et al. Biology-inspired dynamic microphysiological system approaches to revolutionize basic research, healthcare and animal welfare. ALTEX. ALTEX Edition. 2025. p. 204–23. https://doi.org/10.14573/altex.2410112 . + + + Marx U, Akabane T, Andersson TB, Baker E, Beilmann M, Beken S, et al. Biology-inspired microphysiological systems to advance patient benefit and animal welfare in drug development. ALTEX. ALTEX Edition. 2020;37:365–94. https://doi.org/10.14573/altex.2001241 . + + + Baker TK, Van Vleet TR, Mahalingaiah PK, Grandhi TSP, Evers R, Ekert J, et al. The current status and use of microphysiological systems by the pharmaceutical industry: the international consortium for innovation and quality microphysiological systems affiliate survey and commentary. Drug Metab Dispos. 2024;52:198–209. https://doi.org/10.1124/dmd.123.001510 . + + 10.1124/dmd.123.001510 + 38123948 + + + + Baran SW, Brown PC, Baudy AR, Fitzpatrick SC, Frantz C, Fullerton A, et al. Perspectives on the evaluation and adoption of complex in vitro models in drug development: workshop with the FDA and the pharmaceutical industry (IQ MPS Affiliate). ALTEX. 2022;39:297–314. https://doi.org/10.14573/altex.2112203 . + + 10.14573/altex.2112203 + 35064273 + + + + Tasnim F, Huang X, Lee CZW, Ginhoux F, Yu H. Recent advances in models of immune-mediated drug-induced liver injury. Front Toxicol [Internet]. 2021;3–2021.  https://www.frontiersin.org/journals/toxicology/articles/10.3389/ftox.2021.605392 . Accessed 24 May 2026. + + + Lim AY, Kato Y, Sakolish C, Valdiviezo A, Han G, Bajaj P, et al. Reproducibility and robustness of a liver microphysiological system PhysioMimix LC12 under varying culture conditions and cell type combinations. Bioengineering. 2023. https://doi.org/10.3390/bioengineering10101195 . + + 10.3390/bioengineering10101195 + 38002450 + 10669060 + + + + Kato Y, Lim AY, Sakolish C, Valdiviezo A, Moyer HL, Hewitt P, et al. Analysis of reproducibility and robustness of OrganoPlate® 2-lane 96, a liver microphysiological system for studies of pharmacokinetics and toxicological assessment of drugs. Toxicol In Vitro. 2022;85:105464. https://doi.org/10.1016/j.tiv.2022.105464 . + + 10.1016/j.tiv.2022.105464 + 36057418 + 10015056 + + + + Ewart L, Apostolou A, Briggs SA, Carman CV, Chaff JT, Heng AR, et al. Performance assessment and economic analysis of a human Liver-Chip for predictive toxicology. Commun Med. 2022;2:154. https://doi.org/10.1038/s43856-022-00209-1 . + + 10.1038/s43856-022-00209-1 + 36473994 + 9727064 + + + + Pamies D, Ekert J, Zurich M-G, Frey O, Werner S, Piergiovanni M, et al. Recommendations on fit-for-purpose criteria to establish quality management for microphysiological systems and for monitoring their reproducibility. Stem Cell Rep. 2024;19:604–17. https://doi.org/10.1016/j.stemcr.2024.03.009 . + + 10.1016/j.stemcr.2024.03.009 + + + + Rusyn I, Sakolish C, Kato Y, Stephan C, Vergara L, Hewitt P, et al. Microphysiological systems evaluation: experience of TEX-VAL tissue chip testing consortium. Toxicol Sci. 2022;188:143–52. https://doi.org/10.1093/toxsci/kfac061 . + + 10.1093/toxsci/kfac061 + 35689632 + 9333404 + + + + Sakolish C, Reese CE, Luo Y-S, Valdiviezo A, Schurdak ME, Gough A, et al. Analysis of reproducibility and robustness of a human microfluidic four-cell liver acinus microphysiology system (LAMPS). Toxicology. 2021;448:152651. https://doi.org/10.1016/j.tox.2020.152651 . + + 10.1016/j.tox.2020.152651 + 33307106 + + + + Sakolish C, Luo Y-S, Valdiviezo A, Vernetti LA, Rusyn I, Chiu WA. Prediction of hepatic drug clearance with a human microfluidic four-cell liver acinus microphysiology system. Toxicology. 2021;463:152954. https://doi.org/10.1016/j.tox.2021.152954 . + + 10.1016/j.tox.2021.152954 + 34543702 + 8585690 + + + + Sakolish C, Chen Z, Dalaijamts C, Mitra K, Liu Y, Fulton T, et al. Predicting tubular reabsorption with a human kidney proximal tubule tissue-on-a-chip and physiologically-based modeling. Toxicol In Vitro. 2020;63:104752. https://doi.org/10.1016/j.tiv.2019.104752 . + + 10.1016/j.tiv.2019.104752 + 31857146 + + + + Sakolish C, House JS, Chramiec A, Liu Y, Chen Z, Halligan SP, et al. Tissue-engineered bone tumor as a reproducible human in vitro model for studies of anticancer drugs. Toxicol Sci. 2020;173:65–76. https://doi.org/10.1093/toxsci/kfz220 . + + 10.1093/toxsci/kfz220 + 31626302 + 8204946 + + + + Liu Y, Sakolish C, Chen Z, Phan DTT, Bender RHF, Hughes CCW, et al. Human in vitro vascularized micro-organ and micro-tumor models are reproducible organ-on-a-chip platforms for studies of anticancer drugs. Toxicology. 2020;445:152601. https://doi.org/10.1016/j.tox.2020.152601 . + + 10.1016/j.tox.2020.152601 + 32980478 + 7606810 + + + + Sakolish C, Weber EJ, Kelly EJ, Himmelfarb J, Mouneimne R, Grimm FA, et al. Technology transfer of the microphysiological systems: a case study of the human proximal tubule tissue chip. Sci Rep. 2018;8:14882. https://doi.org/10.1038/s41598-018-33099-2 . + + 10.1038/s41598-018-33099-2 + 30291268 + 6173737 + + + + Sakolish C, Lin H-C, Moyer HL, Ford LC, Christen CH, Wetmore BA, et al. An in vitro-in silico workflow for predicting renal clearance of environmental chemicals and drugs. Toxicology. 2026;519:154336. https://doi.org/10.1016/j.tox.2025.154336 . + + 10.1016/j.tox.2025.154336 + 41224188 + + + + Moyer HL, Vergara L, Stephan C, Sakolish C, Ford LC, Tsai H-H, et al. Comparative analysis of Caco-2 cells and human jejunal and duodenal enteroid-derived cells in gel- and membrane-based barrier models of intestinal permeability. Toxicol Sci. 2025;204:181–97. https://doi.org/10.1093/toxsci/kfaf011 . + + 10.1093/toxsci/kfaf011 + 39886939 + 11939079 + + + + Sakolish C, Tsai HHD, Lin HC, Bajaj P, Villenave R, Ferguson SS, et al. Comparative analysis of proximal tubule cell sources for in vitro studies of renal proximal tubule toxicity. Biomedicines. 2025. https://doi.org/10.3390/biomedicines13030563 . + + 10.3390/biomedicines13030563 + 40149543 + 11940618 + + + + Sakolish C, Moyer HL, Tsai H-H, Ford LC, Dickey AN, Bajaj P, et al. Comparative analysis of the physiological and transport functions of various sources of renal proximal tubule cells under static and fluidic conditions in PhysioMimix T12 platform. Drug Metab Dispos. 2025. https://doi.org/10.1124/dmd.124.001488 . + + 10.1124/dmd.124.001488 + 39884810 + + + + Negi CK, Sakolish C, Tsai H-H, Nitsche K, Gang H, Bajaj P, et al. Comparative analysis of species-specific hepatocyte function and drug effects in a liver microphysiological system PhysioMimix LC12 and 96-well plates. ACS Pharmacol Transl Sci. 2025;8:4138–58. https://doi.org/10.1021/acsptsci.5c00554 . + + 10.1021/acsptsci.5c00554 + 41262563 + 12624441 + + + + Moyer HL, Vergara L, Stephan C, Sakolish C, Lin HC, Chiu WA, et al. Human small intestinal tissue models to assess barrier permeability: comparative analysis of Caco-2 cells, jejunal and duodenal enteroid-derived cells, and EpiIntestinalTM tissues in membrane-based cultures with and without flow. Bioengineering. 2025. https://doi.org/10.3390/bioengineering12080809 . Multidisciplinary Digital Publishing Institute (MDPI). + + 10.3390/bioengineering12080809 + 40868322 + 12384003 + + + + Nitsche KS, Sakolish C, Carmichael PL, Hewitt P, Bajaj P, Ferguson SS, et al. Exploring the potential of liver microphysiological systems of varied configurations to model cholestatic chemical effects. Arch Toxicol. 2025. https://doi.org/10.1007/s00204-025-04263-1 . + + 10.1007/s00204-025-04263-1 + 41361122 + 12967466 + + + + Lin H-C, Sakolish C, Moyer HL, Carmichael PL, Baltazar MT, Ferguson SS, et al. An in vitro-in silico workflow for predicting renal clearance of PFAS. Toxicol Appl Pharmacol. 2024;489:117015. https://doi.org/10.1016/j.taap.2024.117015 . + + 10.1016/j.taap.2024.117015 + 38917890 + 11585971 + + + + Sakolish C, Moyer HL, Tsai H-H, Ford LC, Dickey AN, Wright FA, et al. Analysis of reproducibility and robustness of a renal proximal tubule microphysiological system OrganoPlate 3-lane 40 for in vitro studies of drug transport and toxicity. Toxicol Sci. 2023;196:52–70. https://doi.org/10.1093/toxsci/kfad080 . + + 10.1093/toxsci/kfad080 + 37555834 + 10613961 + + + + Sakolish C, Georgescu A, Huh DD, Rusyn I. A model of human small airway on a chip for studies of subacute effects of inhalation toxicants. Toxicol Sci. 2022;187:267–78. https://doi.org/10.1093/toxsci/kfac036 . + + 10.1093/toxsci/kfac036 + 35357501 + 9154286 + + + + Thenuwara G, Javed B, Singh B, Tian F. Biosensor-enhanced organ-on-a-chip models for investigating Glioblastoma tumor microenvironment dynamics. Sensors Basel. 2024. https://doi.org/10.3390/s24092865 . + + 10.3390/s24092865 + 39338706 + 11435446 + + + + Macko P, Palosaari T, Whelan M. Extrapolating from acute to chronic toxicity in vitro. Toxicol In Vitro. 2021;76:105206. https://doi.org/10.1016/j.tiv.2021.105206 . + + 10.1016/j.tiv.2021.105206 + 34186185 + 8434427 + + + + Sato T, Vries RG, Snippert HJ, van de Wetering M, Barker N, Stange DE, et al. Single Lgr5 stem cells build crypt-villus structures in vitro without a mesenchymal niche. Nature. 2009;459:262–5. https://doi.org/10.1038/nature07935 . + + 10.1038/nature07935 + 19329995 + + + + Sakthivel V, Dharshan SS, Namasivayam SKR, Arockiaraj J. Advances in 3D organoids and organ-on-a-chip systems for biomedical research. J Biomed Mater Res A. 2026;114:e70028. https://doi.org/10.1002/jbma.70028 . + + 10.1002/jbma.70028 + 41481795 + + + + Zhao Z, Chen X, Dowbaj AM, Sljukic A, Bratlie K, Lin L, et al. Organoids. Nat Rev Methods Primers. 2022;2:94. https://doi.org/10.1038/s43586-022-00174-y . + + 10.1038/s43586-022-00174-y + 37325195 + 10270325 + + + + Clevers H. Modeling development and disease with organoids. Cell. 2016;165:1586–97. https://doi.org/10.1016/j.cell.2016.05.082 . + + 10.1016/j.cell.2016.05.082 + 27315476 + + + + Fatehullah A, Tan SH, Barker N. Organoids as an in vitro model of human development and disease. Nat Cell Biol. 2016;18:246–54. https://doi.org/10.1038/ncb3312 . + + 10.1038/ncb3312 + 26911908 + + + + National Institutes of Health. NIH Standardized Organoid Modeling (SOM) Center [Internet]. [cited 2026 Apr 25]. https://www.nih.gov/som . Accessed 25 Apr 2026. + + + Zdyrski C, Gabriel V, Ospina O, Nicholson HF, Catucci M, Melvin BJ, et al. Establishment and transcriptomic characterization of canine organoids from multiple tissues. Front Cell Dev Biol [Internet]. 2025;13–2025. https://www.frontiersin.org/journals/cell-and-developmental-biology/articles/10.3389/fcell.2025.1680376 . Accessed 24 May 2026. + + + Zhu J, Ji L, Chen Y, Li H, Huang M, Dai Z, et al. Organoids and organs-on-chips: insights into predicting the efficacy of systemic treatment in colorectal cancer. Cell Death Discov. 2023;9:72. https://doi.org/10.1038/s41420-023-01354-9 . + + 10.1038/s41420-023-01354-9 + 36813783 + 9947255 + + + + Park SE, Georgescu A, Huh D. Organoids-on-a-chip. Science. 2019;364:960–5. https://doi.org/10.1126/science.aaw7894 . + + 10.1126/science.aaw7894 + 31171693 + 7764943 + + + + Wang H, Ning X, Zhao F, Zhao H, Li D. Human organoids-on-chips for biomedical research and applications. Theranostics. 2024;14:788–818. https://doi.org/10.7150/thno.90492 . + + 10.7150/thno.90492 + 38169573 + 10758054 + + + + Spiró Z, El-Heliebi A, Mair MJ, Pieber TR, Prietl B, Spiegl-Kreinecker S, et al. Ex vivo drug screening on patient-derived tumor material to advance functional precision in oncology: an overview on current approaches and unresolved challenges. Cancer Treat Rev. 2026. https://doi.org/10.1016/j.ctrv.2025.103072 . + + 10.1016/j.ctrv.2025.103072 + 41475298 + + + + Lo Y-H, Karlsson K, Kuo CJ. Applications of organoids for cancer biology and precision medicine. Nat Cancer. 2020;1:761–73. https://doi.org/10.1038/s43018-020-0102-y . + + 10.1038/s43018-020-0102-y + 34142093 + 8208643 + + + + Oh JH, Cho J-Y. Comparative oncology: overcoming human cancer through companion animal studies. Exp Mol Med. 2023;55:725–34. https://doi.org/10.1038/s12276-023-00977-3 . + + 10.1038/s12276-023-00977-3 + 37009802 + 10167357 + + + + Allenspach K, Zavros Y, Elbadawy M, Zdyrski C, Mochel JP. Leveraging the predictive power of 3D organoids in dogs to develop new treatments for man and man’s best friend. BMC Biol. 2023;21:297. https://doi.org/10.1186/s12915-023-01799-5 . + + 10.1186/s12915-023-01799-5 + 38155352 + 10755934 + + + + Fang Z, Li P, Du F, Shang L, Li L. The role of organoids in cancer research. Exp Hematol Oncol. 2023;12:69. https://doi.org/10.1186/s40164-023-00433-y . + + 10.1186/s40164-023-00433-y + 37537666 + 10401879 + + + + Kothadiya S, Cutshaw G, Uthaman S, Hassan N, Sahoo DK, Wickham H, et al. Cisplatin-induced metabolic responses measured with Raman spectroscopy in cancer cells, spheroids, and canine-derived organoids. ACS Appl Mater Interfaces. 2024;16:50267–81. https://doi.org/10.1021/acsami.4c08629 . + + 10.1021/acsami.4c08629 + 39284013 + + + + Peterson HM, Zdyrski C, Allenspach K, Mochel JP, Trepanier LA. Urothelial genotoxicity of household chemicals in healthy canine urinary bladder organoids relative to observed urinary exposures in pet dogs. Front Vet Sci. 2025. https://doi.org/10.3389/fvets.2025.1702980 . + + 10.3389/fvets.2025.1702980 + 41502853 + 12771537 + + + + Elbadawy M, Usui T, Mori T, Tsunedomi R, Hazama S, Nabeta R, et al. Establishment of a novel experimental model for muscle-invasive bladder cancer using a dog bladder cancer organoid culture. Cancer Sci. 2019;110:2806–21. https://doi.org/10.1111/cas.14118 . + + 10.1111/cas.14118 + 31254429 + 6726682 + + + + Ettayebi K, Crawford SE, Murakami K, Broughman JR, Karandikar U, Tenge VR, et al. Replication of human noroviruses in stem cell–derived human enteroids. Science. 2016;353:1387–93. https://doi.org/10.1126/science.aaf5211 . + + 10.1126/science.aaf5211 + 27562956 + 5305121 + + + + Zou WY, Blutt SE, Crawford SE, Ettayebi K, Zeng X-L, Saxena K, et al. Human intestinal enteroids: new models to study gastrointestinal virus infections. In: Turksen K, editor. Organoids: Stem Cells, Structure, and Function [Internet]. New York, NY: Springer New York; 2019. p. 229–47. https://doi.org/10.1007/7651_2017_1 . + + + Nicholson HF, Zdyrski C, Leyson CM, Corbett MP, Kumar N, Catucci M, et al. Development and characterization of chicken lung organoids for in vitro modeling of avian influenza virus-host cell interaction. Sci Rep. 2026;16:1572. https://doi.org/10.1038/s41598-025-30641-x . + + 10.1038/s41598-025-30641-x + 41519874 + 12800103 + + + + Lee SH, Hu W, Matulay JT, Silva MV, Owczarek TB, Kim K, et al. Tumor evolution and drug response in patient-derived organoid models of bladder cancer. Cell. 2018;173:515-528.e17. https://doi.org/10.1016/j.cell.2018.03.017 . + + 10.1016/j.cell.2018.03.017 + 29625057 + 5890941 + + + + Taurin S, Alzahrani R, Aloraibi S, Ashi L, Alharmi R, Hassani N. Patient-derived tumor organoids: a preclinical platform for personalized cancer therapy. Transl Oncol. 2025;51:102226. https://doi.org/10.1016/j.tranon.2024.102226 . + + 10.1016/j.tranon.2024.102226 + 39622151 + + + + Tindle C, Fuller M, Fonseca A, Taheri S, Ibeawuchi S-R, Beutler N, et al. Adult stem cell-derived complete lung organoid models emulate lung disease in COVID-19. Elife. 2021;10:e66417. https://doi.org/10.7554/eLife.66417 . + + 10.7554/eLife.66417 + 34463615 + 8463074 + + + + Giles R, Meijer EM, Maas RGC, van Dijk CGM, Verhaar MC, Cheng C. Animal-free alternatives for Matrigel in human iPSC-derived blood vessel organoid culture. Sci Rep. 2025;15:36042. https://doi.org/10.1038/s41598-025-20091-w . + + 10.1038/s41598-025-20091-w + 41094042 + 12528733 + + + + Fujii M, Matano M, Toshimitsu K, Takano A, Mikami Y, Nishikori S, et al. Human intestinal organoids maintain self-renewal capacity and cellular diversity in niche-inspired culture condition. Cell Stem Cell. 2018;23:787-793.e6. https://doi.org/10.1016/j.stem.2018.11.016 . + + 10.1016/j.stem.2018.11.016 + 30526881 + + + + Chakrabarti J, Koh V, So JBY, Yong WP, Zavros Y. A preclinical human-derived autologous gastric cancer organoid/Immune cell co-culture model to predict the efficacy of targeted therapies. J Vis Exp. 2021.  https://doi.org/10.3791/61443 . + + + Harter MF, Recaldin T, Gjorevski N. Organoids as models of immune-organ interaction. Cell Rep. 2025. https://doi.org/10.1016/j.celrep.2025.116214 . + + 10.1016/j.celrep.2025.116214 + 40906560 + + + + Chandra L, Borcherding DC, Kingsbury D, Atherly T, Ambrosini YM, Bourgois-Mochel A, et al. Derivation of adult canine intestinal organoids for translational research in gastroenterology. BMC Biol. 2019;17:33. https://doi.org/10.1186/s12915-019-0652-6 . + + 10.1186/s12915-019-0652-6 + 30975131 + 6460554 + + + + Ambrosini YM, Park Y, Jergens AE, Shin W, Min S, Atherly T, et al. Recapitulation of the accessible interface of biopsy-derived canine intestinal organoids to study epithelial-luminal interactions. PLoS One. 2020;15:e0231423. https://doi.org/10.1371/journal.pone.0231423 . + + 10.1371/journal.pone.0231423 + 32302323 + 7164685 + + + + Sahoo DK, Martinez MN, Dao K, Gabriel V, Zdyrski C, Jergens AE, et al. Canine intestinal organoids as a novel in vitro model of intestinal drug permeability: a proof-of-concept study. Cells. 2023. https://doi.org/10.3390/cells12091269 . + + 10.3390/cells12091269 + 37998395 + 10670380 + + + + Corbett MP, Gabriel V, Livania V, Díaz-Regañón D, Ralston A, Zdyrski C, et al. A preclinical model to assess intestinal barrier integrity using canine enteroids and colonoids. Biology. 2025. https://doi.org/10.3390/biology14030270 . + + 10.3390/biology14030270 + 40136526 + 11939752 + + + + Martinez MN, Mochel JP, Toutain P-L. Evolving value and validity of animal models in veterinary therapeutic research: impact of scientific progress. Eur J Pharm Sci. 2025;210:107111. https://doi.org/10.1016/j.ejps.2025.107111 . + + 10.1016/j.ejps.2025.107111 + 40286991 + + + + Moshksayan K, Khanna R, Camli B, Yakay ZN, Harihara A, Zdyrski C, et al. A microfluidic platform for culturing and high-content imaging of adult stem cell-derived organoids. Sci Rep [Internet]. 2025;15:40162. https://doi.org/10.1038/s41598-025-23883-2 . + + 10.1038/s41598-025-23883-2 + 41249220 + 12623891 + + + + Moshksayan K, Harihara A, Mondal S, Hegarty E, Atherly T, Sahoo DK, et al. OrganoidChip facilitates hydrogel-free immobilization for fast and blur-free imaging of organoids. Sci Rep. 2023;13:11268. https://doi.org/10.1038/s41598-023-38212-8 . + + 10.1038/s41598-023-38212-8 + 37438409 + 10338466 + + + + U.S. FDA. USFDA Guidance for industry: M15 general principles for model-informed drug development [Internet]. 2024 [cited 2026 Jan 5]. https://www.fda.gov/media/184747/download . Accessed 5 Jan 2026. + + + EMA. Guideline on the reporting of physiologically based pharmacokinetic (PBPK) modelling and simulation [Internet]. 2018 [cited 2026 Jan 5]. https://www.ema.europa.eu/en/documents/scientific-guideline/guideline-reporting-physiologically-based-pharmacokinetic-pbpk-modelling-and-simulation_en.pdf . Accessed 5 Jan 2026. + + + Slankster-Schmierer E. OECD Releases new Test Guidelines for NAMs in 2023 [Internet]. ICAPO. 2023 [cited 2026 Feb 6]. https://www.icapo.org/news/oecd-releases-new-test-guidelines-nams-2023 . Accessed 6 Feb 2026. + + + Rowland Yeo K, Gil Berglund E, Chen Y. Dose optimization informed by PBPK modeling: State-of-the art and future. Clin Pharmacol Ther. 2024;116:563–76. https://doi.org/10.1002/cpt.3289 . + + 10.1002/cpt.3289 + 38686708 + + + + Vasilogianni A-M, Achour B, Scotcher D, Peters SA, Al-Majdoub ZM, Barber J, et al. Hepatic scaling factors for in vitro&#x2013; in vivo extrapolation of metabolic drug clearance in patients with colorectal cancer with liver metastasis. Drug Metab Dispos [Internet]. 2021;49:563–71.  https://doi.org/10.1124/dmd.121.000359 . Elsevier. + + + National Toxicology Program. Integrated Chemical Environment [Internet]. [cited 2026 Jan 5]. https://ice.ntp.niehs.nih.gov/ . Accessed 5 Jan 2026. + + + PCRM. Using NICEATMs Integrated Chemical Environment to support chemical evaluations [Internet]. [cited 2026 Jan 5]. https://pcrm.widencollective.com/portals/ieooh0ol/ICE#5023fe19-5184-452d-95ae-9b9b7b3e29d7 . Accessed 5 Jan 2026. + + + Mao B, Gao Y, Xu C, Macha S, Shao S, Ahamadi M. Evaluating the impact of AI-based model-informed drug development (MIDD): a comparative review. AAPS J. 2025;27:102. https://doi.org/10.1208/s12248-025-01075-0 . + + 10.1208/s12248-025-01075-0 + 40457118 + + + + Li Y, Wang Z, Li Y, Du J, Gao X, Li Y, et al. A combination of machine learning and PBPK modeling approach for pharmacokinetics prediction of small molecules in humans. Pharm Res. 2024;41:1369–79. https://doi.org/10.1007/s11095-024-03725-y . + + 10.1007/s11095-024-03725-y + 38918309 + 11534847 + + + + EMA. European medicines Agency Reflection paper on the use of Artificial Intelligence (AI) in the medicinal product lifecycle [Internet]. 2024 [cited 2026 Jan 5]. https://www.ema.europa.eu/en/documents/scientific-guideline/reflection-paper-use-artificial-intelligence-ai-medicinal-product-lifecycle_en.pdf . Accessed 5 Jan 2026. + + + U.S. FDA. Using artificial intelligence and machine learning in the development of drug and biological products, discussion paper and request for feedback. 2025.  https://www.fda.gov/media/167973/download . Accessed 24 May 2026. + + + Balkhair O, Albalushi H. Artificial intelligence in organoid-based disease modeling: a new frontier in precision medicine. Biomimetics. 2025. https://doi.org/10.3390/biomimetics10120845 . + + 10.3390/biomimetics10120845 + 41439914 + 12730694 + + + + Nazer LH, Zatarah R, Waldrip S, Ke JXC, Moukheiber M, Khanna AK, et al. Bias in artificial intelligence algorithms and recommendations for mitigation. PLoS Digit Health. 2023;2:e0000278. https://doi.org/10.1371/journal.pdig.0000278 . + + 10.1371/journal.pdig.0000278 + 37347721 + 10287014 + + + + Evans H, Snead D. Understanding the errors made by artificial intelligence algorithms in histopathology in terms of patient impact. npj Digit Med. 2024;7:89. https://doi.org/10.1038/s41746-024-01093-w . + + 10.1038/s41746-024-01093-w + 38600151 + 11006652 + + + + Rusyn I. ToxPoint: of hammers and nails—understanding academic challenges with “context of use” and “fit for purpose.” Toxicol Sci. 2025;207:29–30. https://doi.org/10.1093/toxsci/kfaf058 . + + 10.1093/toxsci/kfaf058 + 40300103 + 12448218 + + + + Liu K, Chen X, Fan Z, Ren F, Liu J, Hu B. From organoids to organoids-on-a-chip: current applications and challenges in biomedical research. Chin Med J (Engl). 2025;138:792–807. https://doi.org/10.1097/CM9.0000000000003535 . + + 10.1097/CM9.0000000000003535 + 39994843 + 11970821 + + + + Goldrick C, Guri I, Herrera-Oropeza G, O’Brien-Gore C, Roy E, Wojtynska M, et al. 3D multicellular systems in disease modelling: From organoids to organ-on-chip. Front Cell Dev Biol. 2023. https://doi.org/10.3389/fcell.2023.1083175 . + + 10.3389/fcell.2023.1083175 + 36819106 + 9933985 + + + + +
+ + + 42215809 + + 2026 + 05 + 29 + +
+ + 2730-6011 + + + 2026 + May + 29 + + + Discover oncology + Discov Oncol + + Exercise-related genes predicts overall survival and tumor immune microenvironment, and identifies the biological role of SLC52A2 in breast cancer. + 10.1007/s12672-026-05321-5 + + Breast cancer (BRCA) is the most common malignant tumor in women, with prognoses differing markedly by molecular subtype. Exercise is known to be related to tumor occurrence and progression, yet its role in BRCA remains understudied. This research seeks to explore the prognostic and immunomodulatory functions of exercise-related genes (ERGs) in BRCA, and their links to molecular subtypes, so as to inform targeted and precision treatment. + We obtained BRCA gene expression profiles and clinical data from the TCGA-BRCA project. Using LASSO, random forest, gradient boosting machine (GBM), stepwise Cox regression (Stepcox), and extreme gradient boosting (XGBOOST) algorithms, we screened prognostic signature genes from the intersecting ERGs, determined by differential expression analysis and weighted gene co-expression network analysis (WGCNA), established and validated a novel risk prediction model. We further analyzed biological functions, mutation profiles, immune traits, and molecular subtype associations across different risk groups. Additionally, the prognostic, biological and immunological roles of the core risk biomarker in the exercise-related signature was evaluated. + WGCNA identified 345 differentially expressed ERGs in BRCA, and five machine learning algorithms further screened 6 prognostic genes (SNX22, SLC52A2, TNFRSF18, NFE2, EZR, and EMP1). The low-risk group had significantly higher overall survival rate than the high-risk group, a difference driven by the functional roles of the two groups' differentially expressed genes, which regulated the cell cycle and epithelial-mesenchymal transition (EMT). Additionally, the high- and low-risk groups showed distinct mutation and immunomodulatory features. Consensus clustering of prognosis between the groups linked these differences to BRCA molecular subtypes. As a core candidate factor, SLC52A2 contributed to BRCA progression and poor prognosis in patients by participating in multiple signaling pathways and regulating immune cells. + ERGs-based prognostic signatures could distinguish clinical outcomes of BRCA patients and were correlated with immune regulation and mutation patterns. The ERGs-constructed risk scoring system and molecular subtypes have the potential to serve as preclinical biological and immunological markers, paving the way for clinical management and treatment of BRCA. + © 2026. The Author(s). + + + + Chen + Caiping + C + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Han + Chao + C + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Xue + Li + L + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Lu + Xiang + X + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. 00187649@zjxu.edu.cn. + + + + eng + + + 2023-FC-001 + Jiaxing Key Discipiline of Medcine - -Surgery Med (Mastopathy) + + + + 2023-PYXK-001 + Jiaxing Provinces and Cities Jointly Cultivate Discipline - -General Surgery (Minimally Invasive) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Discov Oncol + 101775142 + 2730-6011 + + + Breast cancer + Exercise + Genetic mutation + Immune response + Molecular cluster + Prognosis + + Declarations. Ethics approval and consent to participate: The cohort data used in this article were all from online databases and therefore did not involve ethics. Consent to participate is not applicable to this study. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 28 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 23 + 25 + + + aheadofprint + + 42215809 + 10.1007/s12672-026-05321-5 + 10.1007/s12672-026-05321-5 + + +
+ + + 42215746 + + 2026 + 05 + 29 + +
+ + 1435-2451 + + + 2026 + May + 30 + + + Langenbeck's archives of surgery + Langenbecks Arch Surg + + Relationship between ileocolic arterial stump length and lymph node yield - a retrospective study using machine learning. + 10.1007/s00423-026-04048-9 + + In right-sided colon cancer surgery, ileocolic artery stump length may reflect the extent of mesenteric resection and lymph node harvest. This study evaluated the association between postoperative stump length measured on CT, lymph node yield, and recurrence or progression within 24 months. + This single-center retrospective study included 64 patients who underwent right or extended right hemicolectomy for right-sided colon adenocarcinoma between 2016 and 2024. Right-sided tumors were defined as those located in the cecum, ascending colon, hepatic flexure, or proximal transverse colon. Only primary surgical cases were included. Ileocolic artery stump length was measured on contrast-enhanced CT scans performed approximately 12 months postoperatively (± 1 month) by two independent radiologists. A Random Forest regression model using stump length as the only predictor variable was developed to estimate lymph node yield. Model performance was assessed using 10-fold cross-validation with R² and mean squared error (MSE). Exploratory recurrence/progression analysis used logistic regression with natural cubic splines. + Mean stump length was 2.03 cm (range 1.0-4.5 cm), and median lymph node yield was 17 (range 10-55). Adequate nodal evaluation (≥ 12 nodes) was achieved in 85.9% of patients. The model demonstrated a consistent inverse relationship between stump length and lymph node yield (R² = 0.78; MSE = 0.16). Exploratory analysis suggested a non-significant trend toward higher recurrence or progression with longer stumps. + Longer ileocolic artery stumps were associated with reduced lymph node yield, suggesting stump length may reflect the extent of mesenteric resection. External validation is required before clinical application. + © 2026. The Author(s). + + + + Zayas-Borquez + Rogelio + R + 0000-0003-1751-4211 + + Universidad Nacional Autónoma de México, Mexico City, Mexico. rogeliozb94@unam.edu. + + + + Arizaga-Ramírez + María Sofía + MS + 0009-0004-2981-0530 + + Department of Radiology and Imaging, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Mexico City, Mexico. + + + + Canto-Losa + Jorge + J + 0000-0003-3768-3688 + + Universidad Nacional Autónoma de México, Mexico City, Mexico. jorge.canto@incmnsz.mx. + + + + Gándara-Lois + Ana C + AC + 0009-0001-0265-1726 + + Department of Radiology and Imaging, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Mexico City, Mexico. + + + + Salgado-Nesme + Noel + N + 0000-0002-3559-5070 + + Department of Colorectal Surgery, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Vasco de Quiroga 15, Belisario Domínguez Seccion 16, Tlalpan, Mexico City, PC 14080, Mexico. + + + + Alvarez-Bautista + Francisco + F + 0000-0003-2645-832X + + Department of General and Endoscopic Surgery, "Dr. Manuel GEA González" General Hospital, Mexico City, Mexico. + + + + Santes + Oscar + O + 0000-0002-6393-4607 + + Department of Colorectal Surgery, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Vasco de Quiroga 15, Belisario Domínguez Seccion 16, Tlalpan, Mexico City, PC 14080, Mexico. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + Germany + Langenbecks Arch Surg + 9808285 + 1435-2443 + + IM + + Central vascular ligation + Complete mesocolic excision + Lymph node retrieval + Machine learning + Right hemicolectomy + + Declarations. Ethics approval: This study was conducted in accordance with the principles of the Declaration of Helsinki. The study protocol was reviewed and approved by the Institutional Review Board of the corresponding institution. Given the retrospective nature of the study and the use of anonymized data, the requirement for informed consent was waived. Informed consent: Informed consent was waived due to the retrospective design of the study and the use of anonymized patient data. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 16 + + + 2026 + 4 + 11 + + + 2026 + 5 + 29 + 23 + 23 + + + aheadofprint + + 42215746 + 10.1007/s00423-026-04048-9 + 10.1007/s00423-026-04048-9 + + +
+ + + 42215700 + + 2026 + 05 + 29 + +
+ + 1437-1596 + + + 2026 + May + 30 + + + International journal of legal medicine + Int J Legal Med + + Proteomic profiling of bone for the estimation of post-mortem interval and post-mortem submersion interval: a systematic review. + 10.1007/s00414-026-03844-8 + + Accurate estimation of the Post-Mortem Interval (PMI) and Post-Mortem Submersion Interval (PMSI) remains a persistent challenge in forensic science, especially when traditional morphological and entomological methods fail due to advanced decomposition or in aquatic environments. Proteomic profiling of bone tissues has recently emerged as a promising approach, leveraging the predictable degradation patterns of bone proteins to estimate time since death more reliably. This systematic review, conducted in accordance with PRISMA guidelines, analyzed 24 peer-reviewed studies focusing on the application of proteomic techniques to bone tissue for PMI and PMSI estimation. The included studies were evaluated based on sample type, analytical techniques used, identified biomarkers, environmental conditions assessed, and the overall reliability and reproducibility of the findings. The review found that specific bone proteins, particularly collagen, osteocalcin, fetuin-A, etc. exhibited consistent degradation patterns that correlated strongly with elapsed post-mortem time. Cortical bone was identified as a more stable and informative matrix compared to trabecular bone. Mass spectrometry, especially LC-MS/MS, emerged as the predominant analytical technique due to its high sensitivity and accuracy in detecting low-abundance proteins over extended PMIs and PMSIs. However, protein degradation rates were significantly influenced by environmental variables such as temperature, humidity, soil pH, and microbial activity. This review also emphasizes the transformative role of bone proteomics in advancing forensic science while identifying key gaps that must be addressed to achieve global standardization and practical implementation in diverse forensic contexts. The integration of proteomics with other emerging technologies, such as machine learning algorithms and computational modeling, may further enhance the precision of PMI and PMSI estimation in future applications. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Dalal + Jyoti + J + 0000-0002-4690-6452 + + School of Forensic Sciences, Amity University Punjab, Mohali, Punjab, India. jyotidalal417@gmail.com. + + + + Kumari + Pallavi + P + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + Department of Forensic Science, University Institute Allied Health Sciences, Chandigarh University, Mohali, Punjab, India. + + + + Gupta + Vinayak + V + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + + Chhikara + Anjali + A + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 30 + +
+ + Germany + Int J Legal Med + 9101456 + 0937-9827 + + IM + + Bone Biomarkers + Forensic Proteomics + Post-Mortem Interval (PMI) + Post-Mortem Submersion Interval (PMSI) + Protein degradation + Proteomic profiling + Systematic review + + Declarations. Competing Interest: None. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 5 + 8 + + + 2026 + 5 + 17 + + + 2026 + 5 + 29 + 23 + 22 + + + aheadofprint + + 42215700 + 10.1007/s00414-026-03844-8 + 10.1007/s00414-026-03844-8 + + + + Amendt J, Richards CS, Campobasso CP, Zehner R, Hall MJ (2011) Forensic entomology: applications and limitations. Forensic science, medicine, and pathology 7(4):379–392. https://doi.org/10.1007/s12024-010-9209-2 + + 10.1007/s12024-010-9209-2 + 21213072 + + + + Barrios M, Wolff M (2011) Initial study of arthropods succession and pig carrion decomposition in two freshwater ecosystems in the Colombian Andes. Forensic Sci Int 212(1–3):164–172. https://doi.org/10.1016/j.forsciint.2011.06.008 + + 10.1016/j.forsciint.2011.06.008 + 21741189 + + + + Becker J, Boulyga S, Becker J, Pickhardt C, Damoc E, Przybylski M (2003) Structural identification and quantification of protein phosphorylations after gel electrophoretic separation using Fourier transform ion cyclotron resonance mass spectrometry and laser ablation inductively coupled plasma mass spectrometry. Int J Mass Spectrom 228:985–997. https://doi.org/10.1016/S1387-3806(03)00266-5 + + 10.1016/S1387-3806(03)00266-5 + + + + Bern M, Kil YJ, Becker C (2012) Byonic: Advanced peptide and protein identification software. Curr Protoc Bioinformatics. https://doi.org/10.1002/0471250953.bi1320s40 + + + Boaks A, Siwek D, Mortazavi F (2014) The temporal degradation of bone collagen: a histochemical approach. Forensic science international 240:104–110. https://doi.org/10.1016/j.forsciint.2014.04.008 + + 10.1016/j.forsciint.2014.04.008 + 24836839 + + + + Bonicelli A, Di Nunzio A, Di Nunzio C, Procopio N (2022) Insights into the differential preservation of bone proteomes in inhumed and entombed cadavers from Italian forensic caseworks. Journal of proteome research 21(5):1285–1298. https://doi.org/10.1021/acs.jproteome.1c00904 + + 10.1021/acs.jproteome.1c00904 + 35316604 + 9087355 + + + + Bonicelli A, Mickleburgh HL, Chighine A, Locci E, Wescott DJ, Procopio N (2022) The “ForensOMICS” approach for postmortem interval estimation from human bone by integrating metabolomics, lipidomics, and proteomics. eLife 11:e83658. https://doi.org/10.7554/eLife.83658 + + 10.7554/eLife.83658 + 36583441 + 9803353 + + + + Buckley M, Collins M, Thomas-Oates J, Wilson JC (2009) Species identification by analysis of bone collagen using matrix-assisted laser desorption/ionisation time-of-flight mass spectrometry. Rapid Communications in Mass Spectrometry 23(23):3843–3854. https://doi.org/10.1002/rcm.4316 + + 10.1002/rcm.4316 + 19899187 + + + + Buekenhout I, Vieira DN, Ferreira MT (2016) Reliability of weathering in the estimation of the post-mortem interval of human remains buried in coffins. Australian J Forensic Sci 50(4):414–427. https://doi.org/10.1080/00450618.2016.1257066 + + 10.1080/00450618.2016.1257066 + + + + Cappellini E, Jensen LJ, Szklarczyk D, Ginolhac A, da Fonseca RA, Stafford TW, Holen SR, Collins MJ, Orlando L, Willerslev E, Gilbert MT, Olsen JV (2012) Proteomic analysis of a pleistocene mammoth femur reveals more than one hundred ancient bone proteins. J Proteome Res 11(2):917–926. https://doi.org/10.1021/pr200721u + + 10.1021/pr200721u + 22103443 + + + + Carter DO, Yellowlees D, Tibbett M (2008) Temperature affects microbial decomposition of cadavers (Rattus rattus) in contrasting soils. Appl Soil Ecol 40(1):129–137. https://doi.org/10.1016/j.apsoil.2008.03.010 + + 10.1016/j.apsoil.2008.03.010 + + + + Carter DO, Yellowlees D, Tibbett M (2007) Cadaver decomposition in terrestrial ecosystems. Die Naturwiss 94(1):12–24. https://doi.org/10.1007/s00114-006-0159-1 + + 10.1007/s00114-006-0159-1 + + + + Carvalho MS, Cabral JMS, da Silva CL, Vashishth D (2021) Bone matrix non-collagenous proteins in tissue engineering: creating new bone by mimicking the extracellular matrix. Polymers (Basel) 13(7):1095. https://doi.org/10.3390/polym13071095 + + 10.3390/polym13071095 + 33808184 + 8036283 + + + + Casper JL (1861) A Handbook of the Practice of Forensic Medicine, Based Upon Personal Experience. New Sydenham Society + + + Chhikara A, Kumari P, Dalal J, Kumari K (2025) Protein degradation patterns as biomarkers for post-mortem interval estimation: a comprehensive review of proteomic approaches in forensic science. J Proteomics 310:105326. https://doi.org/10.1016/j.jprot.2024.105326 + + 10.1016/j.jprot.2024.105326 + 39384102 + + + + Chowdhury MP, Buckley M (2022) Trends in deamidation across archaeological bones, ceramics and dental calculus. Methods (San Diego Calif) 200:67–79. https://doi.org/10.1016/j.ymeth.2021.08.004 + + 10.1016/j.ymeth.2021.08.004 + + + + Chowdhury MP, Choudhury KD, Bouchard GP, Riel-Salvatore J, Negrino F, Benazzi S, Slimak L, Frasier B, Szabo V, Harrison R, Hambrecht G, Kitchener AC, Wogelius RA, Buckley M (2021) Machine learning ATR-FTIR spectroscopy data for the screening of collagen for ZooMS analysis and mtDNA in archaeological bone. J Archaeol Sci Article 105311. https://doi.org/10.1016/j.jas.2020.105311 + + 10.1016/j.jas.2020.105311 + + + + Chubb SA (2012) Measurement of C-terminal telopeptide of type I collagen (CTX) in serum. Clin Biochem 45(12):928–935. https://doi.org/10.1016/j.clinbiochem.2012.03.035 + + 10.1016/j.clinbiochem.2012.03.035 + 22504058 + + + + Clarke B (2008) Normal bone anatomy and physiology. Clin J Am Soc Nephrol 3(Suppl 3):S131–S139. https://doi.org/10.2215/CJN.04151206 + + 10.2215/CJN.04151206 + 18988698 + 3152283 + + + + Cleland TP, Schroeter ER, Schweitzer MH (2015) Biologically and diagenetically derived peptide modifications in Moa collagens. Proc R Soc B Biol Sci (1808):20150015. https://doi.org/10.1098/rspb.2015.0015 + + 10.1098/rspb.2015.0015 + + + + Coe JI (1989) Vitreous potassium as a measure of the postmortem interval: an historical review and critical evaluation. Forensic Sci Int 42(3):201–213. https://doi.org/10.1016/0379-0738(89)90087-x + + 10.1016/0379-0738(89)90087-x + 2676789 + + + + Collins MJ, Nielsen-Marsh CM, Hiller J, Smith CI, Roberts JP, Prigodich RV, Wess TJ, Csapò J, Millard AR, Turner-Walker G (2002) The survival of organic matter in bone: A review. Archaeometry 44(3):383–394. https://doi.org/10.1111/1475-4754.t01-1-00071 + + 10.1111/1475-4754.t01-1-00071 + + + + Collins MJ, Riley MS, Child AM, Turner-Walker G (1995) A basic mathematical simulation of the chemical degradation of ancient collagen. J Archaeol Sci 22(2):175–183. https://doi.org/10.1006/jasc.1995.0019 + + 10.1006/jasc.1995.0019 + + + + Cook GT, MacKenzie AB (2014) Radioactive isotope analyses of skeletal materials in forensic science: a review of uses and potential uses. Int J Legal Med 128(4):685–698. https://doi.org/10.1007/s00414-014-0970-8 + + 10.1007/s00414-014-0970-8 + 24553729 + + + + Cordeiro C, Ordóñez-Mayán L, Lendoiro E, Febrero-Bande M, Vieira DN, Muñoz-Barús JI (2019) A reliable method for estimating the postmortem interval from the biochemistry of the vitreous humor, temperature and body weight. Forensic Sci Int 295:157–168. https://doi.org/10.1016/j.forsciint.2018.12.007 + + 10.1016/j.forsciint.2018.12.007 + 30611119 + + + + Cox J, Mann M (2008) MaxQuant enables high peptide identification rates, individualized p.p.b.-range mass accuracies and proteome-wide protein quantification. Nat Biotechnol 26(12):1367–1372. https://doi.org/10.1038/nbt.1511 + + 10.1038/nbt.1511 + 19029910 + + + + Dalal J, Sharma S, Bhardwaj T, Dhattarwal SK (2023) Assessment of post-mortem submersion interval using total aquatic decomposition scores of drowned human cadavers. J Forensic Sci 68(2):549–557. https://doi.org/10.1111/1556-4029.15220 + + 10.1111/1556-4029.15220 + 36789865 + + + + Dickson GC, Poulter RT, Maas EW, Probert PK, Kieser JA (2011) Marine bacterial succession as a potential indicator of postmortem submersion interval. Forensic Sci Int 209(1–3):1–10. https://doi.org/10.1016/j.forsciint.2010.10.016 + + 10.1016/j.forsciint.2010.10.016 + 21074955 + + + + Donno AD, Campobasso CP, Santoro V, Leonardi S, Tafuri S, Introna F (2014) Bodies in sequestered and non-sequestered aquatic environments: a comparative taphonomic study using decompositional scoring system. Sci justice: J Forensic Sci Soc 54(6):439–446. https://doi.org/10.1016/j.scijus.2014.10.003 + + 10.1016/j.scijus.2014.10.003 + + + + Dunn MJ (1993) Gel electrophoresis : proteins. Bios Scientific Publishers in association with the Biochemical Society + + + Duong V-A, Park J-M, Lim H-J, Lee H (2021) Proteomics in forensic analysis: applications for human samples. Appl Sci 11(8):3393. https://doi.org/10.3390/app11083393 + + 10.3390/app11083393 + + + + Ferreira MT, Cunha E (2013) Can we infer post mortem interval on the basis of decomposition rate? A case from a Portuguese cemetery. Forensic Sci Int (1–3):298.e1–298.e2986. https://doi.org/10.1016/j.forsciint.2013.01.006 + + 10.1016/j.forsciint.2013.01.006 + 23357229 + + + + Forbes SL, Wilson ME, Stuart BH (2011) Examination of adipocere formation in a cold water environment. Int J Legal Med 125(5):643–650. https://doi.org/10.1007/s00414-010-0460-6 + + 10.1007/s00414-010-0460-6 + 20437052 + + + + Franceschetti L, Amadasi A, Bugelli V, Bolsi G, Tsokos M (2023) Estimation of late postmortem interval: where do we stand? A literature review. Biology (Basel) 12(6):783. https://doi.org/10.3390/biology12060783 + + 10.3390/biology12060783 + 37372068 + 10295266 + + + + Garcés-Parra C, Saldivia P, Hernández M et al (2024) Enhancing late postmortem interval prediction: a pilot study integrating proteomics and machine learning to distinguish human bone remains over 15 years. Biol Res 57:75. https://doi.org/10.1186/s40659-024-00552-8 + + 10.1186/s40659-024-00552-8 + 39444040 + 11515459 + + + + Gent L, Chiappetta ME, Hesketh S, Palmowski P, Porter A, Bonicelli A, Schwalbe EC, Procopio N (2024) Bone Proteomics Method Optimization for Forensic Investigations. J Proteome Res 23(5):1844–1858. https://doi.org/10.1021/acs.jproteome.4c00151 + + 10.1021/acs.jproteome.4c00151 + 38621258 + 11077585 + + + + Gillet LC, Navarro P, Tate S, Röst H, Selevsek N, Reiter L, Bonner R, Aebersold R (2012) Targeted data extraction of the MS/MS spectra generated by data-independent acquisition: A new concept for consistent and accurate proteome analysis. Mol Cell Proteomics (6):O111.016717. https://doi.org/10.1074/mcp.O111.016717 + + 10.1074/mcp.O111.016717 + 22261725 + 3433915 + + + + Goff LM (2009) Early post-mortem changes and stages of decomposition in exposed cadavers. Exp Appl Acarol 49(1–2):21–36. https://doi.org/10.1007/s10493-009-9284-9 + + 10.1007/s10493-009-9284-9 + + + + Grassberger M, Friedrich E, Reiter C (2003) The blowfly Chrysomya albiceps (Wiedemann) (Diptera: Calliphoridae) as a new forensic indicator in Central Europe. Int J Legal Med 117:75–81. https://doi.org/10.1007/s00414-002-0323-x + + 10.1007/s00414-002-0323-x + 12690503 + + + + Grupe G (1995) Preservation of collagen in bone from dry, sandy soil. J Archaeol Sci 22:193–199. https://doi.org/10.1006/jasc.1995.0021 + + 10.1006/jasc.1995.0021 + + + + Guareschi EE, Pember L, Magni PA (2024) The degradation of collagen in submerged bones, analysed by ImageJ® and Orbit®, for the estimation of the post-mortem interval (PMI) and the post-mortem submersion interval (PMSI). Aust J Forensic Sci 56(S1):55–57. https://doi.org/10.1080/00450618.2024.2324734 + + 10.1080/00450618.2024.2324734 + + + + Heaton V, Lagden A, Moffatt C, Simmons T (2010) Predicting the postmortem submersion interval for human remains recovered from U.K. waterways. J Forensic Sci 55(2):302–307. https://doi.org/10.1111/j.1556-4029.2009.01291.x + + 10.1111/j.1556-4029.2009.01291.x + 20102465 + + + + Hedges REM (2002) Bone diagenesis: An overview of processes. Archaeometry 44(3):319–328. https://doi.org/10.1111/1475-4754.00064 + + 10.1111/1475-4754.00064 + + + + Henssge C, Madea B (2007) Estimation of the time since death. Forensic Sci Int 165(2–3):182–184. https://doi.org/10.1016/j.forsciint.2006.05.017 + + 10.1016/j.forsciint.2006.05.017 + 16797901 + + + + Hill RC, Wither MJ, Nemkov T, Barrett A, D’Alessandro A, Dzieciatkowska M, Hansen KC (2015) Preserved Proteins from Extinct Bison latifrons Identified by Tandem Mass Spectrometry; Hydroxylysine Glycosides are a Common Feature of Ancient Collagen. Mol Cell proteomics: MCP 14(7):1946–1958. https://doi.org/10.1074/mcp.M114.047787 + + 10.1074/mcp.M114.047787 + 25948757 + 4587324 + + + + Humphreys MK, Panacek E, Green W, Albers E (2013) Comparison of protocols for measuring and calculating postmortem submersion intervals for human analogs in fresh water. J Forensic Sci 58(2):513–517. https://doi.org/10.1111/1556-4029.12033 + + 10.1111/1556-4029.12033 + 23278272 + + + + Iqbal M, Ueland M, Forbes S (2020) Recent advances in the estimation of post-mortem interval in forensic taphonomy. Australian J Forensic Sci 52:107–123. https://doi.org/10.1080/00450618.2018.1459840 + + 10.1080/00450618.2018.1459840 + + + + Jeffreys AJ, Wilson V, Thein SL (1985) Individual-specific ‘fingerprints’ of human DNA. Nature 316(6023):76–79. https://doi.org/10.1038/316076a0 + + 10.1038/316076a0 + 2989708 + + + + Jellinghaus K, Hachmann C, Hoeland K, Bohnert M, Wittwer-Backofen U (2018) Collagen degradation as a possibility to determine the post-mortem interval (PMI) of animal bones: a validation study referring to an original study of Boaks et al. (2014). Int J Legal Med 132(3):753–763. https://doi.org/10.1007/s00414-017-1747-7 + + 10.1007/s00414-017-1747-7 + 29177807 + + + + Jellinghaus K, Urban PK, Hachmann C, Bohnert M, Hotz G, Rosendahl W, Wittwer-Backofen U (2019) Collagen degradation as a possibility to determine the post-mortem interval (PMI) of human bones in a forensic context - a survey. Legal medicine (Tokyo, Japan) 36:96–102. https://doi.org/10.1016/j.legalmed.2018.11.009 + + 10.1016/j.legalmed.2018.11.009 + 30500672 + + + + Jopp E, Augustin C, Busse B, Fuhrmann A, Hahn M, Tsokos M, Verhoff M, Schulz F (2016) The assessment of adipocere to estimate the post-mortem interval - a skeleton from the tidelands. Anthropol Anz 73:1–13. https://doi.org/10.1127/anthranz/2016/0615 + + 10.1127/anthranz/2016/0615 + + + + Kaiser C, Bachmeier B, Conrad C, Nerlich A, Bratzke H, Eisenmenger W, Peschel O (2008) Molecular study of time dependent changes in DNA stability in soil buried skeletal residues. Forensic Sci Int 177(1):32–36. https://doi.org/10.1016/j.forsciint.2007.10.005 + + 10.1016/j.forsciint.2007.10.005 + 18063334 + + + + Kemp BM, Smith DG (2005) Use of bleach to eliminate contaminating DNA from the surface of bones and teeth. Forensic Sci Int 154(1):53–61. https://doi.org/10.1016/j.forsciint.2004.11.017 + + 10.1016/j.forsciint.2004.11.017 + 16182949 + + + + Longato S, Wöss C, Hatzer-Grubwieser P, Bauer C, Parson W, Unterberger SH, Kuhn V, Pemberger N, Pallua AK, Recheis W, Lackner R, Stalder R, Pallua JD (2015) Post-mortem interval estimation of human skeletal remains by micro-computed tomography, mid-infrared microscopic imaging and energy dispersive X-ray mapping. Anal Methods 7(7):2917–2927. https://doi.org/10.1039/c4ay02943g + + 10.1039/c4ay02943g + 25878731 + 4383336 + + + + Madea B (2016) Methods for determining time of death. Forensic Sci Med Pathol 12(4):451–485. https://doi.org/10.1007/s12024-016-9776-y + + 10.1007/s12024-016-9776-y + 27259559 + + + + Marrone A, La Russa D, Barberio L, Murfuni MS, Gaspari M, Pellegrino D (2023) Forensic proteomics for the discovery of new post mortem interval biomarkers: a preliminary study. Int J Mol Sci 24(19):14627. https://doi.org/10.3390/ijms241914627 + + 10.3390/ijms241914627 + 37834074 + 10572818 + + + + Mello RB, Silva MR, Alves MT, Evison MP, Guimarães MA, Francisco RA, Astolphi RD, Iwamura ES (2017) Tissue microarray analysis applied to bone diagenesis. Sci Rep 7:39987. https://doi.org/10.1038/srep39987 + + 10.1038/srep39987 + 28051148 + 5209720 + + + + Merkley ED, Wunschel DS, Wahl KL, Jarman KH (2019) Applications and challenges of forensic proteomics. Forensic Sci Int 297:350–363. https://doi.org/10.1016/j.forsciint.2019.01.022 + + 10.1016/j.forsciint.2019.01.022 + 30929674 + + + + Mickleburgh HL, Schwalbe EC, Bonicelli A, Mizukami H, Sellitto F, Starace S, Wescott DJ, Carter DO, Procopio N (2021) Human Bone Proteomes before and after Decomposition: Investigating the Effects of Biological Variation and Taphonomic Alteration on Bone Protein Profiles and the Implications for Forensic Proteomics. J Proteome Res 20(5):2533–2546. https://doi.org/10.1021/acs.jproteome.0c00992 + + 10.1021/acs.jproteome.0c00992 + 33683123 + 8155572 + + + + Milroy CM (1999) Forensic taphonomy: the postmortem fate of human remains. BMJ (Clinical research ed.) 319(7207):458. https://doi.org/10.1136/bmj.319.7207.458 + + 10.1136/bmj.319.7207.458 + 10445946 + 1127062 + + + + Mizukami H, Hathway B, Procopio N (2020) Aquatic Decomposition of Mammalian Corpses: A Forensic Proteomic Approach. J Proteome Res 19(5):2122–2135. https://doi.org/10.1021/acs.jproteome.0c00060 + + 10.1021/acs.jproteome.0c00060 + 32242669 + + + + Mohamed AM (2008) An overview of bone cells and their regulating factors of differentiation. Malaysian J Med sciences: MJMS 15(1):4–12 + + + Nelson EL (2000) Estimation of short-term postmortem interval utilizing core body temperature: a new algorithm. Forensic Sci Int 109(1):31–38. https://doi.org/10.1016/s0379-0738(99)00216-9 + + 10.1016/s0379-0738(99)00216-9 + 10759069 + + + + Nielsen-Marsh CM, Smith CI, Jans MM, Nord A, Kars H, Collins MJ (2009) Bone diagenesis in the European Holocene II: taphonomic and environmental considerations. J Archaeol Sci 36(7):1524–1531. https://doi.org/10.1016/j.jas.2006.11.012 + + 10.1016/j.jas.2006.11.012 + + + + Ntasi G, Palomo IR, Marino G et al (2022) Molecular signatures written in bone proteins of 79 AD victims from Herculaneum and Pompeii. Sci Rep 12:8401. https://doi.org/10.1038/s41598-022-12042-6 + + 10.1038/s41598-022-12042-6 + 35624181 + 9142588 + + + + O’Brien TG, Kuehner AC (2007) Waxing grave about adipocere: soft tissue change in an aquatic context. J Forensic Sci 52(2):294–301. https://doi.org/10.1111/j.1556-4029.2006.00362.x + + 10.1111/j.1556-4029.2006.00362.x + 17316224 + + + + Ostrom PH, Gandhi H, Strahler JR, Walker AK, Andrews PC, Leykam J (2006) Unraveling the sequence and structure of the protein osteocalcin from a 42 ka fossil horse bone. Geochim Cosmochim Acta 70(8):2035–2044. https://doi.org/10.1016/j.gca.2006.01.004 + + 10.1016/j.gca.2006.01.004 + + + + Page, M. J., McKenzie, J. E., Bossuyt, P. M., Boutron, I., Hoffmann, T. C., Mulrow,C. D., … Moher, D. (2021). The PRISMA 2020 statement: an updated guideline for reporting systematic reviews.BMJ, n71. https://doi.org/10.1136/bmj.n71 + + + Palazzo C, Pelletti G, Fais P, Berto RB, Fersini F, Gaudio RM, Pelotti S (2019) Postmortem Submersion Interval in human bodies recovered from fresh water in an area of Mediterranean climate. Application and comparison of preexisting models. Forensic Sci Int 110051. https://doi.org/10.1016/j.forsciint.2019.110051 + + + Pérez-Martínez C, Pérez-Cárceles MD, Legaz I, Prieto-Bonete G, Luna A (2017) Quantification of nitrogenous bases, DNA and Collagen type I for the estimation of the postmortem interval in bone remains. Forensic Sci Int 281:106–112. https://doi.org/10.1016/j.forsciint.2017.10.039 + + 10.1016/j.forsciint.2017.10.039 + 29125988 + + + + Perkins DN, Pappin DJ, Creasy DM, Cottrell JS (1999) Probability-based protein identification by searching sequence databases using mass spectrometry data. Electrophoresis 20(18):3551–3567. https://doi.org/10.1002/(SICI)1522-2683(19991201)20:18<3551::AID-ELPS3551>3.0.CO;2-2 + + 10.1002/(SICI)1522-2683(19991201)20:18<3551::AID-ELPS3551>3.0.CO;2-2 + 10612281 + + + + Pittner S, Monticelli FC, Pfisterer A, Zissler A, Sänger AM, Stoiber W, Steinbacher P (2016) Postmortem degradation of skeletal muscle proteins: a novel approach to determine the time since death. Int J Legal Med 130(2):421–431. https://doi.org/10.1007/s00414-015-1210-6 + + 10.1007/s00414-015-1210-6 + 26041514 + + + + Prieto-Bonete G, Pérez-Cárceles MD, Maurandi-López A, Pérez-Martínez C, Luna A (2019) Association between protein profile and postmortem interval in human bone remains. J Proteom 192:54–63. https://doi.org/10.1016/j.jprot.2018.08.008 + + 10.1016/j.jprot.2018.08.008 + + + + Procopio N, Bonicelli A (2024) From flesh to bones: multi-omics approaches in forensic science. Proteomics 24(12–13):e2200335. https://doi.org/10.1002/pmic.202200335 + + 10.1002/pmic.202200335 + 38683823 + + + + Procopio N, Buckley M (2017) Minimizing laboratory-induced decay in bone proteomics. J Proteome Res 16(2):447–458. https://doi.org/10.1021/acs.jproteome.6b00564 + + 10.1021/acs.jproteome.6b00564 + 28152590 + + + + Procopio N, Chamberlain AT, Buckley M (2017) Intra- and interskeletal proteome variations in fresh and buried bones. J Proteome Res 16(5):2016–2029. https://doi.org/10.1021/acs.jproteome.6b01070 + + 10.1021/acs.jproteome.6b01070 + 28436665 + + + + Procopio N, Hopkins RJA, Harvey VL, Buckley M (2021) Proteome Variation with Collagen Yield in Ancient Bone. J Proteome Res 20(3):1754–1769. https://doi.org/10.1021/acs.jproteome.0c01014 + + 10.1021/acs.jproteome.0c01014 + 33529527 + 7944572 + + + + Procopio N, Mein CA, Starace S, Bonicelli A, Williams A (2021) Bone Diagenesis in Short Timescales: Insights from an Exploratory Proteomic Analysis. Biology 10(6):460. https://doi.org/10.3390/biology10060460 + + 10.3390/biology10060460 + 34071025 + 8224596 + + + + Procopio N, Williams A, Chamberlain AT, Buckley M (2018) Forensic proteomics for the evaluation of the post-mortem decay in bones. J Proteomics 177:21–30. https://doi.org/10.1016/j.jprot.2018.01.016 + + 10.1016/j.jprot.2018.01.016 + 29407476 + + + + Ramsthaler F, Ebach SC, Birngruber CG, Verhoff MA (2011) Postmortem interval of skeletal remains through the detection of intraosseal hemin traces. A comparison of UV-fluorescence, luminol, Hexagon-OBTI®, and Combur® tests. Forensic Sci Int 209(1–3):59–63. https://doi.org/10.1016/j.forsciint.2010.12.011 + + 10.1016/j.forsciint.2010.12.011 + 21237592 + + + + Reijnen G, Gelderman HT, Oude Grotebevelsborg BFL, Reijnders UJL, Duijst WLJM (2018) The correlation between the aquatic decomposition score (ADS) and the post-mortem submersion interval measured in accumulated degree days (ADD) in bodies recovered from fresh water. Forensic Sci Med Pathol 14(3):301–306. https://doi.org/10.1007/s12024-018-9987-5 + + 10.1007/s12024-018-9987-5 + 29799098 + + + + Romina C, Alessandro F, Emilio P, Stefano M, Saverio P, Gian M (2018) Overview on the estimation of post mortem interval in forensic anthropology: Review of the literature and practical experience. Rom J Leg Med 26:403–411. https://doi.org/10.4323/rjlm.2018.403 + + 10.4323/rjlm.2018.403 + + + + López RJL, Navadijo PM (2025) Estimation of the post-mortem interval: A review. Forensic Sci Int 369:112412. https://doi.org/10.1016/j.forsciint.2025.112412 + + 10.1016/j.forsciint.2025.112412 + + + + Saukko P, Knight B (2015) Knight’s Forensic Pathology, 4th ed. CRC Press. https://doi.org/10.1201/b13266 + + 10.1201/b13266 + + + + Sawafuji R, Cappellini E, Nagaoka T, Fotakis AK, Jersie-Christensen RR, Olsen JV, Hirata K, Ueda S (2017) Proteomic profiling of archaeological human bone. R Soc Open Sci 4(6):161004. https://doi.org/10.1098/rsos.161004 + + 10.1098/rsos.161004 + 28680659 + 5493901 + + + + Schweitzer MH, Avci R, Collier T, Goodwin MB (2007) Soft tissue and cellular preservation in vertebrate skeletal elements from the Cretaceous to the present. Proc Royal Soc B: Biol Sci 274(1607):183–197. https://doi.org/10.1098/rspb.2006.3705 + + 10.1098/rspb.2006.3705 + + + + Secco L, Palumbi S, Padalino P, Grosso E, Perilli M, Casonato M, Cecchetto G, Viel G (2025) “Omics” and postmortem interval estimation: A systematic review. Int J Mol Sci 26(3):1034. https://doi.org/10.3390/ijms26031034 + + 10.3390/ijms26031034 + 39940802 + 11817326 + + + + Simmons T (2017) Post-Mortem Interval Estimation: an Overview of Techniques. Taphon Hum Remains: Forensic Anal Dead Depositional Environ 134–142. https://doi.org/10.1002/9781118953358.ch10 + + + UniProt Consortium (2021) UniProt: The universal protein knowledgebase in 2021. Nucleic Acids Res 49(D1):D480–D489. https://doi.org/10.1093/nar/gkaa1100 + + 10.1093/nar/gkaa1100 + + + + van Daalen MA, de Kat DS, Oude Grotebevelsborg BF, de Leeuwe R, Warnaar J, Oostra RJ, Duijst-Heesters MWL (2017) An aquatic decomposition scoring method to potentially predict the postmortem submersion interval of bodies recovered from the North Sea. J Forensic Sci 62(2):369–373. https://doi.org/10.1111/1556-4029.13258 + + 10.1111/1556-4029.13258 + 28247448 + + + + van Doorn NL, Wilson J, Hollund H, Soressi M, Collins MJ (2012) Site-specific deamidation of glutamine: a new marker of bone collagen deterioration. Rapid Commun mass spectrometry: RCM 26(19):2319–2327. https://doi.org/10.1002/rcm.6351 + + 10.1002/rcm.6351 + 22956324 + + + + Wadsworth C, Buckley M (2014) Proteome degradation in fossils: Investigating the longevity of protein survival in ancient bone. Rapid Commun Mass Spectrom 28(6):605–615. https://doi.org/10.1002/rcm.6821 + + 10.1002/rcm.6821 + 24519823 + 4282581 + + + + Wadsworth C, Procopio N, Anderung C, Carretero JM, Iriarte E, Valdiosera C, Elburg R, Penkman K, Buckley M (2017) Comparing ancient DNA survival and proteome content in 69 archaeological cattle tooth and bone samples from multiple European sites. J Proteom 158:1–8. https://doi.org/10.1016/j.jprot.2017.01.004 + + 10.1016/j.jprot.2017.01.004 + + + + Widya M, Moffatt C, Simmons T (2012) The formation of early stage adipocere in submerged remains: a preliminary experimental study. J Forensic Sci 57(2):328–333. https://doi.org/10.1111/j.1556-4029.2011.01980.x + + 10.1111/j.1556-4029.2011.01980.x + 22150268 + + + + Woess C, Unterberger SH, Roider C, Ritsch-Marte M, Pemberger N, Cemper-Kiesslich J, Hatzer-Grubwieser P, Parson W, Pallua JD (2017) Assessing various infrared (IR) microscopic imaging techniques for post-mortem interval evaluation of human skeletal remains. PLoS One 12(3):e0174552. https://doi.org/10.1371/journal.pone.0174552 + + 10.1371/journal.pone.0174552 + 28334006 + 5363948 + + + + Zapico SC, Adserias-Garriga J (2022) Postmortem Interval Estimation: New Approaches by the Analysis of Human Tissues and Microbial Communities’ Changes. Forensic Sci 2(1):163–174. https://doi.org/10.3390/forensicsci2010013 + + 10.3390/forensicsci2010013 + + + + Zeng WF, Zhou XX, Willems S et al (2022) AlphaPeptDeep: a modular deep learning framework to predict peptide properties for proteomics. Nat Commun 13:7238. https://doi.org/10.1038/s41467-022-34904-3 + + 10.1038/s41467-022-34904-3 + 36433986 + 9700817 + + + + Zerbino, D. R., Achuthan, P., Akanni, W., Amode, M. R., Barrell, D., Bhai, J., Billis,K., Cummins, C., Gall, A., Girón, C. G., Gil, L., Gordon, L., Haggerty, L., Haskell,E., Hourlier, T., Izuogu, O. G., Janacek, S. H., Juettemann, T., To, J. K., Laird,M. R., … Flicek, P. (2018). Ensembl 2018. Nucleic acids research, 46(D1), D754–D761. https://doi.org/10.1093/nar/gkx1098 + + + Zhang J, Xin L, Shan B, Chen W, Xie M, Yuen D, Zhang W, Zhang Z, Lajoie GA, Ma B (2012) PEAKS DB: de novo sequencing assisted database search for sensitive and accurate peptide identification. Mol Cell proteomics: MCP 11(4) M111.010587. https://doi.org/10.1074/mcp.M111.010587 + + + Zhang M, Su Q, Lu Y, Zhao M, Niu B (2017) Application of Machine Learning Approaches for Protein-protein Interactions Prediction. Medicinal chemistry (Shariqah (United Arab Emirates)), 13(6), 506–514. https://doi.org/10.2174/1573406413666170522150940 + + + Zissler A, Stoiber W, Steinbacher P, Geissenberger J, Monticelli FC, Pittner S (2020) Postmortem protein degradation as a tool to estimate the PMI: a systematic review. Diagnostics (Basel Switzerland) 10(12):1014. https://doi.org/10.3390/diagnostics10121014 + + 10.3390/diagnostics10121014 + 33256203 + 7760775 + + + + +
+ + + 42215696 + + 2026 + 05 + 29 + +
+ + 1546-170X + + + 2026 + May + 29 + + + Nature medicine + Nat Med + + From donor lungs to digital twins. + 10.1038/d41591-026-00029-z + + + O'Leary + Karen + K + + + eng + + News + + + 2026 + 05 + 29 + +
+ + United States + Nat Med + 9502015 + 1078-8956 + + IM + + Machine Learning + Technology + Translational research + +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 22 + + + aheadofprint + + 42215696 + 10.1038/d41591-026-00029-z + 10.1038/d41591-026-00029-z + + +
+ + + 42215691 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + O²RDL-net for joint risk classification and delay forecasting in logistics systems using interaction amplified deep. + 10.1038/s41598-026-55703-6 + + Transportation and logistics systems face frequent delays and operational risks due to congestion, human factors, and rapidly changing conditions. Predicting delays and identifying risk levels in advance is therefore essential for reliable logistics planning. Most existing methods handle delay forecasting and risk classification separately and often fail to capture complex temporal and interaction-driven patterns. To overcome these limitations, this study proposes O²RDL-Net, a load-aware and interaction-amplified deep learning framework for joint risk classification and delay forecasting. The proposed model integrates higher-order operational indicators, including the Risk Accumulation Index, Delay Sensitivity Indicator, Human-Operational Interaction Score, and Logistics System Representation, to capture cumulative risk, short-term sensitivity, and system-level interactions. A spatio-temporal attention encoder with risk regime modulation is used to improve learning stability and generalization. Experimental results show that O²RDL-Net achieves superior performance compared to baseline models, with a mean absolute error of 2.05, RMSE of 3.01, and R² of 0.91 for delay forecasting. For risk classification, the model reaches an accuracy of 92%, precision of 91%, recall of 92%, and F1-score of 91%. Interpretability analysis using SHAP and local explanations confirms that the model relies on meaningful and domain-consistent features. Overall, O²RDL-Net provides an accurate, stable, and interpretable solution for real-world logistics risk and delay management. + © 2026. The Author(s). + + + + Yang + Xiao + X + + Low-altitude Management and Digital Economy College, XIHANG UNIVERSITY, Xi'an, 710077, China. jonah-y@xaau.edu.cn. + + + + eng + + + Grant No. 2025YB0214 + Research on the Coupled and Coordinated Development of Transportation and Modern Industrial System in Shaanxi Province + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Artificial intelligence + Deep Learning + Feature Construction + Forecasting + Logistics Network + Machine Learning + Risk Prediction + Supply Chain + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 9 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215691 + 10.1038/s41598-026-55703-6 + 10.1038/s41598-026-55703-6 + + +
+ + + 42215678 + + 2026 + 05 + 29 + +
+ + 2398-6352 + + + 2026 + May + 29 + + + NPJ digital medicine + NPJ Digit Med + + Detecting dataset bias in medical AI using a generalized and modality agnostic auditing approach. + 10.1038/s41746-026-02807-y + + Despite many success stories along the path of Artificial Intelligence's (AI) rise in healthcare, there are comparably many reports of significant shortcomings and unexpected behavior of AI in deployment. A major risk is AI's reliance on association-based learning, where non-representative machine learning datasets can amplify latent bias during training and hide it during testing. To unlock new tools capable of detecting such AI bias issues, we present Generalized Attribute Utility and Detectability-Induced bias Testing (G-AUDIT). G-AUDIT is a data modality-agnostic dataset auditing approach that automatically quantifies shortcut learning risks by examining the interplay between task-level annotations, sensor-level measurements, and patient, environmental, and acquisition characteristics. We demonstrate the broad applicability of this method by analyzing a range of medical datasets across three distinct modalities (images, text, and tabular data) and machine learning tasks, successfully identifying potential shortcuts commonly overlooked by traditional qualitative methods. + © 2026. The Author(s). + + + + Drenkow + Nathan + N + + The Johns Hopkins University, Baltimore, MD, USA. nathan.drenkow@jhuapl.edu. + + + The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA. nathan.drenkow@jhuapl.edu. + + + + Pavlak + Mitchell + M + + The Johns Hopkins University, Baltimore, MD, USA. + + + + Harrigian + Keith + K + + The Johns Hopkins University, Baltimore, MD, USA. + + + + Zirikly + Ayah + A + + The Johns Hopkins University, Baltimore, MD, USA. + + + Department of Computer Science, School of Engineering and Applied Science, George Washington University, Washington, DC, USA. + + + + Subbaswamy + Adarsh + A + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Farhangi + Mohammad Mehdi + MM + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Petrick + Nicholas + N + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Unberath + Mathias + M + + The Johns Hopkins University, Baltimore, MD, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Digit Med + 101731738 + 2398-6352 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 6 + 3 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215678 + 10.1038/s41746-026-02807-y + 10.1038/s41746-026-02807-y + + +
+ + + 42215677 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Stacked multi-fusion CNN: an adaptive attention model for privacy preserving deepfake forensics. + 10.1038/s41598-026-55325-y + + The emergence of Generative Artificial Intelligence (Gen-AI) and Generative Adversarial Network (GAN)-based deepfakes poses significant security risks in sociocultural and sociopolitical domains. This necessitates the development of advanced and effective detection methods to prevent vulnerability in social networks. Classical Machine Learning (ML) algorithms have their limitations, especially in classifying the deepfakes. To address these issues, this paper suggests a privacy-preserving Stacked Multi-Fusion (SMF) Convolutional Neural Network (CNN) approach to classify deepfakes. An improved CNN model is proposed, integrating an adaptive multi-scale attention framework with enhanced residual blocks and a Squeeze-and-Excitation (SE) mechanism. The selection of these components is backed with an ablation study to report the individual contribution to the overall optimal architecture. A hybrid lossless multilayer cryptosystem based on a chaos-based approach, Deoxyribonucleic Acid (DNA)-based computing, etc., is developed to secure images in cloud storage. The efficacy of the proposed SMF model is validated using the 140K Real and Fake Faces (RFF) image dataset. The proposed approach was found to achieve stable performance with minimal variation in various tests. It achieved a test accuracy and ROC-AUC of 97.80 and 99.79, respectively. This paper provides comprehensive relevant factors for building effective synthetic media detection systems. + © 2026. The Author(s). + + + + Rout + Jayanti + J + + P. G. Department of Computer Science, Fakir Mohan University, Balasore, 756019, Odisha, India. + + + + Mishra + Minati + M + + P. G. Department of Computer Science, Fakir Mohan University, Balasore, 756019, Odisha, India. + + + + Barik + Ram Chandra + RC + + Department of CSE, C. V. Raman Global University, Bhubaneswar, 752054, Odisha, India. + + + + Yadav + Devendra Kumar + DK + + School of Computer Science and Engineering, XIM University, Bhubaneswar, 752050, Odisha, India. devendra@xim.edu.in. + + + + Prasad + Dilip K + DK + + Department of Computer Science, UiT The Arctic University of Norway, Tromsø, 9037, Norway. + + + + Sekh + Arif Ahmed + AA + + Department of Computer Science, UiT The Arctic University of Norway, Tromsø, 9037, Norway. arif.a.sekh@uit.no. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Convolutional neural network + Deepfake detection + Squeeze-and-excitation attention + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 25 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215677 + 10.1038/s41598-026-55325-y + 10.1038/s41598-026-55325-y + + +
+ + + 42215670 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + A hybrid AI vision model for single-camera tracking of rehabilitation exercises: a proof of concept in clinical settings. + 10.1038/s41598-026-55431-x + + Accurate measurement of range of motion (ROM) during physical rehabilitation is traditionally achieved using goniometers or multi-camera, marker-based motion capture systems. The latter, while highly accurate, require specialised laboratory infrastructure, are costly, and are unsuitable for home-based use. There is growing interest in markerless, camera-based alternatives that leverage artificial intelligence (AI) for joint angle estimation. This study presents a preliminary proof-of-concept evaluation of a hybrid AI vision system, combining the MediaPipe Pose framework (version 0.8.9.1, Full model variant) with a Mamdani-type fuzzy inference system, for joint angle estimation and exercise repetition counting using a single consumer-grade camera. Fourteen healthy adult rehabilitation staff members performed three exercises (elbow flexion, knee extension, and hip external rotation) simultaneously recorded by the proposed AI system and by a reference optical motion capture system (C-Motion Visual3D™, 14 calibrated infrared cameras, 53 retro-reflective markers). Reliability was assessed using two-way mixed-effects intraclass correlation coefficients (ICC[Formula: see text]) with absolute agreement. Individual-measure ICC values ranged from poor to good across joints and conditions (range: 0.005-0.68). The highest reliability was observed for the right hip external rotation ROM (individual ICC [Formula: see text]; average ICC [Formula: see text], 95% CI: 0.63-0.89). Several measures showed poor reliability, including the right elbow flexion ROM (individual ICC [Formula: see text]) and the minimum angle of the left hip external rotation (individual ICC [Formula: see text]). Confidence intervals were wide throughout. This proof of concept demonstrates that a single-camera AI system can capture general trends in joint angles during simple rehabilitation exercises in healthy adults under controlled conditions. However, reliability is inconsistent and frequently poor, and the system has not been evaluated in patient populations with pathological movement patterns. These findings do not support clinical deployment at this stage. Substantial further development and validation in patient cohorts are required before clinical or home-based use can be considered. + © 2026. The Author(s). + + + + Das + Utpal Chandra + UC + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + School of Clinical Sciences, Faculty of Health, Queensland University of Technology, Kelvin Grove, Brisbane, QLD, 4059, Australia. + + + Centre for Biomedical Technologies (CBT), Queensland University of Technology, Brisbane, QLD, 4000, Australia. + + + + Le + Ngoc Thien + NT + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Vitoonpong + Timporn + T + + Department of Rehabilitation Medicine, Faculty of Medicine, Chulalongkorn University, Bangkok, 10330, Thailand. timporn.v@chula.ac.th. + + + Department of Rehabilitation Medicine, King Chulalongkorn Memorial Hospital & The Thai Red Cross Society, Bangkok, 10330, Thailand. timporn.v@chula.ac.th. + + + + Pongmala + Chatkaew + C + + Department of Radiology, University of Michigan, Ann Arbor, 48104, MI, USA. + + + Department of Neurology, University of Michigan, Ann Arbor, 48104, MI, USA. + + + + Prapinpairoj + Chalermdej + C + + Department of Rehabilitation Medicine, King Chulalongkorn Memorial Hospital & The Thai Red Cross Society, Bangkok, 10330, Thailand. + + + + Anannub + Kawee + K + + Health Service Center, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Kaewplung + Pasu + P + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Chaitusaney + Surachai + S + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. surachai.c@chula.ac.th. + + + + Benjapolakul + Watit + W + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. watit.b@chula.ac.th. + + + + eng + + + B04G640068 + National Science, Research and Innovation Fund (NSRF) via the Program Management Unit for Human Resources & Institutional Development, Research and Innovation + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + Competing interests: The authors declare no competing interests. Ethical approval: The research conducted with healthy human participants at Chulalongkorn University in Thailand complied with the Regulations Governing Life Science and Medical Research Involving Human Subjects. Approval was secured from the Institutional Review Board of the Faculty of Medicine, Chulalongkorn University, Thailand (COA No. 0495-2022; IRB No. 846-64), in accordance with the Declaration of Helsinki, The Belmont Report, CIOMS Guidelines, and ICH-GCP. Informed consent: All study participants provided written informed consent for participation and for the publication of identifiable information and images. Participants were fully informed of the study objectives, dissemination plans, and potential risks and benefits prior to enrolment. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 9 + 20 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215670 + 10.1038/s41598-026-55431-x + 10.1038/s41598-026-55431-x + + +
+ + + 42215668 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Autism spectrum disorder identification using machine learning models on MRI data. + 10.1038/s41598-026-55163-y + + Autism Spectrum Disorder (ASD) is a neurodevelopmental condition that affects sensory processing, speech, behavior and identifying the condition at an early stage is necessary to provide the treatment. The existing diagnostic methods are mainly based on personalized subjective and time consuming. This study introduces an objective diagnostic method by analyzing technical noise signature producing the Quality Vector which is extracted from multimodal MRI data. This work leverages Machine Learning (ML) and Deep Learning (DL) techniques on this Quality vector for improving ASD detection. The methodology leveraged technical Quality Assessment Protocol (QAP) metrics from the ABIDE II repository, integrating structural (sMRI), functional (fMRI), and diffusion (DTI) modalities. The methodology utilized Density-Based Spatial Clustering of Applications with Noise (DBSCAN) for outlier removal and Principal Component Analysis (PCA) for dimensionality reduction. A classification pipeline was implemented using a 1D-Residual Network (1D-ResNet), Convolutional Neural Network(CNN), SVM, kNN and a proposed Voting Ensemble (SVM, KNN, and XGBoost), validated through stratified 10-fold cross-validation. In this work, the proposed ensemble emerged as the superior model, achieving a diagnostic accuracy of 95.84%. These findings indicate that technical biomarkers derived from imaging quality metrics are highly useful for ASD detection. This research demonstrates that technical quality metrics, often dismissed as noise, contain significant diagnostic value. The Quality Vector framework provides a computationally efficient and objective tool for ASD identification. The high classification performance suggests that the biomarkers obtained from MRI have a potential future scope in research on early ASD diagnosis and detection. + © 2026. The Author(s). + + + + V + Milner Paul + MP + + Department of Electrical Engineering, National Institute of Technology Manipur (NITM), Manipur, India. vithayathilmilner@gmail.com. + + + Department of Electrical and Electronics Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. vithayathilmilner@gmail.com. + + + + Babu + Caren + C + + Department of Electronics and Communication Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. + + + + Jose + Suni + S + + Department of Computer Science and Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. + + + + Adhikari + Shuma + S + + Department of Electrical Engineering, National Institute of Technology Manipur (NITM), Manipur, India. + + + + Singh + Loitongbam Surajkumar + LS + + Department of Electronics and Communication Engineering, National Institute of Technology Manipur (NITM), Manipur, India. + + + + Francis + Jijo + J + + Department of Zoology, Christ College (Autonomous), 680125, Irinjalakuda, India. + + + + Parekkattil + Adarsh V + AV + + Department of Electronics and Communication, Indian Institute of Technology Roorkee (IITR), Roorkee, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Autism spectrum disorder + Convolutional neural network (CNN) + Early detection + Machine learning + Magnetic resonance imaging + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 7 + 8 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215668 + 10.1038/s41598-026-55163-y + 10.1038/s41598-026-55163-y + + +
+ + + 42215666 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Blockchain-driven machine learning-enabled intrusion-resilient authenticated key agreement protocol for edge-centric IoT systems. + 10.1038/s41598-026-55266-6 + + The edge computing-based Internet of Things (IoT) system minimizes latency by processing data locally, reducing the distance it needs to travel. Processing data in proximity to its source enables rapid decision-making and real-time reactions. The edge-based IoT has several possible uses, including smart cities, smart healthcare, industrial automation & processing, smart farming, and many more. In this paper, we propose a blockchain-driven machine learning-enabled intrusion-resilient authenticated key agreement scheme for edge-centric IoT systems (in short, BMAS-EIoT), which is equipped with the features of authentication, key management, and machine learning-based intrusion detection. In BMAS-EIoT, we provide the network and threat models to enhance comprehension of the organization and deployment of devices and systems, as well as the potential threats to the system. BMAS-EIoT has been observed to possess protection against a variety of potential attacks during the security investigation. Moreover, it has been observed that BMAS-EIoT outperforms other present schemes in terms of performance comparison. A practical implementation of BMAS-EIoT is provided to evaluate the effectiveness of its key components, including intrusion detection and blockchain implementation. Furthermore, BMAS-EIoT possesses supplementary noteworthy capabilities and enhanced security attributes. + © 2026. The Author(s). + + + + Karnatak + Vijay + V + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Tripathi + Neha + N + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Wazid + Mohammad + M + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Mittal + Saksham + S + + Department of Computer Science and Engineering, Graphic Era Hill University, Dehradun, 248002, Uttarakhand, India. + + + + Das + Ashok Kumar + AK + + Center for Security, Theory and Algorithmic Research, International Institute of Information Technology, Hyderabad, 500032, India. ashok.das@iiit.ac.in. + + + Department of Computer Science and Engineering, College of Informatics, Korea University, 145 Anam-ro, Seongbuk-gu, 02841, Seoul, South Korea. ashok.das@iiit.ac.in. + + + + K + Vivekananda Bhat + VB + + Manipal Institute of Technology, Manipal Academy of Higher Education, Manipal, Karnataka, 576104, India. kv.bhat@manipal.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Authentication + Blockchain + Edge computing + Internet of things + Intrusion detection + Security + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 3 + 23 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215666 + 10.1038/s41598-026-55266-6 + 10.1038/s41598-026-55266-6 + + +
+ + + 42215649 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Machine learning based approaches for structure activity relationship analysis of heparanase inhibitors. + 10.1038/s41598-026-55098-4 + + Human Heparanase (HPSE), the only mammalian endo-β-D-glucuronidase, plays an important role in extracellular matrix remodeling and the release of heparin-bound growth factors. Its overexpression is strongly correlated with increased tumor growth, angiogenesis, metastasis, and inflammation, highlighting HPSE as a compelling therapeutic target for oncology and inflammatory diseases. This study aimed to develop and validate a robust computational workflow for predicting the activity class of potential HPSE inhibitors using curated data from the ChEMBL database. Bioactivity data ([Formula: see text]) for known HPSE inhibitors were extracted and put through a meticulous data curation process, which included chemical structure standardization, molecular weight filtering, and final deduplication based on standardized isomeric SMILES to ensure structural uniqueness. Continuous [Formula: see text] values (nM) were converted to [Formula: see text] and subsequently categorized into three activity classes: A ([Formula: see text] and [Formula: see text]), B ([Formula: see text] and [Formula: see text]), and C ([Formula: see text] and [Formula: see text]) for multi-class classification. Molecular representations included two-dimensional physicochemical descriptors, Morgan fingerprints, and three-dimensional descriptors derived from optimized low-energy conformers generated using ETKDGv3 and MMFF94s. Multiple machine learning classifiers were evaluated using pipelines incorporating imputation, scaling, optional Principal Component Analysis (PCA) dimensionality reduction applied to the combined feature sets, and SMOTE (Synthetic Minority Over-sampling Technique) to address class imbalance. Models were trained and optimized using randomized search cross-validation on an 80% training split, maximizing balanced accuracy. The best-performing model pipeline (RF_B, a Random Forest with PCA on 2D+Morgan Fingerprints+3D features) achieved approximately 80% accuracy and 78.5% balanced accuracy on the held-out 20% test set. The final validated model was successfully utilized to predict the activity classes of new, unseen compounds. This comprehensive pipeline provides a validated tool for classifying HPSE inhibitors derived from ChEMBL data, potentially aiding virtual screening efforts and guiding hit prioritization in drug discovery campaigns targeting HPSE. + © 2026. The Author(s). + + + + Shanbhogue + Rachana V + RV + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. shanbhoguerachana@gmail.com. + + + + Gandhi + Neha S + NS + + Department of Biotechnology and Chemical Engineering, Manipal University Jaipur, 303007, Rajasthan, India. neha.gandhi@jaipur.manipal.edu. + + + School of Biomedical Sciences, Queensland University of Technology, Kelvin Grove, Queensland, Brisbane, Australia. neha.gandhi@jaipur.manipal.edu. + + + + B + Shanthi P + SP + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. shanthi.moorkoth@manipal.edu. + + + + Navada + Sandhyalaxmi G + SG + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. sandhya.girish@manipal.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 10 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 20 + + + aheadofprint + + 42215649 + 10.1038/s41598-026-55098-4 + 10.1038/s41598-026-55098-4 + + +
+ + + 42215613 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + A temporal adaptive dictionary-constrained LDA and Bi-calibrated dual granularity DTM framework for dynamic topic evolution analysis in academic papers. + 10.1038/s41598-026-54348-9 + + With the explosive growth of academic achievements in artificial intelligence (AI), accurately capturing the dynamic evolution of research topics is crucial for research topic selection, policy-making, and industrial innovation. To address the limitation that traditional topic models struggle to balance static topic recognition accuracy and dynamic evolution tracking capability, this study proposes a unified framework: Temporal Adaptive Dictionary-Constrained Latent Dirichlet Allocation (LDA) combined with Bi-calibrated Dual Granularity Dynamic Topic Model (DTM). We conduct a systematic empirical analysis of dynamic topic evolution in the AI field using English AI papers retrieved from the Web of Science (WOS) Core Collection (2014-2023). Specifically, we first optimize the topic initialization process of LDA using a domain-specific dictionary to enhance the accuracy of static topic clustering. Second, we take the core topics identified by the optimized LDA as prior knowledge and input them into DTM, while optimizing the traditional single temporal granularity to an "annual + quarterly" dual granularity to accurately track the changes in topic strength, keyword composition, and cross-topic association relationships over time. Finally, we verify the performance of the proposed model using perplexity and topic coherence indicators, and reveal the coupling characteristics between different topics through correlation analysis. Results indicate that six core topic clusters have emerged in the AI field, with "generative AI", "large language models", and "multimodal learning" evolving into explosive topics after 2021, traditional machine learning shows a declining trend, with its core focus shifting toward "few-shot learning" and "edge computing adaptation". The top three topic couplings are "generative AI-large language models", "computer vision-multimodal learning" and "reinforcement learning-robotics". The proposed combined model outperforms single models, achieving a 17.3% reduction in perplexity and a 23.5% decrease in topic drift rate, thereby providing valuable decision support for researchers seeking to grasp field frontiers and management departments for optimizing resource allocation. + © 2026. The Author(s). + + + + Yin + Xueqi + X + + School of International Studies, Tianjin University of Commerce, Tianjin, 300134, China. yinxq@tjcu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Academic paper analysis + Artificial intelligence + Dynamic topic model + Latent dirichlet allocation + Text mining + Topic evolution + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 30 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215613 + 10.1038/s41598-026-54348-9 + 10.1038/s41598-026-54348-9 + + +
+ + + 42215604 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Development and validation of a noninvasive machine learning model using urinary extracellular vesicle physical parameters for prostate cancer diagnosis. + 10.1038/s41598-026-54920-3 + + Urinary extracellular vesicles (uEVs) are promising biomarkers for prostate cancer (PCa). Although novel uEV-based biomarkers have advanced early diagnosis, their detection processes remain cumbersome and cost-prohibitive. The physical parameters of uEVs offer untapped predictive potential for PCa, providing a more convenient, rapid, and cost-effective diagnostic approach. This study aims to construct a predictive model integrating uEV physical parameters with machine learning (ML) algorithms to enhance the early diagnosis of PCa. Urine samples were collected from 222 eligible participants. uEVs were isolated using a commercial kit, and their concentration and size parameters were quantified via nanoparticle tracking analysis (NTA). Utilizing these physical parameters, five ML algorithms were trained and evaluated to identify the optimal diagnostic model for PCa. Model performance was systematically assessed using the area under the receiver operating characteristic curve (AUC), learning curves, calibration curves, and decision curve analysis (DCA). Additionally, SHapley Additive exPlanations (SHAP) were employed to visualize the contributions of key predictors. Analysis of uEV physical parameters revealed that, compared to benign controls, PCa patients exhibited a significantly higher proportion of 30-150 nm uEVs and a smaller overall particle size (p < 0.001). Among the evaluated algorithms, the eXtreme Gradient Boosting (XGBoost) model demonstrated superior performance. For discriminating PCa from benign prostatic hyperplasia (BPH), the XGBoost model achieved AUC values of 0.934 and 0.864 in the training and testing cohorts, respectively. DCA demonstrated that the XGBoost model yielded a higher clinical net benefit across a threshold probability range of 0-60%. Overall, the diagnostic efficacy and clinical utility of the XGBoost model significantly outperformed routine clinical parameters, including prostate-specific antigen (PSA) and prostate-specific antigen density (PSAD). This study successfully developed and validated a noninvasive ML-based diagnostic model utilizing the physical parameters of uEVs. This approach serves as a preliminary adjunctive tool to assist clinicians in accurately identifying prostate cancer, thereby potentially reducing the incidence of unnecessary prostate biopsies. + © 2026. The Author(s). + + + + Jiang + Kangxian + K + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + Department of Surgical Critical Care Medicine, Beijing Shijitan Hospital, Capital Medical University, No.10, Tieyi Road, Beijing, 100038, China. + + + + Pan + Dongwei + D + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Yu + Jiayin + J + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Cai + Wenbing + W + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Zhang + Bingfeng + B + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Zuheng + Z + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Lu + Yuqing + Y + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Wang + Dianyu + D + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + + Li + Xiao + X + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Zheng + Deyong + D + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Mingda + M + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Fubo + F + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + + Chen + Junyi + J + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. chenjunyidoctor@163.com. + + + + eng + + + 82372828, + National Natural Science Foundation of China + + + + 2023GXNSFFA026003 + Science Foundation for Distinguished Young Scholars of Guangxi + + + + AA22096030 + Science and Technology Major Project of Guangxi + + + + 2021015 + Yongjiang Program of Nanning + + + + 2021GGA038 + the Science and Technology Plan Project of Fujian Provincial Health Commission + + + + 2022C035R + High-level Talents Innovation and Entrepreneurship Project of Quanzhou Science and Technology Plan + + + + 2022J01277 + Natural Science Foundation of Fujian Province + + + + 2025CXB023 + Fujian Provincial Health Commission + + + + 2026J001703 + Fujian Provincial Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Diagnosis + Machine learning + NTA + Prostate cancer + Urinary extracellular vesicles + + Declarations. Competing interests: The authors declare no competing interests. Ethics approval and consent to participate: The studies involving human participants were reviewed and approved by the Ethics Committee of Shanghai Changhai Hospital, the Ethics Committee of Taizhou People’s Hospital, and the Ethics Committee of Zhongda Hospital. (Approval No. CHEC2013-115).Clinical trial number: not applicable. This study strictly adhered to the ethical principles outlined in the Declaration of Helsinki, ensuring that all data were derived from actual clinical cases. Informed consent: Informed consent was obtained from each patient or their legal representative before sample collection. Consent for publication: Not applicable. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 14 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215604 + 10.1038/s41598-026-54920-3 + 10.1038/s41598-026-54920-3 + + +
+ + + 42215600 + + 2026 + 05 + 29 + +
+ + 2399-3669 + + + 2026 + May + 29 + + + Communications chemistry + Commun Chem + + CholBindNet as an interpretable neural network for cholesterol-binding site classification. + 10.1038/s42004-026-02064-w + + Cholesterol is a key modulator of membrane protein structure and function, yet predicting cholesterol-binding sites remains challenging due to its non-druglike physicochemical properties. Here, we curated more than 800 high-resolution transmembrane protein structures containing cholesterol, and developed an interpretable, atom-based graph neural network, called CholBindNet. A positive-unlabeled (PU) training strategy was employed to address the scarcity of negative samples due to the promiscuous nature of cholesterol binding. We show that CholBindNet substantially outperforms existing machine learning models trained on general ligand-binding datasets, including AlphaFold3, P2Rank, and DiffDock. The performance and generalizability of the model on unseen membrane proteins were further demonstrated by rapidly assessing cholesterol-binding sites in the PIEZO2 ion channel against all-atom molecular dynamics (MD) simulations conducted on Anton3 supercomputer. Additionally, strong model interpretability was achieved for CholBindNet through atom-level feature encoding, Grad-CAM visualization, and attention-based scoring analysis. Overall, CholBindNet provides an efficient and scalable approach for classifying and ranking cholesterol-binding sites on membrane proteins, achieving performance comparable to computationally expensive MD simulations while offering rich biophysical insights into the atomic-level spatial patterns beyond amino-acid sequence. This work lays the foundation for future deep-learning models targeting membrane protein drug-binding sites and cholesterol-modulated therapeutics. + © 2026. The Author(s). + + + + Hernandez + Alexis + A + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. + + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Bhatt + Aashish + A + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Revilla + Ivan + I + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Levine + Jacob Ede + JE + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. + + + + Kosaraju + Sai Chandra + SC + 0000-0002-4332-6217 + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. skosaraju@cpp.edu. + + + + Luo + Yun Lyna + YL + 0000-0003-3581-754X + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. luoy@westernu.edu. + + + + eng + + + GM130834 + U.S. Department of Health & Human Services | NIH | National Institute of General Medical Sciences (NIGMS) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Commun Chem + 101725670 + 2399-3669 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 1 + + + 2026 + 5 + 4 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215600 + 10.1038/s42004-026-02064-w + 10.1038/s42004-026-02064-w + + +
+ + + 42215593 + + 2026 + 05 + 29 + +
+ + 2397-768X + + + 2026 + May + 29 + + + NPJ precision oncology + NPJ Precis Oncol + + Early detection of gastric cancer: a novel circulating microbiome DNA based liquid biopsy assay. + 10.1038/s41698-026-01532-9 + + Microorganisms play significant roles in gastric cancer (GC) progression. However, it is unknown whether circulating microbiome DNA (cmDNA) possesses GC specific features and could serve as diagnostic biomarker for GC detection. In this study, one cohort of 586 participants from Zhejiang Cancer Hospital were divided randomly into the training and testing datasets. Another cohort of 299 participants enrolled from three hospitals was used as an independent validation cohort. The cmDNA from plasma samples were analyzed by sequencing and various tools. The significant features of cmDNA were used as inputs to establish a machine learning diagnostic model (cmDNA-MLM). The cmDNA-MLM achieved the area under receiver operating characteristic curve (AUC) of 0.831 for GC across all stages in the testing cohort and 0.914 in the independent validation cohort. Notably, this model demonstrated strong performance in detecting early-stage GC, achieving an AUC of 0.792 for stage I GC in the validation cohort and exhibited favorable sensitivities across various molecular subtypes. The stage shift analysis showed a notable increase in the number of patients diagnosed at stage I. This cmDNA-MLM exhibited promising performance in early GC detection, which could be used as a clinical liquid biopsy methodology after more clinical validation studies. + © 2026. The Author(s). + + + + Chen + Yongyi + Y + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + School of Laboratory Medicine and Life Sciences, Wenzhou Medical University, Wenzhou, China. + + + + Han + Xinhong + X + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Luo + Miao + M + + Department of Clinical Laboratory, Chongqing Yubei District People's Hospital, Chongqing, China. + + + + Luo + Liulin + L + + Department of Clinical Laboratory, Shanghai Yangpu Hospital, Tongji University School of Medicine, Shanghai, China. + + + + Wang + Tingzhang + T + + Key Laboratory of Microbial Technology and Bioinformatics of Zhejiang Province, Hangzhou, China. + + + + Kong + Congcong + C + + Key Laboratory of Microbial Technology and Bioinformatics of Zhejiang Province, Hangzhou, China. + + + + Ye + Liuqing + L + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Jin + Jiangang + J + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Hou + Dingding + D + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Liao + Haiqi + H + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Wang + Zhonglin + Z + + OmixScience Laboratory, OmixScience Co. Ltd., Hangzhou, China. + + + + Xue + Wei + W + + OmixScience Laboratory, OmixScience Co. Ltd., Hangzhou, China. + + + + Lin + Ziao + Z + + OmixScience Research Institute, OmixScience Co. Ltd., Shenzhen, China. + + + Liangzhu Laboratory, Zhejiang University, Hangzhou, China. + + + + Xu + Songxiao + S + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. xusx@zjcc.org.cn. + + + School of Laboratory Medicine and Life Sciences, Wenzhou Medical University, Wenzhou, China. xusx@zjcc.org.cn. + + + + eng + + + 82302622 + National Natural Science Foundation of China + + + + 2022KY675 + Zhejiang Province Medical and Health Technology Project + + + + 2024KY862 + Zhejiang Province Medical and Health Technology Project + + + + 2024C03050 + "Pioneer" and "Leading Goose" R&D Program of Zhejiang + + + + 2022C03002 + "Pioneer" and "Leading Goose" R&D Program of Zhejiang + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Precis Oncol + 101708166 + 2397-768X + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 9 + 16 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215593 + 10.1038/s41698-026-01532-9 + 10.1038/s41698-026-01532-9 + + +
+ + + 42215588 + + 2026 + 05 + 29 + +
+ + 2398-6352 + + + 2026 + May + 29 + + + NPJ digital medicine + NPJ Digit Med + + Development and validation of a machine learning-based diagnostic system for 22 pediatric respiratory pathogens: a large-scale multicenter study. + 10.1038/s41746-026-02818-9 + + Respiratory tract infections (RTIs) are a significant cause of morbidity in children, caused by a wide range of pathogens. As treatment strategies depend on the causative pathogen, early and accurate diagnosis is crucial. We developed and validated an interpretable Pathogen Diagnostic System for Pediatric Respiratory Infections (Pathog-PDx), conducting a multicenter study involving 134,500 hospitalized children across three clinical centers and two databases. The model integrated 42 clinical and laboratory features from electronic health records (EHR) to enable early pathogen identification. Prospective validation was carried out on an independent cohort of 1338 children to assess the real-world applicability of the model. Pathog-PDx accurately distinguished 22 pathogen subtypes and outperformed conventional models in identifying both single and mixed infections. The model achieved high classification performance for key pathogens, such as influenza virus (AUC = 0.95; Sn: 0.88; Sp: 0.86), with mean AUCs of 0.88 for various pathogens of RTIs. The model has been deployed as a web-based decision support system, which is freely accessible at https://pathogpdx.zzu.edu.cn. Altogether, Pathog-PDx represents a potential tool for the early identification of respiratory tract pathogens in pediatric patients, which can provide actionable predictions ahead of conventional test results to guide timely and targeted therapy. + © 2026. The Author(s). + + + + Su + Dubin + D + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Qun + Q + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Xiamen Cell Therapy Research Center, The First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, China. + + + + Xu + Ruizhi + R + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Qihong + Q + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Ma + Chiyuan + C + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Xi + X + + Department of Clinical Laboratory, Children's Hospital of Fudan University (Xiamen Branch), Xiamen Children's Hospital, Xiamen, Fujian, China. + + + + Yang + Yunyun + Y + + Department of Laboratory Medicine, Xiamen Key Laboratory of Genetic Testing, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + + Qin + Feibo + F + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. + + + + Zhou + Ziwei + Z + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. + + + + Li + Sixian + S + + Department of Functional Neurology, Shenzhen Second People's Hospital, Shenzhen, Guangdong, China. + + + + Peng + Jie + J + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Ge + Dandan + D + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Fan + Jiajun + J + + Siebel School of Computing and Data Science, University of Illinois Urbana-Champaign, Urbana, Champaign, IL, USA. + + + + Li + Xingyu + X + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + + Wang + Yanbo + Y + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Yang + Yungang + Y + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. xmyyg@sina.com. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. xmyyg@sina.com. + + + + Guo + Yaping + Y + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. guoyaping@zzu.edu.cn. + + + + Yang + Jingjing + J + + Department of Pulmonary and Critical Care Medicine, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. Jingjingyang_xmu@126.com. + + + + Ning + Wanshan + W + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. ningwanshan@xmu.edu.cn. + + + + eng + + + 3502Z20214001 + Project of Xiamen Cell Therapy Research Center + + + + 32570802 + National Natural Science Foundation of China + + + + 32400532 + National Natural Science Foundation of China + + + + 3502Z20254ZD1032 + the Guided Project of Medical and Health Care in Xiamen + + + + 3502Z20254ZD1004 + the Guided Project of Medical and Health Care in Xiamen + + + + 2021ZD0201300 + National Key R&D Program of China + + + + 2024GGB18 + Fujian Provincial Health Technology Project + + + + 2025D022 + Fujian Science and Technology Program Guiding Project + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Digit Med + 101731738 + 2398-6352 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 8 + 19 + + + 2026 + 5 + 15 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215588 + 10.1038/s41746-026-02818-9 + 10.1038/s41746-026-02818-9 + + +
+ + + 42215586 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Ethnicity-specific molecular subtypes and a machine-learning risk model in Asian patients with non-muscle-invasive bladder cancer. + 10.1038/s41598-026-55438-4 + + Non-muscle-invasive bladder cancer (NMIBC) has high rates of recurrence and progression, yet its molecular landscape across different ethnicities remains poorly defined. We assembled a meta-cohort of 202 Asian NMIBC transcriptomes and identified three novel molecular subtypes (AC0, AC1, AC2) using non-negative matrix factorization clustering. These subtypes, each associated with distinct biological pathways and clinical outcomes, were externally validated across 22 datasets. Subtype-specific biomarkers (RABL6, MYBL2, RAD54L, and FAM64A) were confirmed by immunohistochemistry in an independent Asian cohort (n = 210), enabling the development of a machine-learning-based risk stratification model. AC1, characterized by aggressive features and enrichment of cell cycle and oncogenic signaling pathways, exhibited the poorest prognosis. Notably, after adjustment for T-stage and grade, the combined risk model was independently prognostic in Asian cohorts but not in European cohorts, underscoring ethnic differences in NMIBC biology. Our findings delineate distinct molecular subtypes and introduce a clinically applicable, ethnicity-specific prognostic model for Asian patients with NMIBC. This study emphasizes the importance of incorporating ethnic diversity into precision oncology frameworks and provides a foundation for personalized therapeutic and surveillance strategies in underrepresented populations. + © 2026. The Author(s). + + + + Jung + Minsun + M + + Department of Pathology, Yonsei University College of Medicine, Seoul, Republic of Korea. + + + + Park + Sangyong + S + + Department of Statistics, Seoul National University, Seoul, Republic of Korea. + + + + Jang + Insoon + I + + Biomedical Research Institute, Seoul National University Hospital, Seoul, Republic of Korea. + + + Blood Transfusion Research Institute, Korean Red Cross, Wonju, Gangwon-do, Republic of Korea. + + + + Han + Dohyun + D + + Department of Transdisciplinary Medicine, Institute of Convergence Medicine with Innovative Technology, Seoul National University Hospital, Seoul, Republic of Korea. + + + Proteomics Core Facility, Biomedical Research Institute, Seoul National University Hospital, Seoul, Republic of Korea. + + + + Cho + Yong Mee + YM + + Department of Pathology, Asan Medical Center, University of Ulsan College of Medicine, Seoul, Republic of Korea. + + + + Kim + Kwangsoo + K + + Department of Transdisciplinary Medicine, Institute of Convergence Medicine with Innovative Technology, Seoul National University Hospital, Seoul, Republic of Korea. kksoo716@gmail.com. + + + Department of Medicine, Seoul National University, Seoul, Republic of Korea. kksoo716@gmail.com. + + + + Moon + Kyung Chul + KC + + Department of Pathology, Seoul National University College of Medicine, Seoul, Republic of Korea. blue7270@snu.ac.kr. + + + Kidney Research Institute, Medical Research Center, Seoul National University College of Medicine, Seoul, Republic of Korea. blue7270@snu.ac.kr. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Cluster Analysis + Ethnicity + Machine Learning + Non-Muscle Invasive Bladder Neoplasms + Tumor Biomarkers + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 5 + 13 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215586 + 10.1038/s41598-026-55438-4 + 10.1038/s41598-026-55438-4 + + +
+ + + 42215583 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Wireless charging ferrite core design with improved material efficiency for mobile devices by enhancing outer-region flux density. + 10.1038/s41598-026-55270-w + + Wireless power transfer (WPT) systems integrated with machine learning (ML) techniques have emerged as promising solutions for enhancing performance and efficiency. Material efficiency, which involves achieving high performance with minimal material use, is crucial for mobile devices to enhance user satisfaction. This paper proposes a core structure design methodology for WPT systems that enhances mutual inductance (MI) by segmenting and assembling the ferrite core, thereby improving material efficiency within limited space constraints. For genetic algorithm (GA)-based optimization, an ML estimator is implemented to replace iterative finite element method simulations during the GA optimization loop, reducing the average computation time from 203s to 86μs and significantly accelerating the GA optimization process. Furthermore, the designed core structure exhibits improved uniformity of magnetic flux density by enhancing the outer-region magnetic flux density between the coils, thereby contributing to higher MI. Experimental results show that the proposed core structure achieves a 17.44% higher normalized MI compared to conventional structures, using less material through an asymmetrical configuration, which also reduces weight and cost. Furthermore, the optimized asymmetrical structure demonstrates robustness under lateral misalignment conditions ([Formula: see text] mm), consistently maintaining higher material efficiency than the full-piece reference even under spatial offsets. These findings demonstrate the potential of ML-driven approaches for developing high-performance, computationally efficient, and cost-effective WPT systems. + © 2026. The Author(s). + + + + Park + Yohan + Y + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Shah + Syed Ahson Ali + SAA + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Cho + Woo-Young + WY + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Park + Hyojun + H + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Lee + Hyunwoong + H + + Oceansbio, Seoul, 04303, South Korea. + + + + Kim + Yun-Su + YS + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. yunsukim@gist.ac.kr. + + + Research Institute for Solar and Sustainable Energies, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. yunsukim@gist.ac.kr. + + + + eng + + + No. RS-2026-25533249 + Korea Institute of Energy Technology Evaluation and Planning + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Ferromagnetic cores design + Genetic algorithm + Inductive power transfer + Mutual inductance + Wireless power transfer + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 3 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215583 + 10.1038/s41598-026-55270-w + 10.1038/s41598-026-55270-w + + +
+ + + 42215579 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Machine learning based detection of subacute ruminal acidosis in early lactation dairy cows using multi-sensor behavioral, physiological, and milk production data. + 10.1038/s41598-026-55162-z + + Subacute ruminal acidosis (SARA) is a common metabolic disorder in early lactation dairy cows that negatively affects rumen function, milk production, and animal welfare. Early identification remains challenging because clinical signs are often subtle and transient. The aim of this study was to evaluate whether multi sensor behavioral, physiological, and milk-production data could be used to identify cows experiencing SARA using machine-learning approaches. The study included early-lactation Holstein cows during the first 100 days in milk. The final dataset comprised 636 cow-day observations, including 134 SARA cases and 502 clinically healthy controls. Cow identification numbers were additionally used as grouping variables during cross-validation to ensure complete separation of individual animals between training and validation subsets. SARA was defined based on continuous ruminal pH measurements, where cows were classified as SARA when ruminal pH remained between 5.2 and 5.8 for at least 180 min per day. Sensor derived variables included rumination time, activity, water intake, reticulorumen temperature, milk yield, and milk composition obtained from intraruminal boluses and an in-line milk analyzer. Six supervised machine learning classifiers were developed to classify SARA status based on combined sensor data. Among the evaluated models, SVM demonstrated the highest discriminatory performance, which achieved an area under the curve (AUC) of 0.97, accuracy of 0.95, sensitivity of 0.86, and specificity of 0.98 under repeated cow-level grouped cross-validation. Random forest showed similar performance (AUC = 0.97; accuracy = 0.93 and 0.98, respectively). Across all models, specificity was consistently higher than sensitivity, indicating that healthy cows were classified more accurately than SARA cases. These results demonstrate that integrated behavioral, physiological, and milk production data obtained from automated sensor systems can support classification of cows experiencing SARA under commercial farm conditions. The findings support the potential of multi sensor monitoring systems combined with machine learning classifiers as a tool for automated detection of rumen health disturbances in precision dairy farming. + © 2026. The Author(s). + + + + Grigė + Samanta + S + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. Samanta.grige1@lsmu.lt. + + + + Girdauskaitė + Akvilė + A + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Grigas + Ovidijus + O + + Faculty of Informatics, Kaunas University of Technology, 50254, Kaunas, Lithuania. + + + + Japertas + Sigitas + S + + Practical Training and Research Center, Lithuanian University of Health Sciences, Topolių g. 6, 54310, Kaunas, Lithuania. + + + + Malašauskienė + Dovilė + D + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Televičius + Mindaugas + M + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Urbutis + Mingaudas + M + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Džermeikaitė + Karina + K + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Krištolaitytė + Justina + J + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Antanaitis + Ramūnas + R + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Biosensors + Dairy cattle + Innovations + Machine learning + + Declarations. Competing interests: The authors declare no competing interests. Ethics approval: All animal procedures were reviewed and approved by the Institutional Animal Care and Use Committee of the Lithuanian University of Health Sciences (Protocol No. G2-227, approved on 7 March 2025). +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 2 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 18 + + + aheadofprint + + 42215579 + 10.1038/s41598-026-55162-z + 10.1038/s41598-026-55162-z + + +
+ + + 42215538 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Transition of blue space in the urban area of khulna city corporation using geospatial and machine learning techniques. + 10.1038/s41598-026-52656-8 + + Urban blue-space loss and grey-space expansion have significantly altered the surface water systems of the Khulna City Corporation, increasing the environmental degradation and hydrological vulnerability of this climate-sensitive coastal city. This study used multi-temporal Landsat imagery, including Landsat 5 TM data from 1994 to 2004 and Landsat 8 OLI data from 2014 to 2024. The analysis integrated the Normalized Difference Vegetation Index, Normalized Difference Built-up Index, and Normalized Difference Water Index with Random Forest classification and post-classification change detection to quantify long-term land-use/land-cover transitions and urban blue-space transformation. Post-classification comparison generated directional transition matrices documenting conversion pathways among land-cover categories. The results show that surface water bodies have decreased from 4.20 km2 in 1994 to 2.27 km2 in 2024, while the built-up area has increased from 25.9 to 53.3% of the area studied. The accuracy assessment resulted in an overall accuracy of 84.5 to 89.3%, with Kappa coefficients ranging from 0.78 to 0.86. Water body classifications have remained reliable throughout all periods, which has supported the use of classifiable maps for long-term migration analysis. Temporal analysis revealed two main phases: an early phase characterized by mixed land reclamation and later phases dominated by conversion of water bodies into built-up areas. Spatial analysis identified critical hotspots of canal infill, wetland loss, and riverbank modification, mainly in central and southern municipal zones. These findings highlight the need to treat urban blue spaces as critical infrastructure and to promote integrated management, natural drainage solutions and regular remote sensing monitoring. The study frames the loss of blue space as a process of urban transformation and advocates better monitoring of urban water systems in coastal secondary coastal cities. + © 2026. The Author(s). + + + + Hossan + Md Refath + MR + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. + + + + Hossain + Mohammad Ismail + MI + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. ihossain@idm.kuet.ac.bd. + + + + Islam + Md Wahidul + MW + + Department of Chemistry, Gopalganj Science and Technology University, Gopalganj, 8100, Bangladesh. + + + + Shaon + Zahid Hassan + ZH + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + GIS analysis + Land cover change + Remote sensing + Surface water decline + Urban expansion + + Declarations. Competing interests: The authors declare no competing interests. Consent to participate: This study did not involve any human participants, animal subjects, or personally identifiable. data, and therefore did not require ethical approval. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 4 + 6 + + + 2026 + 5 + 6 + + + 2026 + 5 + 29 + 23 + 17 + + + aheadofprint + + 42215538 + 10.1038/s41598-026-52656-8 + 10.1038/s41598-026-52656-8 + + +
+ + + 42215534 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + An explainable spatio-temporal deep learning framework for crop yield prediction and recommendation. + 10.1038/s41598-026-54439-7 + + Agriculture plays a critical role in ensuring global food security, yet crop yield variability driven by climate change, soil heterogeneity, and environmental fluctuations poses persistent challenges. Accurate yield forecasting and intelligent crop recommendation are essential for sustainable and efficient farm management. This study proposes a novel AI-driven framework for precise crop yield prediction and data-driven crop selection. The framework integrates systematic data preprocessing, hybrid feature selection, deep learning, and attention-based modeling to capture complex nonlinear relationships within agricultural datasets. Raw data, including soil properties, topography, climatic variables, and historical yield records, are processed using median-based imputation, normalization, and Z-score outlier detection to enhance reliability. A multi-stage hybrid feature selection approach combining Minimum Redundancy Maximum Weight, Sequential Forward Subset Selection, and Recursive Fisher Score identifies the most informative features while reducing redundancy. Yield prediction is performed using an attention-enhanced hybrid kernel Extreme Learning Machine (ELM). Crop recommendation is achieved through a Spatio-Temporal Explainable Group-Enhanced Transformer Network (STX-GTNET) optimized with the PantheraCobra metaheuristic. Model interpretability is ensured using Grad-CAM and Integrated Gradients. Experimental results demonstrate strong performance, achieving an RMSE of 281.6 and R² of 0.94 for yield prediction, and 98.4% accuracy with a 0.991 ROC-AUC for crop recommendation. + © 2026. The Author(s). + + + + Piyar S + Nifasath + N + + Department of Computer Science and Engineering, Anna University, Chennai, 600 025, India. nifasathpiyar@gmail.com. + + + + S + Dr Baulkani + DB + + Department of Electronics and Communication Engineering, Government College of Engineering, Bodinayakkanur, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Crop recommendation system + Crop yield prediction + Explainable artificial intelligence and precision agriculture + Spatio-temporal deep learning + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 24 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 23 + 17 + + + aheadofprint + + 42215534 + 10.1038/s41598-026-54439-7 + 10.1038/s41598-026-54439-7 + + +
+ + + 42215508 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + The role of biopsychosocial factors in classifying pain intensity across various chronic pain conditions. + 10.1038/s41598-026-46612-9 + + Chronic pain is a multifaceted condition shaped by biological, psychological, and social factors, which challenges its diagnosis and treatment. While prior research largely focused on sensory profiles to distinguish pain mechanisms, this study adopted a biopsychosocial perspective with the key addition of experimental pain paradigms to identify factors explaining variance in chronic pain severity across diverse etiologies. The dataset comprised 101 individuals with chronic pain and 63 pain-free controls. Participants were classified into three groups (no pain, mild-to-moderate pain, and severe pain) using three models: a sensory-profile-based model including quantitative sensory testing (QST model), a biopsychosocial model incorporating QST alongside psychological and social variables (biopsychosocial model), and a model using the same biopsychosocial data but excluding QST measures (noQST model). The QST model achieved an accuracy of 0.51 and an F1-score of 0.48. In contrast, the biopsychosocial model performed best, with both accuracy and F1-score of 0.71, while the noQST model reached 0.60 for both metrics. Key predictors in the best-performing model included quality of life, loss of sensation, depressive mood, pain catastrophizing, anxiety, fatigue, and general health. Overall, biopsychosocial factors enhanced chronic pain severity classification beyond sensory profiles alone across heterogeneous pain etiologies. + © 2026. The Author(s). + + + + De Schoenmacker + Iara + I + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. deschoeia@gmail.com. + + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. deschoeia@gmail.com. + + + Biomedical Data Science Lab, Swiss Federal Institute of Technology (ETH), Lengghalde 2, 8008, Zurich, Switzerland. deschoeia@gmail.com. + + + + Monzon + Maria + M + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. + + + + Sirucek + Laura + L + + Neuroscience Center Zurich, University of Zurich, Zurich, Switzerland. + + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + Center for Neuroplasticity and Pain (CNAP), Department of Health Science and Technology, Aalborg University, Aalborg, Denmark. + + + + Scheuren + Paulina S + PS + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + International Collaboration on Repair Discoveries, University of British Columbia, Vancouver, BC, Canada. + + + Department of Anesthesiology, Pharmacology and Therapeutics, Faculty of Medicine, University of British Columbia, Vancouver, BC, Canada. + + + + Lütolf + Robin + R + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Gorrell + Lindsay M + LM + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Brunner + Florian + F + + Physical Medicine and Rheumatology, Balgrist University Hospital, Zurich, Switzerland. + + + + Curt + Armin + A + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Rosner + Jan + J + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + Danish Pain Research Center, Department of Clinical Medicine, Aarhus University, Aarhus, Denmark. + + + + Schweinhardt + Petra + P + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Hubli + Michèle + M + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Jutzeler + Catherine R + CR + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. + + + Swiss Institute of Bioinformatics (SIB), Lausanne, Switzerland. + + + + eng + + + PF198F + International Foundation for Research in Paraplegia + + + + P500PB_214416 + Schweizerischer Nationalfonds zur Förderung der Wissenschaftlichen Forschung + + + + PZ00P3_186101 + Schweizerischer Nationalfonds zur Förderung der Wissenschaftlichen Forschung + + + + RT-2023-3173 + Michael Smith Health Research BC + + + + R359-2020-2620 + Lundbeck Foundation + + + + 380 + Strategic Focus Area "Personalized Health and Related Technologies (PHRT)" of the Swiss Federal Institutes of Technology + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Biopsychosocial model + Chronic pain + Machine learning + Pain classification + Quantitative sensory testing + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 5 + 21 + + + 2026 + 3 + 26 + + + 2026 + 5 + 29 + 23 + 16 + + + aheadofprint + + 42215508 + 10.1038/s41598-026-46612-9 + 10.1038/s41598-026-46612-9 + + +
+ + + 42215501 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Predictive analysis on mechanical properties, material flow and thermal analysis of friction stir welded dissimilar AA2014/AA7075 Al-alloy joints using machine learning. + 10.1038/s41598-026-48688-9 + + Aluminum alloys are the most ideal materials for aerospace applications, and joining of a light weighted materials with an eco-friendly method is encouraging ongoing research into the green welding technique. In the current work solid-state joints of 10 mm thick AA2014/AA7075 Al-alloys dissimilar material joints with hybrid pin profiles were fabricated by using Friction Stir Welding (FSW) technique. The microstructure and mechanical properties of weld joints, temperature analysis of the welds processed under various conditions is investigated. An Artificial Neural Network (ANN) model is used to predict the mechanical properties of the welded joints fabricated at different conditions. The weld joints processed with hybrid pentagonal pin profile exhibits the highest UTS and YS measuring as 294 and 267 MPa respectively. The ANN showed strong prediction using a dataset of 27 experimentally obtained results providing a reliable data-driven method for forecasting UTS and optimizing FSW parameters. The weld joints processed at 900 rpm 31. 5 mm/min 2° tilt angle 0 mm tool offset and pentagonal pin profile revealed 62% of joint efficiency, which is suitable for the suggested AWS requirements for aerospace applications must be met by 60%. ANN model provided a good agreement with experimental results (R² = 0.93). However, due to the relatively small dataset (L27 design). + © 2026. The Author(s). + + + + Rao + R Venkateswara + RV + + Department of Mechanical Engineering, Vignana Bharathi Institute of Technology, Telangana, 501301, India. + + + + Kumar + M Senthil + MS + + School of Mechanical Engineering, Vellore Institute of Technology, Chennai, 600127, India. msv305@yahoo.co.in. + + + + Vanmathi + M + M + + Department of Electronics and Communication Engineering, B S Abdurrahman Crescent Institute of Science and Technology, Chennai, 60048, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Dissimilar Materials + FSW Process + Mechanical Properties + Process Parameters + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 10 + + + 2026 + 4 + 9 + + + 2026 + 5 + 29 + 23 + 16 + + + aheadofprint + + 42215501 + 10.1038/s41598-026-48688-9 + 10.1038/s41598-026-48688-9 + + +
+ + + 42215494 + + 2026 + 05 + 29 + +
+ + 2396-8370 + + + 2026 + May + 29 + + + NPJ science of food + NPJ Sci Food + + Novel insights into the binding mechanisms of selected aldehydes during heat-induced protein unfolding. + 10.1038/s41538-026-00874-9 + + This investigation aimed to clarify the binding mechanisms between six aldehydes and myofibrillar proteins (MPs), with a structural explanation in response to stage-heating treatments. The conformational intermediates of MPs, which form during heat processing, were systematically characterized to elucidate their role in aldehyde binding and flavor retention. Machine learning results suggested that high-temperature boiling promoted extensive protein denaturation and aggregation, while subsequent low-temperature stewing induced partial rearrangement. Thermodynamic parameters indicated that hexanal-MPs formation was primarily driven by hydrogen bonding, whereas other longer-chain and unsaturated aldehydes penetrated hydrophobic pockets. Proteomics revealed that saturated aldehydes predominantly formed Schiff bases with the lysine ε-amino group. Unsaturated aldehydes, especially (E, E)-2,4-decadienal, undergo both Schiff base reactions and Michael addition with cysteine, histidine, and tryptophan residues. The retention/release behavior of aldehydes during processing is determined by covalent and non-covalent interactions. These results provide a scientific basis for precisely controlling flavor quality in meat products. + © 2026. The Author(s). + + + + Wang + Jingfan + J + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + Laboratory of Chemistry of Natural Molecules, Gembloux Agro-Bio Tech, University of Liege, Gembloux, Belgium. + + + Laboratory of Analytical Chemistry, Gembloux Agro-Bio Tech, University of Liège, Gembloux, Belgium. + + + + Wang + Tianze + T + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + + Yang + Ping + P + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + + Han + Dong + D + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. orange_1101@126.com. + + + + Zhang + Chunhui + C + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. dr_zch@163.com. + + + + Jia + Wei + W + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + Jiangsu Chaoyue Agricultural Development Co. Ltd, Taizhou, China. + + + + Purcaro + Giorgia + G + + Laboratory of Analytical Chemistry, Gembloux Agro-Bio Tech, University of Liège, Gembloux, Belgium. + + + + Fauconnier + Marie-Laure + ML + + Laboratory of Chemistry of Natural Molecules, Gembloux Agro-Bio Tech, University of Liege, Gembloux, Belgium. + + + + eng + + + No. 32472392 + the National Natural Science Foundation of China + + + + ASTIP-Y2025QC29 + the Agricultural Science and Technology Innovation Program + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Sci Food + 101739627 + 2396-8370 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 25 + + + 2026 + 4 + 28 + + + 2026 + 5 + 29 + 23 + 15 + + + aheadofprint + + 42215494 + 10.1038/s41538-026-00874-9 + 10.1038/s41538-026-00874-9 + + +
+ + + 42215477 + + 2026 + 05 + 29 + +
+ + 2731-6068 + + + 2026 + May + 29 + + + npj aging + NPJ Aging + + Latent biochemical phenotypes delineate divergent health trajectories in older adults. + 10.1038/s41514-026-00415-4 + + Ageing heterogeneity hampers prevention and care. We used routine biochemical panels and unsupervised learning to identify latent phenotypes in community-dwelling older adults. In 1491 participants from the Toledo Study for Healthy Ageing (TSHA) with ~10-11 years of follow-up, 39 blood biomarkers were dimension-reduced and clustered, yielding three phenotypes: Healthy, Metabolic (subclinical dysmetabolism), and Haematological (low erythroid/renal profile). Phenotypes differed in functional capacity, frailty, and independence at baseline (all p < 0.05 after age/sex adjustment) and predicted long-term mortality (Metabolic women HR = 1.49, p = 0.016). Sex-specific analyses revealed distinct disease-trajectory patterns (e.g., hypertension in Metabolic women HR = 1.30, p = 0.005; thrombosis in Haematological men HR = 7.20, p = 0.018; syncope in Haematological women HR = 1.88, p = 0.009). Findings are partially replicated in a cohort of physically active older adults (EXERNET), supporting the generalizability of the Metabolic phenotype. Standard laboratory data, integrated through machine learning, capture ageing-relevant biology and stratify future risk without specialised assays, enabling low-cost, scalable precision prevention. + © 2026. The Author(s). + + + + González-Martos + Raquel + R + + Centro de Tecnología Biomédica (CTB), Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Nageru S.L, Madrid, Spain. + + + + Rodríguez-Gómez + Irene + I + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + Geriatrics Department, Hospital Universitario de Toledo, Toledo, Spain. + + + + Galeano + Javier + J + + Grupo de Sistemas Complejos, Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + Grupo Interdisciplinar de Sistemas Complejos (GISC), Madrid, Spain. + + + + Ara + Ignacio + I + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + + Alegre + Luis M + LM + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + + Rodríguez-Mañas + Leocadio + L + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Geriatrics Department, Getafe University Hospital, Getafe, Spain. + + + + Garcia-Garcia + Francisco J + FJ + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + Geriatrics Department, Hospital Universitario de Toledo, Toledo, Spain. + + + + Ramírez-Castillejo + Carmen + C + + Centro de Tecnología Biomédica (CTB), Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + Departamento de Oncología, Instituto de Investigación Sanitaria San Carlos (IdISSC), Madrid, Spain. + + + + Guadalupe-Grau + Amelia + A + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. amelia.guadalupe@uclm.es. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. amelia.guadalupe@uclm.es. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. amelia.guadalupe@uclm.es. + + + + eng + + + IND2022/BMD-23595 + Comunidad de Madrid + + + + CD23/00236 + Instituto de Salud Carlos III + + + + PI10/01532, PI031558 + Instituto de Salud Carlos III + + + + PI2010/020 + Junta de Comunidades de Castilla-La Mancha + + + + 03031-00 + Consejería de Sanidad de Castilla-La Mancha + + + + CB16/10/00456 + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable + + + + CB16/10/00477 + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Aging + 9918402285106676 + 2731-6068 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 25 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 15 + + + aheadofprint + + 42215477 + 10.1038/s41514-026-00415-4 + 10.1038/s41514-026-00415-4 + + +
+ + + 42215447 + + 2026 + 05 + 29 + +
+ + 2041-1723 + + + 2026 + May + 29 + + + Nature communications + Nat Commun + + Multifactorial sheltering in peristromal niches shapes in vivo responses of lung cancers to targeted therapies. + 10.1038/s41467-026-73454-w + + Targeted therapies induce strong clinical responses but fail to eliminate advanced cancers, as a subset of tumor cells survives within residual disease and eventually develops resistance. While numerous cell-intrinsic and microenvironmental mechanisms have been implicated in this survival, their relative contributions remain poorly defined. Using spatial histological inferences from ALK + NSCLC models, we show that peristromal niches protect tumor cells from elimination, enabling in vivo persistence. This spatially restricted sheltering provides an ecological rescue mechanism that sustains residual populations, enabling their eventual evolutionary escape. Mechanistically, this protective effect reflects an integrated action of multiple juxtacrine and paracrine signals. This complexity limits the utility of targeting individual mechanisms of protection, favoring a shift towards exploiting orthogonal collateral sensitivities of residual disease. We find that adaptive HER2 upregulation, associated with both cell-intrinsic and stroma-mediated persistence, can be exploited by the antibody-drug conjugate T-DXd to dramatically enhance therapeutic responses and suppress tumor relapse. + © 2026. The Author(s). + + + + Desai + Bina + B + 0000-0003-0454-7583 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Cancer Biology Ph.D. Program, University of South Florida, Tampa, FL, USA. + + + + Miti + Tatiana + T + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Prabhakaran + Sandhya + S + 0000-0002-9537-507X + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Miroshnychenko + Daria + D + 0000-0001-6425-5000 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Kumar + Pragya + P + 0000-0002-5691-7016 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Henry + Menkara + M + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Marusyk + Viktoriya + V + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Siqueira + Natalia Souza Nunes + NSN + 0000-0002-7877-2655 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Gatenbee + Chandler + C + 0000-0002-9730-5964 + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Ozakinci + Hilal + H + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Bui + Marilyn + M + 0000-0003-4963-2255 + + Department of Machine Learning, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Pathology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Boyle + Theresa A + TA + 0000-0001-5950-3970 + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Machine Learning, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Scott + Jacob + J + 0000-0003-2971-7673 + + Department of Translational Hematology and Oncology Research, Cleveland Clinic, Cleveland, OH, USA. + + + + Altrock + Philipp M + PM + 0000-0001-7731-3345 + + Department of Hematology and Oncology, University Hospital Schleswig-Holstein, Kiel University, Kiel, Germany. + + + + Pellini + Bruna + B + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Thoracic Oncology, Miami Cancer Institute, Baptist Health South Florida, Miami, FL, USA. + + + + Haura + Eric + E + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Anderson + Alexander R A + ARA + 0000-0002-2536-4383 + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Basanta + David + D + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Marusyk + Andriy + A + 0000-0002-0087-9575 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. andriy.marusyk@moffitt.org. + + + Department of Molecular Medicine, University of South Florida, Tampa, FL, USA. andriy.marusyk@moffitt.org. + + + + eng + + + NIH U54 CA274507 + U.S. Department of Health & Human Services | NIH | National Cancer Institute (NCI) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Nat Commun + 101528555 + 2041-1723 + + IM + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 4 + 2 + + + 2026 + 5 + 8 + + + 2026 + 5 + 29 + 23 + 14 + + + aheadofprint + + 42215447 + 10.1038/s41467-026-73454-w + 10.1038/s41467-026-73454-w + + +
+ + + 42215401 + + 2026 + 05 + 29 + +
+ + 1879-2022 + + + 2026 + May + 13 + + + ISA transactions + ISA Trans + + Interpretable physical-informed machine learning for dynamic characteristics prediction of air spring with limited measurement information. + S0019-0578(26)00247-8 + 10.1016/j.isatra.2026.05.010 + + Pipe-type air spring with auxiliary airbag (ASAA) are important vibration isolation component due to its tunable volume and adjustable dynamic characteristics. However, its dynamic modeling is challenging because airbag expansion work, rubber bladder viscoelasticity, and turbulence-dominated throttle dynamics are strongly coupled under large-amplitude excitations. Traditional data-driven models often require large datasets and lack interpretability. To address this issue, this study proposes an interpretable physics-informed machine learning (PIML) framework for ASAA dynamic prediction. A reduced-order physical model is first developed to provide baseline predictions of stiffness and lag angle, and the discrepancies between physical predictions and experimental measurements are then used to construct residual datasets. An interpretable Kolmogorov-Arnold Network (KAN) is employed to learn these residuals through adaptive B-spline activation functions and derive explicit symbolic correction terms. Experimental validation shows that the proposed hybrid model improves prediction accuracy while retaining physical interpretability, outperforming pure data-driven, advanced physics-data and physical models. + Copyright © 2026 ISA. Published by Elsevier Ltd. All rights reserved. + + + + Qin + Wu + W + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: qw@ecjtu.edu.cn. + + + + Liao + Xundong + X + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: 2023038080200027@ecjtu.edu.cn. + + + + Qi + Junyu + J + + State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou 510006, China; Reutlingen University, Alteburgstraße 150, Reutlingen 72762, Germany. Electronic address: junyu.qi@reutlingen-university.de. + + + + He + Yi + Y + + School of Mechanical Engineering, South China University of Technology, China. Electronic address: 202111080705@mail.scut.edu.cn. + + + + Liu + Feifei + F + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: 2971@ecjtu.edu.cn. + + + + Chen + Zhuyun + Z + + State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou 510006, China. Electronic address: mezychen@gdut.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + United States + ISA Trans + 0374750 + 0019-0578 + + IM + + Air spring + Data-driven + Dynamic characteristic predictions + Physics-informed Machine Learning + + Declaration of Competing Interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 9 + 12 + + + 2026 + 5 + 10 + + + 2026 + 5 + 10 + + + 2026 + 5 + 29 + 21 + 58 + + + aheadofprint + + 42215401 + 10.1016/j.isatra.2026.05.010 + S0019-0578(26)00247-8 + + +
+ + + 42215359 + + 2026 + 05 + 29 + +
+ + 1879-0828 + + + 2026 + May + 29 + + + European journal of internal medicine + Eur J Intern Med + + Artificial intelligence in cardiovascular care for internal medicine: from promising algorithms to useful clinical services. + + 106944 + 106944 + + 10.1016/j.ejim.2026.106944 + S0953-6205(26)00249-9 + + Artificial intelligence is expanding rapidly in cardiovascular medicine, but its value in internal medicine depends less on raw model performance than on whether it improves triage, risk targeting, and coordination of care within real-world workflows. Rather than cataloguing applications, this review focuses on three use cases with near-term relevance in internal medicine: AI-augmented electrocardiography, risk prediction for targeted prevention, and AI-enabled clinical decision support, including selected applications of large language models. Across these domains, evaluation should extend beyond discrimination to calibration, positive predictive value at action thresholds, net benefit, alert burden, override rates, and downstream testing. Cardiovascular AI should not be judged as an autonomous decision-maker, but as a supervised component of care delivery. Its usefulness depends on predefined confirmation pathways, integration into existing information systems, actionable outputs, user training, and post-deployment monitoring for drift, safety, and equity. We propose a practical implementation lens - Train, Explain, Integrate, Accompany (TEIA) - to structure deployment in routine care, and summarize governance issues relevant to European practice, including intended use, interoperability, traceability, cybersecurity, and lifecycle oversight. The central question is not whether an AI tool can classify or predict, but whether its use in routine care supports better decisions with acceptable workload, safer pathways, and measurable clinical value. + Copyright © 2026 European Federation of Internal Medicine. Published by Elsevier B.V. All rights reserved. + + + + Desroche + Louis-Marie + LM + + Department of Cardiology, North Site, CHU de La Réunion, Allée des Topazes, Saint-Denis, La Réunion 97400, France; CIC-EC INSERM 1410, CHU de La Réunion, Saint-Denis, France. Electronic address: louis-marie.desroche@chu-reunion.fr. + + + + Trimaille + Antonin + A + + Department of Cardiology, Strasbourg University Hospital, Strasbourg, France; UR3074, Translational Cardiovascular Medicine, University of Strasbourg, Strasbourg, France; GERCA (Groupe pour l'Enseignement et la Recherche Cardiologique en Alsace), Strasbourg, France. + + + + Lequeux + Benoît + B + + Department of Cardiology, Poitiers University Hospital, Poitiers, France. + + + + Homehr + Nicolas + N + + Primary Care Practice, Lherm, France; CPTS du Sud Toulousain, Haute-Garonne, France. + + + + Girerd + Nicolas + N + + CHRU de Nancy, Centre d'Investigations Cliniques Plurithématique 1433, INSERM, Université de Lorraine, INSERM U1116 - DCAC, and F-CRIN INI-CRCT(Cardiovascular and Renal Clinical Trialists), Nancy, France. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + Netherlands + Eur J Intern Med + 9003220 + 0953-6205 + + IM + + Artificial intelligence + Cardiovascular disease + Clinical decision support + Electrocardiography + Governance + Implementation + Internal medicine + Machine learning + Risk prediction + + Declaration of competing interest AT has received a fellowship grant from Edwards Lifescience. NG declares honoraria from Alnylam, AstraZeneca, Bayer, Boehringer, Cardiostory, Lilly, Echosens, GSK, NP medical, Novartis, Novo Nordisk, Roche diagnostics. The other authors declare no conflict of interest. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 4 + 29 + + + 2026 + 5 + 12 + + + 2026 + 5 + 29 + 21 + 57 + + + aheadofprint + + 42215359 + 10.1016/j.ejim.2026.106944 + S0953-6205(26)00249-9 + + +
+ + + 42215334 + + 2026 + 05 + 29 + +
+ + 2588-9311 + + + 2026 + May + 29 + + + European urology oncology + Eur Urol Oncol + + AI-MIRACLE: Artificial Intelligence and MultIpaRAmetric MRI Predict CLinical OutcomEs to Neoadjuvant Immunotherapy in Patients with Muscle-invasive Bladder Cancer Undergoing Radical Cystectomy. + S2588-9311(26)00133-1 + 10.1016/j.euo.2026.05.006 + + Neoadjuvant immune-checkpoint inhibitors (ICIs) in muscle-invasive bladder cancer (MIBC) were tested in patient's ineligible for cisplatin-based chemotherapy. The PURE-01 trial (NCT02736266) evaluated three courses of pembrolizumab before radical cystectomy (RC). We developed AI-MIRACLE, an international study assessing artificial intelligence (AI) and multiparametric magnetic resonance imaging (mpMRI) for predicting treatment response. + This multi-institutional study included data acquisition in Italy, and centralized analysis in the United States. Among 112 PURE-01 patients, pre- and post-ICI MRIs were analyzed. T2-weighted signal intensities were standardized for radiomics (Image Biomarker Standardization Initiative-compatible Python-based Computational Environment for Radiological Research (pyCERR)) and deep feature extraction (AI-BLADE toolbox using VGG19). Diffusion-weighted (DW) and dynamic contrast-enhanced (DCE) MRI data underwent model-based analysis. Supervised machine learning algorithms (elastic net, random forest) were trained and cross-validated to predict pathological major response (pMR:ypT<2N0 residual disease) and pathological complete response (pCR: ypT0) pathological response. + The predictive models using post-ICI mpMRI with either a combination of radiomics and DCE-derived features or radiomics alone achieved the same high accuracy, with an area under the receiver operating characteristic curve (AUC) of 0.96 for pMR. A shape-based radiomic model achieved an AUC of 0.86 for predicting pCR. These models outperformed benchmark models based on clinical predictors. + Shape-based radiomics, DCE-derived features, and deep features may serve as noninvasive imaging biomarkers for predicting response to neoadjuvant pembrolizumab in MIBC. This imaging-based approach provides a non-invasive assessment of treatment response following neoadjuvant immunotherapy, which may help inform bladder-preserving management decisions prior to definitive surgery. + Copyright © 2026 The Author(s). Published by Elsevier B.V. All rights reserved. + + + + Necchi + Andrea + A + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy; Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy. Electronic address: necchi.andrea@hsr.it. + + + + Brembilla + Giorgio + G + + Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy; Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Whiting + Karissa + K + + Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Arita + Yuki + Y + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Akin + Oguz + O + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Apte + Aditya + A + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Awais + Muhammad + M + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Lema-Dopico + Alfonso + A + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Paudyal + Ramesh + R + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Cosenza + Michele + M + + Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Maiorano + Brigida Anna + BA + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Tateo + Valentina + V + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Cigliola + Antonio + A + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Mercinelli + Chiara + C + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + De Cobelli + Francesco + F + + Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy; Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Capanu + Marinela + M + + Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Shukla-Dave + Amita + A + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA; Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. Electronic address: davea@mskcc.org. + + + + Schwartz + Lawrence H + LH + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + Eur Urol Oncol + 101724904 + 2588-9311 + + IM + + Bladder cancer + Deep feature + MRI + Radiomics + +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 12 + 18 + + + 2026 + 4 + 28 + + + 2026 + 5 + 6 + + + 2026 + 5 + 29 + 21 + 56 + + + aheadofprint + + 42215334 + 10.1016/j.euo.2026.05.006 + S2588-9311(26)00133-1 + + +
+ + + 42215211 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1095-9998 + + 139 + + 2026 + Oct + + + Food microbiology + Food Microbiol + + Single-cell Raman spectroscopy-machine learning combination: Rapid and accurate strain-level identification of Bifidobacterium animalis subsp. lactis J12. + + 105131 + 105131 + + 10.1016/j.fm.2026.105131 + S0740-0020(26)00095-X + + Rapid and accurate strain-level identification of Bifidobacterium animalis is critical for probiotic quality control and intellectual property protection in the food industry. In this study, a novel identification method for Bifidobacterium animalis subsp. lactis J12 was established by integrating single-cell Raman spectroscopy (SCRS) with machine learning (ML) algorithms. A total of 500-1000 valid single-cell Raman spectra were collected for each of five Bifidobacterium animalis subsp. lactis strains and seven heterologous lactic acid bacterial strains. The SCRS data were processed and optimized using t-distributed stochastic neighbor embedding (t-SNE), linear discriminant analysis (LDA), and support vector machine (SVM) algorithms. Results showed that stationary-phase cells exhibited the most distinctive chemical fingerprints, enabling the SVM model to identify J12 among the five target strains with an accuracy of over 99%. The established method displayed high robustness: classification accuracy and recall for lyophilized bacterial powders both exceeded 99.8%; the predicted proportions of strains in artificial mixed samples were highly consistent with theoretical values, with a mean absolute error (MAE) of <0.5% and a correlation coefficient (R2) of >0.998; and the identification accuracy for J12 isolates from commercial yogurt remained above 99%. Comparative genomics analysis confirmed that the unique Raman phenotypic characteristics of J12 were correlated with its specific genomic features, verifying the method's reliability at the genetic level. This label-free and pure culture-free SCRS-ML approach provides a rapid and high-precision tool for strain-specific identification in the probiotic industry, and fills the technical gap in rapid detection of highly homologous B. animalis strains. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Jiang + Yixuan + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: 15245133725@163.com. + + + + Deng + Yu + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: 18184400300@163.com. + + + + Feng + Bing + B + + Qingdao Singlecell Biotechnology Co., Ltd., Qingdao, 266000, China. Electronic address: fengbing@singlecellbiotech.com. + + + + Zhang + Hongxing + H + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: hxzhang511@163.com. + + + + Xie + Yuanhong + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: xieyuanh@163.com. + + + + Gao + Jingyu + J + + Science and Technology Research Center of China Customs, Beijing, 100026, China. Electronic address: gjyhgxy@sina.com. + + + + Song + Xiaodong + X + + Inner Mongolia Mengniu Dairy (Group) Co., Ltd., Key Laboratory of Dairy Quality Intelligence Monitoring Technology, State Administration for Market Regulation, Hohhot, 011517, China. Electronic address: songxiaodong@mengniu.cn. + + + + Jin + Junhua + J + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: jinjunhua002008@163.com. + + + + eng + + Journal Article + Evaluation Study + + + 2026 + 04 + 22 + +
+ + England + Food Microbiol + 8601127 + 0740-0020 + + IM + + + Bifidobacterium animalis + classification + isolation & purification + chemistry + genetics + + + Spectrum Analysis, Raman + methods + + + Machine Learning + + + Support Vector Machine + + + Single-Cell Analysis + methods + + + Probiotics + + + Yogurt + microbiology + + + Discriminant Analysis + + + + Bifidobacterium animalis + Machine learning + Probiotics + Quality control + SCRS + Strain identification + + Declaration of competing interest The authors declare no conflicts of interest. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 18 + + + 2026 + 4 + 20 + + + 2026 + 4 + 21 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215211 + 10.1016/j.fm.2026.105131 + S0740-0020(26)00095-X + + +
+ + + 42215204 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1095-9998 + + 139 + + 2026 + Oct + + + Food microbiology + Food Microbiol + + Climatic factors and initial microbiota-driven prediction of the accumulated microbiota at the end of stacking fermentation for soy sauce aroma type baijiu. + + 105124 + 105124 + + 10.1016/j.fm.2026.105124 + S0740-0020(26)00088-2 + + Most traditional fermented foods are produced through spontaneous fermentation, which contain complex microbiota. However, it is still unclear what the key driving factors of the microbiota are and how to predict the microbiota at the end of fermentation. This study employed a typical spontaneous fermentation process, stacking fermentation for soy sauce aroma type baijiu, as a case to predict the microbiota at the end of fermentation based on key driving factors. The microbiota at the start of fermentation was mainly provided from the starter (daqu), air, and the ground of the fermentation room, contributing 45.22%, 10.05%, and 7.48% of the bacteria, and 41.83%, 10.77% and 1.21% of the fungi, respectively. Average air temperature and average photosynthetic photon flux density were identified as key climatic factors driving microbial succession. Finally, a Transformer-based machine learning model was constructed to predict the microbiota at the end of fermentation based on key climatic factors and the initial microbiota. 29 out of 34 dominant genera (average relative abundance ≥1%) could be accurately predicted (NRMSE <30%). Aitchison distance between true and predicted value using Transformer model was significantly lower than that using Random Forest model (P < 0.001). This work revealed the roles of climatic factors and the microbiota at the start of fermentation in shaping the microbiota at the end of fermentation. The constructed predictive model could facilitate the regulation of the microbiota in food fermentation. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + He + Binghao + B + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Zheng + Yifu + Y + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Ban + Shibo + S + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Madadi + Meysam + M + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Khaneghah + Amin Mousavi + AM + + Faculty of Biotechnologies (BioTech), ITMO University, 9 Lomonosova Street, Saint Petersburg, 191002, Russia. Electronic address: mousavi.amin@gmail.com. + + + + Aadil + Rana Muhammad + RM + + National Institute of Food Science and Technology, University of Agriculture, Faisalabad, 38000, Pakistan. Electronic address: muhammad.aadil@uaf.edu.pk. + + + + Wu + Qun + Q + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. Electronic address: wuq@jiangnan.edu.cn. + + + + eng + + Journal Article + + + 2026 + 04 + 16 + +
+ + England + Food Microbiol + 8601127 + 0740-0020 + + IM + + + Fermentation + + + Soy Foods + microbiology + analysis + + + Microbiota + + + Bacteria + classification + genetics + isolation & purification + metabolism + + + Climate + + + Odorants + analysis + + + Fungi + classification + genetics + metabolism + isolation & purification + + + Fermented Foods + microbiology + analysis + + + Food Microbiology + + + + Climate + Fermentation + Machine learning + Microbiota + Soy sauce aroma type baijiu + Succession distance + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 2 + + + 2026 + 4 + 12 + + + 2026 + 4 + 16 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215204 + 10.1016/j.fm.2026.105124 + S0740-0020(26)00088-2 + + +
+ + + 42215160 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1876-4452 + + 66 + 3 + + 2026 + May + + + Science & justice : journal of the Forensic Science Society + Sci Justice + + On-site strip-type drug test kit enhanced by AI-based image analysis. + + 101408 + 101408 + + 10.1016/j.scijus.2026.101408 + S1355-0306(26)00014-6 + + The demand for technology that can rapidly and precisely detect drugs in the field is increasing because of the growing number of criminal incidents involving the tampering of beverages with drugs. This paper presents the development and validation of a strip-type drug test kit that is user-friendly and portable, reduces the consumption of reagents that are hazardous to humans, and produces less waste. A drawback of strip-type drug test kits is that they depend on visual interpretation of the results, which can vary depending on user skill, lighting, and slight color changes. To address this limitation, this study implemented an analytical method that minimizes uncertainty and facilitates quantitative evaluation by utilizing images of color reaction outcomes from the newly developed strip-type drug test kit. Specifically, we developed an automatic discrimination algorithm using artificial intelligence (AI) image analysis techniques. Using a collection of 7,295 kit images, we evaluated the efficacy of several deep-learning models, including Convolutional Neural Network (CNN), Vision Transformer (ViT), and CNN-GRU (a hybrid of CNN and Gated Recurrent Unit). The findings indicated that the CNN-GRU model showed superior performance across all parameters, including accuracy, precision, recall, F1-score, and Cohen's kappa, achieving a perfect score of 1.0000. The model achieved perfect accuracy, surpassing the average performance of 32 police officers in a comparative experiment. This study demonstrated that AI-based precision reading algorithms can significantly improve the automation and reliability of strip-type drug test kits, highlighting their potential applicability and effectiveness in investigative and forensic settings. + Copyright © 2026. Published by Elsevier B.V. + + + + An + Sora + S + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. + + + + Lee + Joong + J + + Institute of AI and Big Data in Medicine, Yonsei University Wonju College of Medicine, Wonju 26426, the Republic of Korea. + + + + Lee + Sangki + S + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. + + + + Chung + Heesun + H + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. Electronic address: hschung1024@gmail.com. + + + + eng + + Journal Article + + + 2026 + 02 + 18 + +
+ + England + Sci Justice + 9508563 + 1355-0306 + + + + 0 + Reagent Strips + + + IM + + + Humans + + + Image Processing, Computer-Assisted + + + Artificial Intelligence + + + Substance Abuse Detection + instrumentation + methods + + + Algorithms + + + Convolutional Neural Networks + + + Intelligent Systems + + + Deep Learning + + + Reagent Strips + + + + AI-based precision + Artificial Intelligence (AI) + Deep-learning models + Image analysis + Strip-type drug test kit + + Declaration of competing interest the authors declare the following financial interests/personal relationships which may be considered as potential competing interests: Heesun Chung reports financial support was provided by Commercializations Promotion Agency for R&D Outcomes. If there are other authors, they declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 9 + 22 + + + 2025 + 12 + 30 + + + 2026 + 2 + 11 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215160 + 10.1016/j.scijus.2026.101408 + S1355-0306(26)00014-6 + + +
+ + + 42215144 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2162-9471 + + 133 + + 2026 + + + Advances in clinical chemistry + Adv Clin Chem + + Drug induced renal injury (DIRI) biomarkers. + + 1 + 44 + 1-44 + + 10.1016/bs.acc.2026.01.006 + S0065-2423(26)00020-X + + Drug-induced renal injury (DIRI) remains a substantial issue in clinical practice, contributing to high morbidity, mortality, socioeconomic and healthcare cost. Traditional markers, such as serum creatinine or blood urea nitrogen, have low specificity and sensitivity for early identification, underscoring the need for new reliable biomarkers. This chapter investigates biomarker improvements for DIRI, focusing on clinical uses, limitations, and future possibilities. The chapter examines biomarkers such as neutrophil gelatinase-associated lipocalin, kidney injury molecule-1, cystatin C, β2-microglobulin and clusterin for diagnosing nephrotoxicity. In addition, we highlight the role of proteomics and metabolomics in facilitating the identification and development of novel biomarker candidates via high-throughput ultra-sensitive technology in investigating DIRI mechanisms. The chapter discusses validation frameworks, regulatory criteria for biomarker adoption in clinical settings, and how they are integrated into treatment monitoring and personalized medicine. Case examples demonstrate the real-world applicability in early diagnosis, risk classification, and therapy optimization. Standardization, cost, and translational gaps are discussed, as well as the potential for artificial intelligence and machine learning to improve biomarker processing and interpretation. Finally, this chapter emphasizes the transformative potential of DIRI biomarkers in providing a pathway to more accurate and timely identification of renal injury, improved patient outcomes, and reduced healthcare costs. Future research and global collaboration are required to fully realize the potential of these advances in clinical and regulatory settings. + Copyright © 2026. Published by Elsevier Inc. + + + + Sher + Emina Karahmet + EK + + School of Science and Technology, Nottingham Trent University, Nottingham, United Kingdom; International Society of Engineering Science and Technology, Nottingham, United Kingdom. Electronic address: emina.karahmet@gmail.com. + + + + Boras + Marijana Marković + MM + + Department of Laboratory Diagnostics, University Clinical Hospital Mostar, Mostar, Bosnia and Herzegovina; International Society of Engineering Science and Technology, Nottingham, United Kingdom. + + + + Fajkić + Almir + A + + Department of Pathophysiology, Faculty of Medicine, University of Sarajevo, Sarajevo, Bosnia and Herzegovina. + + + + Begović + Faris + F + + International Society of Engineering Science and Technology, Nottingham, United Kingdom. + + + + eng + + Journal Article + Review + + + 2026 + 02 + 23 + +
+ + United States + Adv Clin Chem + 2985173R + 0065-2423 + + + + 0 + Biomarkers + + + 0 + Hepatitis A Virus Cellular Receptor 1 + + + 0 + Cystatin C + + + IM + + + Humans + + + Biomarkers + analysis + blood + + + Acute Kidney Injury + diagnosis + chemically induced + + + Proteomics + + + Metabolomics + + + Hepatitis A Virus Cellular Receptor 1 + + + Cystatin C + + + + Clinical chemistry + Cystatin c + Drug-induced renal injury biomarkers + Early diagnosis + Kidney injury molecule-1 + Metabolomics + Nephrotoxicity + Neutrophil gelatinase-associated lipocalin + Personalized medicine + Proteomics + +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215144 + 10.1016/bs.acc.2026.01.006 + S0065-2423(26)00020-X + + +
+ + + 42215142 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + A hybrid chemometric and deep learning model for monitoring quality loss in thermally processed edible oils. + + 119497 + 119497 + + 10.1016/j.foodres.2026.119497 + S0963-9969(26)01180-4 + + Edible oils are routinely exposed to high temperatures during domestic and commercial cooking, leading to chemical transformations that degrade the quality of oils and pose potential health risks. This study investigated the thermal degradation of groundnut, sesame, and restaurant-collected oils, with particular emphasis on polymerization, oxidation, and hydrolysis processes. Fourier-transform infrared (FTIR) spectroscopy and dielectric measurements were employed to monitor the molecular changes induced by heating the oils, whereas quantitative assessments of oil deterioration were performed using key chemical parameters and dielectric indices. Advanced chemometric and deep learning models like CARS-PLS, RF-PLS, and 1D-CNN were used to find the most important spectral regions and key chemical and dielectric features linked to oil degradation. Among these, the 1D-CNN model exhibited the highest predictive accuracy for both acid value (AV) and dielectric constant (DC), achieving training R2values of 0.9984 and 0.9931, and an external test R2values of 0.9904 and 0.9898, respectively, with the lowest RMSE. Heating oil shows the results with significant alterations in the FTIR bands, an increased dielectric constant, and elevated AV, corresponding to the accumulation of oxidized triglycerides, free fatty acids, and high-molecular-weight polymeric residues. Furthermore, explainable artificial intelligence (XAI) using SHAP analysis revealed key spectral contributions corresponding to ester groups, carbonyl stretching of triglycerides, free fatty acids, and CH₂/CH₃ vibrations. This study demonstrates that integrating spectroscopic and dielectric analyses with predictive modeling provides a sensitive, non-destructive laboratory-based proof-of-concept approach for evaluating the oil degradation during thermal processing. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Varma + Shruti O + SO + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. + + + + Vishwakarma + Ajay L + AL + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. + + + + Sonawane + M R + MR + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. Electronic address: smahadev123@gmail.com. + + + + Garad + Nitin P + NP + + School of Physical Sciences, Swami Ramanand Teerth Marathwada University, Nanded 431606, India. + + + + Kumbharkhane + A C + AC + + School of Physical Sciences, Swami Ramanand Teerth Marathwada University, Nanded 431606, India. + + + + eng + + Journal Article + + + 2026 + 05 + 20 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + + + 0 + Plant Oils + + + IM + + + Hot Temperature + + + Spectroscopy, Fourier Transform Infrared + + + Deep Learning + + + Cooking + methods + + + Plant Oils + chemistry + analysis + + + Food, Processed + + + Oxidation-Reduction + + + Hydrolysis + + + + Chemical properties + Chemometrics + Deep learning + Dielectric properties + Explainable artificial intelligence (XAI) + Thermal degradation + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 25 + + + 2026 + 5 + 17 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215142 + 10.1016/j.foodres.2026.119497 + S0963-9969(26)01180-4 + + +
+ + + 42215140 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Multimodal analysis of spontaneous speech for predicting food liking: Integrating linguistic and prosodic features with machine learning. + + 119483 + 119483 + + 10.1016/j.foodres.2026.119483 + S0963-9969(26)01166-X + + Spontaneous speech offers a promising yet underexplored window into consumers' emotional experiences during food evaluation. Unlike traditional self-reported measures, vocal expression captures both explicit linguistic content and implicit affective cues, potentially providing a richer account of hedonic perception. This study investigates whether linguistic and prosodic cues embedded in natural spoken responses can predict product liking. Ninety participants evaluated three chocolates and three plant-based beverages, providing hedonic ratings and open-ended spoken descriptions. Speech was analysed using psycholinguistic, prosodic, and representation-based features. Multiple machine learning algorithms were applied for both classification (low/medium vs high liking) and regression (continuous liking prediction). Feature-level comparisons showed that chocolates elicited richer emotional language, higher vocal intensity, and greater acoustic variability than plant-based drinks (p < 0.005). Across the full dataset, linguistic markers were the strongest predictors of liking (F1-score = 0.695; mean absolute error (MAE) = 1.530), while prosodic features provided complementary information related to arousal and engagement. Speech embeddings showed limited generalisation (area under the curve (AUC) < 0.518; MAE > 1.602). Product-specific analyses revealed higher predictive accuracy for chocolates (F1-score = 0.825; MAE = 1.213) than for plant-based beverages (F1-score = 0.559; MAE = 1.619), indicating that the strength of affective cues in speech depends on the emotional resonance of the product being evaluated. These findings demonstrate that spontaneous speech contains measurable emotional signals related to food liking. Interpretable linguistic and prosodic features can partially predict hedonic responses, highlighting the potential of multimodal, speech-based emotion analysis as a complementary tool in sensory and consumer research. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Sousa + Pedro M + PM + + GreenUPorto/Inov4Agro, DGAOT, Faculty of Sciences, University of Porto, Portugal. + + + + Lima + Rui C + RC + + Sense Test, Lda, Vila Nova de Gaia, Portugal. + + + + García-Segovia + Purificación + P + + i-Food, IUIA-FoodUPV, Universitat Politècnica de València, Spain. + + + + Alcañiz + Mariano + M + + LabLENI, HumanTech/LabLENI, Universitat Politècnica de València, València, Spain. + + + + Cunha + Luís M + LM + + GreenUPorto/Inov4Agro, DGAOT, Faculty of Sciences, University of Porto, Portugal. Electronic address: lmcunha@fc.up.pt. + + + + eng + + Journal Article + + + 2026 + 05 + 18 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Humans + + + Machine Learning + + + Speech + + + Food Preferences + psychology + + + Female + + + Emotions + + + Male + + + Young Adult + + + Cues + + + Adult + + + Linguistics + + + Consumer Behavior + + + + Acoustic features + Affective computing + Sensory analysis + Speech emotion + Supervised learning + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 4 + + + 2026 + 4 + 28 + + + 2026 + 5 + 16 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215140 + 10.1016/j.foodres.2026.119483 + S0963-9969(26)01166-X + + +
+ + + 42215133 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Translating Food Biosensing into Practice: Smart Packaging, On-Site Analytics, and AI Integration. + + 119473 + 119473 + + 10.1016/j.foodres.2026.119473 + S0963-9969(26)01156-7 + + The global food system encounters increasing challenges from contamination threats, necessitating innovative monitoring technologies to guarantee safety and quality. This review investigates novel precision monitoring methodologies, emphasizing sophisticated biosensing technologies, intelligent packaging systems, molecular docking, and AI-integrated platforms. Biosensors utilize electrochemical, optical, and thermal transducers for the swift, on-site identification of contaminants, toxins, and allergens, surpassing conventional methods in both speed and accessibility. The incorporation of intelligent packaging improves real-time quality assurance, while molecular docking determines contaminant interactions to improve sensor design. Advancements in AI and machine learning enhance predictive analytics and traceability, meeting intricate supply chain requirements. Nonetheless, obstacles such as matrix interference, sensor stability, and regulatory deficiencies remain. Future directions highlight nanotechnology, biodegradable materials, and defined standards to improve scalability and sustainability. These breakthroughs will continue to transform food safety, minimize waste, and enhance global health equity, thereby revolutionizing the food industry for a sustainable future. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Seyedhosseini-Ghaheh + Hooria + H + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. Electronic address: h.hosseini@nutr.mui.ac.ir. + + + + Rafieian + Fatemeh + F + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. + + + + Rezaei + Atefe + A + + School of Life Sciences, Plant Proteins and Nutrition, Technical University of Munich, Freising 85354, Germany. + + + + Askari + Gholamreza + G + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. + + + + Zarrabi + Ali + A + + Department of Biomedical Engineering, Faculty of Engineering and Natural Sciences, Istinye University, Istanbul 34396, Türkiye; Graduate School of Biotechnology and Bioengineering, Yuan Ze University, Taoyuan 320315, Taiwan. Electronic address: ali.zarrabi@istinye.edu.tr. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 16 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Biosensing Techniques + methods + + + Artificial Intelligence + + + Food Packaging + methods + + + Food Safety + methods + + + Food Contamination + analysis + + + Molecular Docking Simulation + + + Intelligent Systems + + + Humans + + + + Artificial Intelligence + Food biosensors + Molecular Docking + Smart Packaging + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 23 + + + 2026 + 4 + 24 + + + 2026 + 5 + 15 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215133 + 10.1016/j.foodres.2026.119473 + S0963-9969(26)01156-7 + + +
+ + + 42215117 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Artificial intelligence integrated in non-destructive technologies for monitoring food freshness: A review of next generation approach. + + 119450 + 119450 + + 10.1016/j.foodres.2026.119450 + S0963-9969(26)01132-4 + + Food freshness is a significant quality and safety attribute, which contributes in consumers' health and their food choices. The adoption of rapid, accurate, and reliable food freshness detection novel approaches is of great significance. Non-destructive testing (NDT) offers precise, fast and efficient detection of food freshness, quality and safety but, still confronts multiple issues in data preprocessing, accuracy, reliability and adaptability. However, artificial intelligence (AI) integration in NDT upholds significant promise to overcome these issues. This review, spotlights the significance of integrating the AI in NDT (spectroscopy, imaging and other technologies) for boosting the performance of NDT. It further probes the merits, and demerits, and the principles of AI assisted NDT technologies. Moving forward, integrating AI in NDT technologies have significantly boosted the reliable and accurate freshness detection in complex food matrices, plant and animal derived foods. In spite of recent advancements in this field of research, there are still several existing challenges of compatibility, precision, and adaptability associated with the NDT approaches coupled with AI. Therefore, this review is comprehensively emphasized on the promising transformative prospects of AI integrated in NDT approaches for the non-destructive, rapid, reliable and accurate detection of food freshness based on its quality indicators accompanied with highlighting the future challenges, innovations and directions. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Waseem + Muhammad + M + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China; Department of Food Science and Technology, Faculty of Agriculture and Environment, The Islamia University of Bahawalpur, 63100, Pakistan. + + + + Javed + Muhammad Rizwan + MR + + Department of Food Science and Technology, Faculty of Agriculture and Environment, The Islamia University of Bahawalpur, 63100, Pakistan. + + + + Manzoor + Muhammad Faisal + MF + + Guangdong Provincial Key Laboratory of Intelligent Food Manufacturing, School of Food Science and Engineering, Foshan University, Foshan, China. + + + + Xia + Xiuqi + X + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. + + + + Huang + Yilei + Y + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. + + + + Chen + Xiaomei + X + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. Electronic address: xmchen@jmu.edu.cn. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 14 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Artificial Intelligence + + + Food Analysis + methods + + + Humans + + + Food Quality + + + Animals + + + Intelligent Systems + + + + Artificial intelligence + Deep learning + Freshness + Machine learning + Rapid monitoring + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 22 + + + 2026 + 5 + 6 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215117 + 10.1016/j.foodres.2026.119450 + S0963-9969(26)01132-4 + + +
+ + + 42215102 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Towards sustainable serum-free media development from alternative sources for cultivated meat. + + 119434 + 119434 + + 10.1016/j.foodres.2026.119434 + S0963-9969(26)01116-6 + + The economic feasibility and scalability of cultivated meat (CM) is critically hindered by the high manufacturing costs, particularly the cost associated with cell culture media. Therefore, numerous studies have proposed the use of sustainable alternatives to replace the expensive cell culture media components, especially animal serum. In this review, we comprehensively surveyed such developments and interpreted the opportunities and limitations of animal serum-reduction or replacement methodologies in designing culture media for CM production. Among the various alternative sources investigated, plant-derived sources and recombinant proteins have been the most extensively studied. We also highlight the critical gaps in existing studies such as the lack of demonstration of scalability, cost-effectiveness and long-term applicability of proposed alternative sources. Subsequently, we provide a roadmap for future studies on how to demonstrate the proposed alternative does not have adverse effects on cellular long-term stability, as well as comply with food safety and regulatory standards while being cost-effective which are critical for large scale CM manufacturing. We further propose a two-pronged framework based on high-throughput screening, systems biology, and Machine Learning (ML) tools to optimize serum-free CM media formulations using alternative sources in a rapid and scalable manner. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Sivakumar + Sanjay + S + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Manayankath + Aparna + A + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Hong + Yi Fan + YF + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Biomedical Engineering, National University of Singapore, Singapore. + + + + Thrivikraman + Greeshma + G + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Tekkatte + Chandana + C + + The Good Food Institute India, Bengaluru, India. + + + + Choudhury + Deepak + D + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Food Science and Technology, National University of Singapore, Singapore; Bezos Centre for Sustainable Protein at the National University of Singapore, Singapore. Electronic address: Deepak_Choudhury@a-star.edu.sg. + + + + Pang + Kuin Tian + KT + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Biomedical Engineering, National University of Singapore, Singapore; Bioinformatics Institute, Agency for Science, Technology and Research (A*STAR), Singapore, Singapore; School of Chemistry, Chemical Engineering and Biotechnology, Nanyang Technological University, Singapore. Electronic address: zach_pang@a-star.edu.sg. + + + + Lakshmanan + Meiyappan + M + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India; Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Wadhwani School of Data Science and AI (WSAI), Indian Institute of Technology Madras, Chennai, India; Centre for Integrative Biology and Systems medicinE (IBSE), Indian Institute of Technology Madras, Chennai, India. Electronic address: meiyappan@iitm.ac.in. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 13 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + + + 0 + Culture Media, Serum-Free + + + IM + + + In Vitro Meat + + + Animals + + + Culture Media, Serum-Free + chemistry + + + Meat Substitutes + + + + Alternative proteins + Animal serum alternatives + Cultivated meat + Serum-free media + Sustainability + Systems biology + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 11 + + + 2026 + 3 + 21 + + + 2026 + 5 + 9 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215102 + 10.1016/j.foodres.2026.119434 + S0963-9969(26)01116-6 + + +
+ + + 42214983 + + 2026 + 05 + 29 + +
+ + 1879-3363 + + 231 + + 2026 + May + 29 + + + Marine pollution bulletin + Mar Pollut Bull + + Deep learning-based prediction of trace silver concentrations in marine sediments from mid-infrared spectroscopy. + + 119930 + 119930 + + 10.1016/j.marpolbul.2026.119930 + S0025-326X(26)00717-4 + + Silver (Ag) is a biologically toxic element, and the rapid detection of its concentrations in environmental samples is thus of great importance. This study investigates mid-infrared (MIR) spectra of low-Ag sediments from the South China Sea (SCS), and successfully predicts Ag concentrations by three machine learning models, including Kennard Stone-competitive adaptive reweighted sampling-partial least squares regression (KS-CARS-PLSR), Kennard Stone-random forest (KS-RF), and random selecting-squeeze excitation attention-residual network (RS-SE-ResNet-1D). Among the three techniques, the RS-SE-ResNet-1D model performs best in terms of Ag prediction, achieving an R2 of 0.82, an RMSE of 0.03, and an RPD of 2.38. A common feature wavenumber band in the range of 1408.3-1408.7 cm-1, corresponding to the v3 symmetric stretching absorption band of carbonate ions (CO3 + 2-), is identified from all three models. This suggests that marine productivity is possibly the dominant factor controlling Ag levels in marine sediments of the SCS. The machine learning models based on MIR spectral data developed in this study provide a new analytical approach for determining Ag concentrations in low-Ag marine sediments, and offer new insights into the study of biogeochemical cycling of Ag. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Yu + Boyuan + B + + School of Resources and Environmental Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + Xu + Liqiang + L + + School of Resources and Environmental Engineering, Hefei University of Technology, Hefei, Anhui, China. Electronic address: xlq@hfut.edu.cn. + + + + Ning + Yu + Y + + Instrumental Analysis Center, Hefei University of Technology, Hefei, Anhui, China. + + + + Xu + Fang + F + + School of Food and Biological Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + Han + Qingli + Q + + School of Food and Biological Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Mar Pollut Bull + 0260231 + 0025-326X + + IM + + Machine learning + Marine sediments + Mid-infrared spectra + Productivity + Silver + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 28 + + + 2026 + 5 + 23 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 19 + 52 + + + aheadofprint + + 42214983 + 10.1016/j.marpolbul.2026.119930 + S0025-326X(26)00717-4 + + +
+ + + 42214978 + + 2026 + 05 + 29 + +
+ + 1878-0539 + + 118 + + 2026 + May + 14 + + + Journal of plastic, reconstructive & aesthetic surgery : JPRAS + J Plast Reconstr Aesthet Surg + + Development and nested cross-validation of machine learning models for predicting transfusion requirements in pediatric craniosynostosis surgery. + + 209 + 220 + 209-220 + + 10.1016/j.bjps.2026.05.033 + S1748-6815(26)00288-3 + + Blood transfusion is common during pediatric craniosynostosis surgery; however, transfusion volumes and use of cell salvage systems can vary considerably. To support preoperative transfusion planning in patients undergoing craniectomy for craniosynostosis, we developed and internally validated machine learning (ML) models to predict perioperative transfusion risks and transfusion volumes in this patient population. Data from eligible patients ≤36 months of age from the NSQIP® Pediatric dataset were included for modeling. A classifier pipeline was developed to predict probabilities associated with transfusion risk, and a probabilistic/quantile regression pipeline was developed to predict the median transfusion volume (in mL/kg) with interquartile range. Performance of the modeling pipelines was evaluated using nested cross-validation with 5-fold outer loops. In total, 8045 patients were included with 4091 (50.9%) receiving perioperative transfusion. For the classification pipeline, the optimal model configuration was a LightGBM classifier. The modeling pipeline achieved a mean area under the receiver operating characteristic curve (AUC-ROC) of 0.77 (95% confidence interval [CI] 0.75-0.78) and mean Brier score of 0.20 (95% CI 0.19-0.20) across nested cross-validation. For the regression stage, the optimal model configuration was a probabilistic NGBoost regressor. The modeling pipeline achieved an average median absolute error of 6.86 mL/kg (95% CI 6.61-7.11), with a mean IQR coverage of 53% (95% CI 52-53%). These models may support individualized blood product preparation and selective use of cell salvage systems. External validation and further real-world testing are needed prior to the clinical implementation of this tool. + Copyright © 2026 British Association of Plastic, Reconstructive and Aesthetic Surgeons. Published by Elsevier Ltd. All rights reserved. + + + + Deng + Jiawen + J + + Temerty Faculty of Medicine, University of Toronto, Toronto, ON, Canada. + + + + Gharavi + Aidin + A + + Mayo Clinic Alix School of Medicine, Mayo Clinic, Rochester, MN, USA. + + + + Heybati + Kiyan + K + + Department of Internal Medicine, Mayo Clinic, Rochester, MN, USA. + + + + Haile + Dawit + D + + Department of Anesthesiology, Mayo Clinic, Rochester, MN, USA. + + + + Ahn + Edward S + ES + + Department of Neurosurgery, Mayo Clinic, Rochester, MN, USA. + + + + Mardini + Samir + S + + Division of Plastic Surgery, Department of Surgery, Mayo Clinic, Rochester, MN, USA. + + + + Gibreel + Waleed + W + + Division of Plastic Surgery, Department of Surgery, Mayo Clinic, Rochester, MN, USA; Department of Pediatric and Adolescents Medicine, Mayo Clinic, Rochester, MN, USA. Electronic address: Gibreel.Waleed@mayo.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Netherlands + J Plast Reconstr Aesthet Surg + 101264239 + 1748-6815 + + IM + + Blood transfusion + Craniectomy + Craniosynostoses + Machine learning + Operative blood salvage + + Declaration of Competing Interest The authors declare no conflict of interest. The ACS-NSQIP® and participating hospitals are the source of this data; they have not verified nor are they responsible for the statistical validity of the data analysis or the conclusions derived by the authors. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 9 + + + 2026 + 4 + 20 + + + 2026 + 5 + 12 + + + 2026 + 5 + 29 + 19 + 52 + + + aheadofprint + + 42214978 + 10.1016/j.bjps.2026.05.033 + S1748-6815(26)00288-3 + + +
+ + + 42214919 + + 2026 + 05 + 29 + +
+ + 1090-2104 + + 827 + + 2026 + May + 25 + + + Biochemical and biophysical research communications + Biochem Biophys Res Commun + + Employing network toxicology, molecular docking, machine learning, and single-cell analysis to analyze BPA exposure-induced ccRCC. + + 154037 + 154037 + + 10.1016/j.bbrc.2026.154037 + S0006-291X(26)00801-6 + + This study investigates the molecular mechanisms underlying bisphenol A (BPA)-induced clear cell renal cell carcinoma (ccRCC). We integrated transcriptomic data from multiple GEO datasets and performed differential expression analysis and WGCNA to identify BPA-associated candidate genes. Enrichment analyses implicated pathways including cell adhesion, lipid metabolism, arachidonic acid signaling, and innate immune response. Using twelve machine learning algorithms, we identified four core genes (ITGB2, TBXAS1, LIPA, and CLEC7A), all upregulated in ccRCC. Molecular docking suggested stable BPA-protein interactions with favorable binding energies. Single-cell analysis showed predominant expression of these genes in monocytes and macrophages. LIPA was elevated in kidney cancer tissues and associated with clinical outcomes. In vitro experiments confirmed that BPA exposure promoted ccRCC cell progression by regulating core gene expression. This integrated approach offers new insights into the molecular mechanisms of BPA-induced ccRCC and identifies potential biomarkers for environmental risk assessment. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Chen + Jianyu + J + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China. + + + + Wu + Lianquan + L + + Department of Urology, Longgang People's Hospital, Wenzhou, 325000, China. + + + + Jin + Haoqi + H + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China. + + + + Li + Yeping + Y + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China; Institute of Urology, Wenzhou Medical University, Wenzhou, 325000, China. Electronic address: liypwz@126.com. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + United States + Biochem Biophys Res Commun + 0372516 + 0006-291X + + IM + + Bisphenol A + Clear cell renal cell carcinoma + Machine learning + Molecular docking + Single-cell analysis + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 22 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 19 + 51 + + + aheadofprint + + 42214919 + 10.1016/j.bbrc.2026.154037 + S0006-291X(26)00801-6 + + +
+ + + 42214908 + + 2026 + 05 + 29 + +
+ + 1876-035X + + 19 + 7 + + 2026 + May + 25 + + + Journal of infection and public health + J Infect Public Health + + The Italian hand hygiene project: A joint-commission Italian network analysis. + + 103268 + 103268 + + 10.1016/j.jiph.2026.103268 + S1876-0341(26)00140-1 + + Hand hygiene (HH) is a straightforward yet highly effective preventive measure against healthcare-associated infections; however, global compliance remains suboptimal. This study analyzed a substantial Italian dataset, focusing on adherence to HH guidelines among healthcare professionals, and identified key factors influencing compliance. + Direct multi- wave cross-sectional observational data on hand hygiene from over 749,000 opportunities were collected between 2017 and 2024 across 30 Italian hospitals participating in the Joint Commission International Hand Hygiene Project. Traditional statistical analyses and supervised machine learning (ML) models were employed to evaluate compliance rates and to examine their association with the year of observation, clinical area, professional role, and patient interaction moment (opportunity). Additionally, ML models were implemented to support proactive, risk- based surveillance within hospital settings by identifying high- risk contexts and facilitating more targeted monitoring strategies. + Overall hand hygiene compliance increased from 73.5% in 2017-82% in 2024, surpassing the World Health Organization's (WHO) target of 80% from 2020 onwards. Nursing staff demonstrated the highest adherence. High-risk opportunities, such as pre-aseptic procedures and post-exposure to bodily fluids, exhibited higher compliance than other moments. Emergency departments recorded the lowest compliance rates (76.3%). ML models confirmed that the year, patient interaction moment, and professional role are the most significant predictors of adherence. The most effective ML model achieved an accuracy of 64.6% in classifying hand hygiene actions. + This analysis underscores an improving trend in hand hygiene practices within Italian hospitals and concurrently identifies specific contexts-such as emergency departments-that require targeted interventions. The integration of observational monitoring with predictive artificial intelligence models could facilitate proactive, risk-based surveillance and focused improvement strategies. Accreditation-driven, multi-modal initiatives like this project highlight the vital role of measurement in fostering a culture of hand hygiene and advancing patient safety. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Buja + A + A + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. Electronic address: alessandra.buja@unipd.it. + + + + Damiani + G + G + + Center of Research in Precision Medicine and Chronic Inflammation, Department of Biomedical, Surgical and Dental Sciences, University of Milan, Milan 20122, Italy; Fondazione IRCCS Ca' Granda Ospedale Maggiore Policlinico, Milan 20122, Italy. + + + + Tangherloni + A + A + + Center of Research in Precision Medicine and Chronic Inflammation, Department of Biomedical, Surgical and Dental Sciences, University of Milan, Milan 20122, Italy; Department of Computing Sciences, Bocconi University, Milan 20136, Italy. + + + + Manfredi + M + M + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. + + + + Lanza + G + G + + Network Joint Commission Italia, Italy. + + + + Palmeri + C + C + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + England + J Infect Public Health + 101487384 + 1876-0341 + + IM + + Hand hygiene + Health Care Associated Infection + Hospital infection + Nosocomial infection + Prevention and control + + Declaration of Competing Interest The authors declare that there are no conflicts of interest regarding the publication of this manuscript. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 13 + + + 2026 + 5 + 11 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 19 + 50 + + + aheadofprint + + 42214908 + 10.1016/j.jiph.2026.103268 + S1876-0341(26)00140-1 + + +
+ + + 42214885 + + 2026 + 05 + 29 + +
+ + 1879-0771 + + 132 + + 2026 + May + 24 + + + Computerized medical imaging and graphics : the official journal of the Computerized Medical Imaging Society + Comput Med Imaging Graph + + An interpretable multimodal model integrating clinical, spectral CT imaging, and deep learning analysis of intra- and peritumoral regions for preoperative prediction of perineural invasion in gastric cancer: A prospective, multicenter study. + + 102776 + 102776 + + 10.1016/j.compmedimag.2026.102776 + S0895-6111(26)00079-0 + + Perineural invasion (PNI) is crucial for risk stratification and treatment planning. This study aims to develop a novel multimodal model for preoperative prediction of PNI in gastric cancer. + A total of 250 patients with pathologically confirmed gastric cancer from multiple centers were enrolled and divided into a training cohort (n = 138), an internal validation cohort (n = 59), and an external validation cohort (n = 53). Spectral CT parameters from both intra- and peritumoral regions were acquired using the GSI viewer software, while deep learning features were extracted via a ResNet-50 architecture. Clinical features were screened through univariate and multivariate regression analyses. Based on machine learning, we developed a spectral parameter model, a deep learning feature model, a clinical prediction model, and a multimodal fusion model (MFM). The predictive performance of the models was evaluated using calibration curves, receiver operating characteristic curves, and decision curve analysis (DCA). Model interpretability was achieved by employing Shapley Additive exPlanations (SHAP). + Compared with individual models, MFM demonstrated the best predictive performance, with area under the curve (AUC) values of 0.926, 0.885, and 0.871 in the training, internal validation, and external validation cohorts, respectively. DCA confirmed that MFM provided a higher net benefit over a wide range of threshold probability. Calibration curve showed MFM had better predictive consistency, and the Hosmer-Lemeshow test indicated good fit across all cohorts (all p-values > 0.05). SHAP effectively interpreted the decision-making process of the model. + The novel multimodal fusion model, which integrates clinical, spectral CT parameters, and deep learning features from intra- and peritumoral regions, demonstrated outstanding performance in preoperatively predicting PNI in gastric cancer. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Zhao + Yuncong + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China. + + + + Chen + Lihong + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. + + + + Wang + Lili + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Clinical Research Center for Radiology and Radiotherapy of Fujian Province (Digestive, Hematological and Breast Malignancies), Fuzhou 350001, China. + + + + Yue + Wenjing + W + + The Fourth Clinical College, Henan Medical University, Xinxiang, 453003, China. + + + + Zeng + Deye + D + + Department of Pathology, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + You + Yaru + Y + + Department of Radiology, The First Affiliated Hospital of Zhengzhou University, Zhengzhou 450052, China; Henan Key Laboratory of Image Diagnosis and Treatment for Digestive System Tumor, Zhengzhou 450052, China; Henan Key Laboratory of CT Imaging, Zhengzhou 450052, China. + + + + Weng + Caiming + C + + Department of Gastric Surgery, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + Li + Weixing + W + + Department of Radiology, Xinxiang Central Hospital, The Fourth Clinical College, Henan Medical University, Xinxiang, 453003, China. + + + + Chen + Yilin + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + Lin + Lin + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. Electronic address: linlin@fjmu.edu.cn. + + + + Xu + Haiping + H + + School of Computer and Data Science, Minjiang University, Fuzhou 350108, China. Electronic address: haiping@mju.edu.cn. + + + + Xue + Yunjing + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. Electronic address: xueyunjing@fjmu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 24 + +
+ + United States + Comput Med Imaging Graph + 8806104 + 0895-6111 + + IM + + Deep learning + Gastric cancer + Peripheral nerve invasion + SHAP + Spectral CT + + Declaration of Competing Interest The authors have no relevant financial or non-financial interests to disclose. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 10 + 15 + + + 2026 + 4 + 27 + + + 2026 + 5 + 13 + + + 2026 + 5 + 29 + 19 + 50 + + + aheadofprint + + 42214885 + 10.1016/j.compmedimag.2026.102776 + S0895-6111(26)00079-0 + + +
+ + + 42214863 + + 2026 + 05 + 29 + +
+ + 1873-3336 + + 513 + + 2026 + May + 28 + + + Journal of hazardous materials + J Hazard Mater + + Advances in multispectral and hyperspectral inversion for soil heavy metal contamination: Mechanisms, machine learning algorithms, and future perspectives. + + 142542 + 142542 + + 10.1016/j.jhazmat.2026.142542 + S0304-3894(26)01520-7 + + Heavy metal (HM) contamination in soil exhibits insidious and cumulative effects, posing long-term risks to ecosystems and human health. Traditional field sampling and laboratory analysis are increasingly insufficient for large-scale continuous monitoring, driving the adoption of multispectral (MS) and hyperspectral (HS) remote sensing. Bibliometric analysis reveals clear research trends: target elements are primarily copper, lead, and zinc, while data acquisition has progressively shifted from laboratory spectroscopy to portable devices and satellite platforms, reflecting an expansion from local to regional scales. This has led to increasing data complexity and greater demands on model robustness and generalization. However, expanding the spatial scale and transitioning to satellite observations introduce fundamental challenges. Mixed pixels and moisture-induced spectral distortions reduce signal purity, while the indirect spectral response of HMs further complicates quantitative inversion. Sample scarcity and spatial heterogeneity also limit cross-regional generalization, constraining model robustness and stability. In response, models have evolved from traditional linear regression to ensemble learning methods such as Extreme Gradient Boosting (XGBoost), and further to deep learning frameworks, including Convolutional Neural Networks (CNN) and Transformers, enabling hierarchical feature extraction and task-oriented structural design. This paper reviews the key technical bottlenecks in soil HM spectral inversion, integrating bibliometric insights with methodological advances to provide a comprehensive framework for understanding current progress and guiding future developments in large-scale, high-precision inversion. + Copyright © 2026 Elsevier B.V. All rights reserved. + + + + Huang + Minghao + M + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China. + + + + Wu + Xiang + X + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China; Key Laboratory of Danjiangkou Reservoir Area's Aquatic Eco-Environment and Health, Shiyan City (Hanjiang Normal University), Shiyan 442000, China. + + + + Peng + Qian + Q + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China; Key Laboratory of the Evaluation and Monitoring of Southwest Land Resources (Ministry of Education), Sichuan Normal University, Chengdu 610068, China. Electronic address: qianpeng@hubu.edu.cn. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 28 + +
+ + Netherlands + J Hazard Mater + 9422688 + 0304-3894 + + IM + + Hyperspectral + Indirect Inversion Mechanisms + Machine learning + Multispectral + Soil Heavy metals + Spectral Feature Selection + + Declaration of Competing Interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 21 + + + 2026 + 5 + 25 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 19 + 49 + + + aheadofprint + + 42214863 + 10.1016/j.jhazmat.2026.142542 + S0304-3894(26)01520-7 + + +
+ + + 42214786 + + 2026 + 05 + 29 + +
+ + 1876-4754 + + + 2026 + May + 28 + + + Brain stimulation + Brain Stimul + + EEG Biomarkers of Accelerated Prolonged Intermittent Theta-Burst Stimulation in Depression: Machine Learning with a Minimal-Electrode Montage. + + 103135 + 103135 + + 10.1016/j.brs.2026.103135 + S1935-861X(26)00112-9 + + + Chang + Chun-Hung + CH + + An Nan Hospital, China Medical University, Tainan, Taiwan; Institute of Clinical Medical Science, China Medical University, Taichung, Taiwan; Shu-Zen Junior College of Medicine and Management, Tainan, Taiwan. + + + + Sack + Alexander T + AT + + Department of Cognitive Neuroscience, Faculty of Psychology and Neuroscience, Maastricht University, Maastricht, The Netherlands; Department of Psychiatry and Neuropsychology, School for Mental Health and Neuroscience (MHeNs), Brain+Nerve Centre, Maastricht University Medical Centre (MUMC), The Netherlands. + + + + Chu + Che-Sheng + CS + + Department of Psychiatry, Kaohsiung Veterans General Hospital, Kaohsiung, Taiwan; Non-Invasive Neuromodulation Consortium for Mental Disorders, Society of Psychophysiology, Taipei, Taiwan; Graduate Institute of Medicine, College of Medicine, Kaohsiung Medical University, Kaohsiung, Taiwan. Electronic address: youngtzuchi@hotmail.com. + + + + Chang + Hsin-An + HA + + Non-Invasive Neuromodulation Consortium for Mental Disorders, Society of Psychophysiology, Taipei, Taiwan; Department of Psychiatry, Tri-Service General Hospital, National Defense Medical University, Taipei, Taiwan. Electronic address: chang.ha@mail.ndmctsgh.edu.tw. + + + + eng + + Letter + + + 2026 + 05 + 28 + +
+ + United States + Brain Stimul + 101465726 + 1876-4754 + + IM + + EEG biomarkers + accelerated piTBS + brain stimulation + machine learning + major depressive disorder + resting-state electroencephalography + + Declaration of Competing Interest ☒The authors declare the following financial interests/personal relationships which may be considered as potential competing interests: The authors declare the following financial interests/personal relationships which may be considered as potential competing interests: ATS is director of the Academy of Brain Stimulation (www.brainstimulation-academy.com) and the International Clinical TMS Certification Course (www.tmscourse.eu), receiving equipment support from MagVenture, MagStim, Deymed, Yingchi, Brainsway. He also serves as scientific advisor for Platoscince Medical and Alpha Brain Technologies. Other authors declare that they have no competing financial interests or personal relationships that could be perceived to have influenced the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 23 + + + 2026 + 5 + 25 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 19 + 35 + + + aheadofprint + + 42214786 + 10.1016/j.brs.2026.103135 + S1935-861X(26)00112-9 + + +
+ + + 42214688 + + 2026 + 05 + 29 + +
+ + 1878-1632 + + + 2026 + May + 28 + + + The spine journal : official journal of the North American Spine Society + Spine J + + From Three to Eight Clusters: A Machine Learning-Based Classification of Operated Adult Spinal Deformity Patients. + S1529-9430(26)00157-9 + 10.1016/j.spinee.2026.05.003 + + Adult spinal deformity (ASD) is a heterogeneous condition encompassing diverse etiologies, clinical presentations, and surgical challenges. While previous unsupervised learning models have stratified ASD patients into three broad phenotypes, these often lack clinical granularity for surgical decision-making. + To refine the classification of operated ASD patients using unsupervised machine learning and assess whether expanding from 3 to 8 clusters improves clinical discrimination and predictive robustness. + Retrospective multicenter study using machine learning clustering. + 471 adult patients who underwent surgery for ASD across six specialized spine centers. + ODI, SRS-22, spinal alignment metrics, surgical strategy, and postoperative complications. + A k-means clustering algorithm was applied to a selected set of 12 demographic, radiographic, and functional variables (C12). Clustering solutions with 3 and 8 groups were compared. Each cluster was analyzed for age, etiology, disability scores (ODI, SRS-22), spinal alignment, surgical strategy, and complication rates. Predictive models using LDA and KNN assessed classification accuracy for new patient assignment. + The 8-cluster model identified clinically distinct phenotypes, including subgroups of young patients with idiopathic scoliosis, structural hyperkyphosis, and early sagittal decompensation. In elderly patients, clusters differentiated pain profiles, alignment, and frailty. The most severe clusters distinguished coronal-dominant versus sagittal collapse deformities, with differing risks and outcomes. LDA maintained robust accuracy (91.4%) in predicting cluster assignment across 50 testing splits, outperforming KNN. + To our knowledge, this is among the most granular unsupervised ML-based phenotypic classifications of operated ASD patients reported to date. This refined 8-cluster model enhances clinical phenotyping in ASD surgery, offering more precise subgroup stratification than traditional 3-cluster models. It supports the integration of unsupervised learning into personalized surgical planning, risk stratification, and multicenter outcome trials. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Roscop + Cecile + C + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. Electronic address: cecile.roscop@gmail.com. + + + + Bourghli + Anouar + A + + Spine Surgery Department, King Faisal Specialist Hospital and Research Center, Riyadh, Saudi Arabia. + + + + Baroncini + Alice + A + + Casa di Cura Humanitas San Pio X, Milano, Italy. + + + + Alanay + Ahmet + A + + Spine Center, Acibadem University School of Medicine, Istanbul, Turkey. + + + + Pellise + Ferran + F + + Spine Surgery Unit, Vall D'Hebron Hospital, Barcelona, Spain. + + + + Kleinstueck + Frank + F + + Schulthess Klinik, Zürich, Switzerland. + + + + Pizones + Javier + J + + Spine Surgery Unit, Hospital Universitario La Paz, Madrid, Spain. + + + + Charles + Yann-Philippe + YP + + Hôpitaux Universitaires de Strasbourg, France. + + + + Larrieu + Daniel + D + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + Boissière + Louis + L + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + Obeid + Ibrahim + I + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + European Spine Study Group (ESSG) + + No institution. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + Spine J + 101130732 + 1529-9430 + + IM + + Adult spinal deformity + Clustering + K-means algorithm + Machine learning + Phenotyping + Predictive modeling + Surgical planning + + Declaration of competing interest The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 11 + + + 2026 + 5 + 15 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 19 + 34 + + + aheadofprint + + 42214688 + 10.1016/j.spinee.2026.05.003 + S1529-9430(26)00157-9 + + +
+ + + 42214660 + + 2026 + 05 + 29 + +
+ + 1878-3511 + + + 2026 + May + 28 + + + International journal of infectious diseases : IJID : official publication of the International Society for Infectious Diseases + Int J Infect Dis + + Investigating Infection and Clinical Data to Predict Effective Antibiotic Therapy and Monitor Resistance Trends. + + 108842 + 108842 + + 10.1016/j.ijid.2026.108842 + S1201-9712(26)00477-7 + + Data-driven approaches to effectively select antibiotics are crucial to improving patient outcomes and reducing antibiotic resistance. This study aimed to determine whether routinely collected clinical and microbiological data can be used to train machine learning (ML) models to predict antibiotic resistance in patients with bacterial infections. + We conducted a retrospective observational study on clinical data from two separate Italian hospitals, analyzing 15,581 bacterial isolates collected from 9,966 patients between 2018 and 2024 at a multi-department hospital located in Rome and secondary clinic located in Capranica, about 70 Km away from Rome. Multiple ML models were trained, using both unbalanced and SMOTE-balanced datasets. Performance was assessed using cross-validation and independent test sets, comprising 2023-2024 isolates. Performance was measured using the Area Under the Receiver Operating Characteristic curve (AUROC), F1 score, accuracy, precision, and recall. + XGBoost consistently outperformed other trained models, achieving AUROCs of 0.882 and 0.878 for Gram-positive and Gram-negative datasets, respectively. Species-specific models further improved discrimination, reaching AUROC scores up to 0.946 for P. aeruginosa, 0.941 for K. pneumoniae, 0.938 for E. faecalis, 0.919 for E. coli, 0.894 for P. mirabilis, and 0.891 for S. aureus. + These results demonstrate the utility of ML models in accurately predicting antibiotic susceptibility from routine clinical data, thus facilitating rapid initiation of targeted therapy. Such an approach can potentially reduce treatment delays by up to 48 hours compared to traditional diagnostic methods, presenting a useful tool to manage patients in critical conditions and combat antibiotic resistance in clinical practice. + Copyright © 2026. Published by Elsevier Ltd. + + + + Benedetto + Marco + M + + Department of Management and Innovation Systems, University of Salerno, Fisciano (SA) 84084, Italy; Kelyon S.r.l., via Benedetto Brin, 59 C5/C6, 80100 Naples, Italy. + + + + Piccinni + Giuseppe + G + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + De Leo + Cristina + C + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Cirielli + Corrado + C + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Facchiano + Francesco + F + + Department of Oncology and Molecular Medicine, Istituto Superiore di Sanità, Rome, Italy. + + + + Facchiano + Angelo + A + + Laboratory of Bioinformatics and Computational Biology, Institute of Food Science, CNR, via Roma 52 A/C, 83100 Avellino, Italy. + + + + Panebianco + Annarita + A + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Tagliaferri + Stefano + S + + Kelyon S.r.l., via Benedetto Brin, 59 C5/C6, 80100 Naples, Italy. + + + + La Rocca + Michele + M + + Department of Economics and Statistics, University of Salerno, Fisciano (SA) 84084, Italy. + + + + Marchetti + Paolo + P + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Tagliaferri + Roberto + R + + Department of Management and Innovation Systems, University of Salerno, Fisciano (SA) 84084, Italy. + + + + Facchiano + Antonio + A + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy; Department of Life Sciences, Health and Health Professions, Link University, 00165 Rome, Italy. Electronic address: a.facchiano@idi.it. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + Canada + Int J Infect Dis + 9610933 + 1201-9712 + + IM + + Antimicrobial resistance + antibiotic susceptibility prediction + antimicrobial stewardship + machine learning + precision medicine + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 28 + + + 2026 + 4 + 17 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 19 + 33 + + + aheadofprint + + 42214660 + 10.1016/j.ijid.2026.108842 + S1201-9712(26)00477-7 + + +
+ + + 42214547 + + 2026 + 05 + 29 + +
+ + 1873-6424 + + + 2026 + May + 28 + + + Environmental pollution (Barking, Essex : 1987) + Environ Pollut + + Machine-learning-based estimation of ground-level NO2 concentrations across Southeastern Europe using multi-source satellite, reanalysis, and emission data. + + 128461 + 128461 + + 10.1016/j.envpol.2026.128461 + S0269-7491(26)00831-6 + + Reliable estimation of ground-level nitrogen dioxide (NO2) remains challenging due to limited monitoring coverage and complex interactions among emissions, meteorology, and land-use factors. This study develops a machine-learning framework to estimate surface NO2 concentrations across Southeastern Europe, covering thirteen countries with diverse emission sources and sparse monitoring networks. Daily NO2 observations from 317 monitoring stations were integrated with multiple satellite and ancillary datasets, including tropospheric NO2 from Sentinel-5P TROPOMI, vegetation indices from MODIS, and nighttime light data from VIIRS. Additional inputs included meteorological variables from ERA5, anthropogenic emissions from EDGAR v8.1, land-use data from Copernicus Corine Land Cover, elevation from the Copernicus Digital Elevation Model, and population density from the Global Human Settlement Layer. All datasets were processed and harmonized using Google Earth Engine. Three Gradient Boosting Decision Tree models (XGBoost, LGBM, and CatBoost) were trained and optimized with Optuna. Model performance was assessed using 10-fold cross-validation and independent test sets with R2, MAE, and RMSE metrics. All models performed consistently, with LGBM achieving the best results (R2 = 0.86; MAE = 5.34 μg/m3; RMSE = 8.32 μg/m3). SHapley Additive exPlanations (SHAP) identified key predictors and improved interpretability. Seasonal analysis showed higher accuracy in summer and autumn than in winter and spring. These results demonstrate that integrating multi-source data with advanced machine learning enables reliable surface NO2 estimation in regions with limited monitoring, supporting air quality assessment, exposure analysis, and evidence-based policymaking in Southeastern Europe. + Copyright © 2026. Published by Elsevier Ltd. + + + + Bilgiç + Efem + E + + Department of Environmental Engineering, Faculty of Engineering, Dokuz Eylul University, Izmir, Türkiye. Electronic address: efem.bilgic@deu.edu.tr. + + + + Elbir + Tolga + T + + Department of Environmental Engineering, Faculty of Engineering, Dokuz Eylul University, Izmir, Türkiye; Environmental Research and Application Center (CEVMER), Dokuz Eylul University, Izmir, Türkiye. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + England + Environ Pollut + 8804476 + 0269-7491 + + IM + + Nitrogen dioxide + Southeastern Europe + air quality modeling + machine learning + satellite data integration + + Declaration of Competing Interest ☒ The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 26 + + + 2026 + 5 + 24 + + + 2026 + 5 + 28 + + + 2026 + 5 + 29 + 19 + 32 + + + aheadofprint + + 42214547 + 10.1016/j.envpol.2026.128461 + S0269-7491(26)00831-6 + + +
+ + + 42214540 + + 2026 + 05 + 29 + +
+ + 1873-6424 + + + 2026 + May + 28 + + + Environmental pollution (Barking, Essex : 1987) + Environ Pollut + + Nonlinear meteorological controls on coastal air quality along the Indian East Coast: Insights from a multi-city interpretable machine learning framework. + + 128448 + 128448 + + 10.1016/j.envpol.2026.128448 + S0269-7491(26)00818-3 + + This study investigates the role of meteorological variability in shaping ambient air quality across five coastal cities along the Indian East Coast (Haldia, Balasore, Visakhapatnam, Chennai, and Puducherry). Despite their shared coastal setting, the cities exhibit pronounced meteorological heterogeneity, leading to a clear latitudinal gradient in air pollution, with northern cities (Haldia and Balasore) experiencing substantially higher particulate matter concentrations and more frequent exceedances than southern cities (Chennai and Puducherry). Across all cities, PM10 is the dominant contributor to variability in Air Quality Index (AQI) variability. A Random Forest model reveals that meteorological parameters explain a substantial fraction of particulate matter variability (R2 up to ∼0.6), whereas gaseous pollutants show lower predictability (R2 < 0.35). Using Shapley Additive exPlanations (SHAP) analysis, we identify critical nonlinear thresholds and binary regime switches governing pollutant accumulation. A consistent regional specific humidity (SH) threshold of ∼15 ± 2 g/kg is identified as a key regime-switching threshold, with values below this level consistently associated with PM10 accumulation across all cities. In southern cities, a Sea Breeze Component (SBC) > 3 m/s is the threshold for coastal ventilation; below this level, pollutants remain trapped. Furthermore, we uncover a monsoon break thermal trap, in which temperatures exceeding 32 °C flip the expected seasonal dispersion into an accumulation regime. These findings demonstrate that coastal air quality is governed by discrete meteorological regime transitions rather than linear responses. The identified thresholds provide a physically interpretable framework for improving localized air quality forecasting and mitigation strategies in complex coastal environments. + Copyright © 2026. Published by Elsevier Ltd. + + + + Varaprasad + V + V + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Madhavan + B L + BL + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Jain + Chaithanya D + CD + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Krishnaveni + A Sai + AS + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Ratnam + M Venkat + MV + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. Electronic address: vratnam@narl.gov.in. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + England + Environ Pollut + 8804476 + 0269-7491 + + IM + + Coastal air quality + RF model + SHAP + boundary layer dynamics + meteorological variability + nonlinear interactions + + Declaration of Competing Interest ☒ The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 8 + + + 2026 + 5 + 22 + + + 2026 + 5 + 27 + + + 2026 + 5 + 29 + 19 + 32 + + + aheadofprint + + 42214540 + 10.1016/j.envpol.2026.128448 + S0269-7491(26)00818-3 + + +
+ + + 42214280 + + 2026 + 05 + 29 + +
+ + 1532-8708 + + 53 + 4 + + 2026 + Apr + 07 + + + Seminars in oncology + Semin Oncol + + Physics-informed machine learning for tumor microenvironment-responsive nanomedicine: Recent updates. + + 152498 + 152498 + + 10.1016/j.seminoncol.2026.152498 + S0093-7754(26)00045-X + + Physics-informed machine learning (PIML) is rapidly emerging as a transformative paradigm for designing tumor microenvironment (TME)-responsive nanomedicines. While existing reviews have surveyed PIML in broader biomedical contexts, this work provides a focused, critical synthesis specifically at the intersection of PIML, multiscale TME biophysics, and clinically actionable nanomedicine design. We argue that the unique value of PIML lies not merely in combining physics with data, but in its capacity to resolve the "personalization paradox" in oncology: the tension between the need for patient-specific models and the scarcity of patient-specific data. By embedding governing physical laws-such as Darcy's flow, reaction-diffusion kinetics, and Navier-Stokes equations-as soft constraints, PIML models can generate physically plausible, patient-tailored predictions even with sparse clinical inputs. This review uniquely articulates a translational roadmap that systematically links fundamental PIML methodologies to concrete nanomedicine optimization tasks: predicting nanoparticle transport in heterogeneous TMEs, designing stimulus-responsive nanocarriers, and integrating multi-omics/imaging for personalized therapy. We further introduce a novel comparative framework evaluating PIML against purely physics-based and purely data-driven approaches, highlighting its superior data efficiency and interpretability for TME applications. However, significant challenges remain, including data standardization, computational scalability, and regulatory adaptation. Looking forward, we identify under-explored yet high-impact frontiers, such as quantum-informed PIML for molecular-scale nanocarrier design, real-time adaptive nanomedicine guided by patient digital twins, and the ethical-regulatory frameworks needed for clinical deployment. By synthesizing cross-disciplinary insights and proposing a clear path from bench to bedside, this review aims to not only summarize the state-of-the-art but also to catalyze the next generation of intelligent, patient-centric cancer nanotherapeutics. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Hasannia + Maliheh + M + + Cancer Research Center, Semnan University of Medical Sciences, Semnan, Iran. + + + + Abounoori + Ali + A + + Department of Microbial Biotechnology, Faculty of Biotechnology, Amol University of Special Modern Technologies, Amol, Iran. + + + + Abounoori + Mahdi + M + + Cancer Research Center, Semnan University of Medical Sciences, Semnan, Iran. + + + + Shirzad + Maryam + M + + Nanotechnology Research Center, Pharmaceutical Technology Institute, Mashhad University of Medical Sciences, Mashhad, Iran. + + + + Rahdar + Abbas + A + + Department of Physics, University of Zabol, Zabol, Iran. Electronic address: a.rahdar@uoz.ac.ir. + + + + Fathi-Karkan + Sonia + S + + Natural Products and Medicinal Plants Research Center, North Khorasan University of Medical Sciences, Bojnurd, Iran; Department of Advanced Sciences and Technologies in Medicine, School of Medicine, North Khorasan University of Medical Sciences, Bojnurd, Iran; Food and Drug Research Center, Food and Drug Administration, Ministry of Health and Medical Education, Tehran, Iran. Electronic address: Soniafathi92@gmail.com. + + + + Romanholo Ferreira + Luiz Fernando + LF + + Graduate Program in Genomic Sciences and Biotechnology, Catholic University of Brasília, Brasília, 71966-700, Brazil. Electronic address: luiz.romanholo@p.ucb.br. + + + + eng + + Journal Article + Review + + + 2026 + 04 + 07 + +
+ + United States + Semin Oncol + 0420432 + 0093-7754 + + IM + + Multi-omics integration + Nanomedicine + Nanoparticle transport + Physics-informed machine learning + Tumor microenvironment + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 11 + 14 + + + 2026 + 2 + 12 + + + 2026 + 4 + 5 + + + 2026 + 5 + 29 + 18 + 10 + + + aheadofprint + + 42214280 + 10.1016/j.seminoncol.2026.152498 + S0093-7754(26)00045-X + + +
+ + + 42214151 + + 2026 + 05 + 29 + +
+ + 1873-3573 + + 309 + + 2026 + May + 28 + + + Talanta + Talanta + + Machine learning assisted transparent bending-insensitive SERS substrate for reliable quantitative analysis of thiram residues on fruit surfaces. + + 130059 + 130059 + + 10.1016/j.talanta.2026.130059 + S0039-9140(26)00715-0 + + Transparent and flexible surface-enhanced Raman scattering (SERS) substrates are highly suitable for rapid pesticide detection on fruit surfaces, owing to their capability for in situ detection on curved surfaces. However, achieving reproducible and stable SERS signals from flexible SERS substrates under bending conditions remains a major challenge. Additionally, integrating machine learning into Raman spectral analysis can further enhance the practicality of SERS technology. Herein, we develop a novel sensing platform that combines a transparent, bending-insensitive SERS substrate with machine learning for the rapid quantitative determination of thiram residues on fruit surfaces. The flexible SERS substrate was constructed by depositing silver nanoparticles (AgNPs) onto a polydimethylsiloxane (PDMS) twisted nanowrinkle array. Endowed with high SERS activity, exceptional transparency, and bending insensitivity, this substrate enabled reliable and consistent detection of thiram residues on apple and cherry tomato peels, with a sensitivity as low as 10-7 M. Furthermore, a back propagation neural network (BPNN)-based machine learning model was developed to predict thiram concentrations, achieving remarkable accuracy with a coefficient of determination (R2) of 0.9954 and a root mean square error (RMSE) of 0.0985. Thus, the proposed sensing platform provides a rapid, accurate, and reliable approach for the identification and quantification of thiram in fruits. + Copyright © 2026 Elsevier B.V. All rights reserved. + + + + Wang + Yue + Y + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Huang + Lili + L + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Wang + Jie + J + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Li + Zetong + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Bian + Ziyang + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Yang + Zhenshan + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Li + Hefu + H + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. Electronic address: lihefu@lcu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + Netherlands + Talanta + 2984816R + 0039-9140 + + IM + + BPNN + Bending insensitivity + Quantitative analysis + SERS + Thiram + + Declaration of competing interest The authors declare that they have no competing financial interests or personal relationships that could have appeared to influence the work reported in this study. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 9 + + + 2026 + 5 + 23 + + + 2026 + 5 + 27 + + + 2026 + 5 + 29 + 18 + 7 + + + aheadofprint + + 42214151 + 10.1016/j.talanta.2026.130059 + S0039-9140(26)00715-0 + + +
+ + + 42214146 + + 2026 + 05 + 29 + +
+ + 1879-0534 + + 212 + + 2026 + May + 29 + + + Computers in biology and medicine + Comput Biol Med + + A recurrent interferon, stress, and survival axis identifies a rare malignant programme across glioblastoma single-cell, spatial, and longitudinal cohorts. + + 111780 + 111780 + + 10.1016/j.compbiomed.2026.111780 + S0010-4825(26)00344-6 + + Glioblastoma exhibits profound intratumoral heterogeneity and rapid adaptation under stress, complicating durable therapeutic control. Here, a biologically grounded transcriptional axis is defined by three complementary modules capturing type I interferon signalling, immediate-early stress response, and pro-survival signalling enriched in unfolded protein response components. Using this equal-weighted axis, a rare axis-high programme was identified in a glioblastoma training cohort (GSE173278; 75,075 cells after filtering; 5.95% prevalence) and mapped to external cohorts through marker-anchored cohort-specific clusters. To enable reproducible detection, an interpretable 40-gene regularised logistic regression classifier was trained using fold-internal panel selection and Platt calibration fitted strictly on out-of-fold predictions. The conservative out-of-fold training evaluation showed informative discrimination and good probability calibration (AUC 0.767, AP 0.116, Brier 0.055, ECE 0.011). When the final model was applied to marker-anchored operational labels, ranking performance was high in an independent glioblastoma cohort (GSE131928; AUC 0.950, AP 0.351) and in an exploratory pan-cancer transfer setting (GSE203612; AUC 0.944, AP 0.343), although calibration slopes indicated dataset-dependent probability-scale shift. Longitudinal CARE glioblastoma samples showed that recalibration on T1 samples improved probability-scale reliability on later T2/T3 samples without changing rank discrimination. Spatial stratification based on available sample annotations linked higher detector probabilities to necrotic, bulk, and tumour-region samples. Irradiation feature-count contrasts supported positive shifts of the 40-gene panel and axis-related modules, while cell-level treated/control summaries were interpreted as context-specific perturbational evidence. Together, these results define a rare axis-high glioblastoma programme and provide a recalibratable gene-panel detector for probability-guided experimental triage and mechanistic follow-up. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Pastore + Emmanuel Pio + EP + + Department of Biology, Ecology and Earth Science, University of Calabria, 87036 Rende, Italy. + + + + De Rango + Francesco + F + + Department of Biology, Ecology and Earth Science, University of Calabria, 87036 Rende, Italy. Electronic address: francesco.derango@unical.it. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Comput Biol Med + 1250250 + 0010-4825 + + IM + + Glioblastoma + Interferon signaling + Machine learning + Protein response + Reproducible bioinformatics + Single-cell RNA-seq + Stress response + Unfolded + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 4 + + + 2026 + 5 + 11 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 18 + 7 + + + aheadofprint + + 42214146 + 10.1016/j.compbiomed.2026.111780 + S0010-4825(26)00344-6 + + +
+ + + 42214095 + + 2026 + 05 + 29 + +
+ + 1933-0693 + + + 2026 + May + 29 + + + Journal of neurosurgery + J Neurosurg + + Assessment system for short-term lower cranial nerve dysfunction following medulla oblongata glioma surgery: risk stratification and optimal surgical strategy. + + 1 + 12 + 1-12 + + 10.3171/2025.12.JNS251593 + + Medullary gliomas pose significant surgical risks, particularly the risk of postoperative lower cranial nerve (LCN) dysfunction, which profoundly affects quality of life. The lack of standardized risk assessment hinders optimal surgical planning. The aim of this study was to develop and validate an individualized predictive model for short-term postoperative LCN impairment integrating clinical and imaging data and to estimate individual risk across a range of resection extent to optimize surgical planning. + A retrospective cohort (n = 111, January 2020-February 2023) was used for model development, with prospective validation (n = 45, February 2023-December 2024). The primary outcome was postoperative LCN dysfunction (inability to be extubated within 14 days or requiring tracheotomy with persistent ventilation). Predictive modeling was performed using logistic regression, incorporating multistage feature selection, hyperparameter optimization, and bootstrapped validation. Model performance was evaluated using metrics such as area under the curve (AUC), Brier score, calibration, and decision curve analysis (DCA) in the prospective validation set. Shapley Additive Explanations (SHAP) analysis was used to interpret feature contributions, and a nomogram was constructed for clinical implementation. Optimal extent of resection (EOR) thresholds were explored to balance functional preservation and tumor clearance. + Four independent predictors of LCN dysfunction were identified: EOR (OR 1.84, 95% CI 1.07-3.16), infiltrative growth (OR 10.46 [95% CI 2.70-40.52]), preoperative LCN impairment (OR 6.79 [95% CI 2.54-18.16]), and cervical cord involvement (OR 4.64 [95% CI 1.55-13.91]). The model demonstrated strong discrimination (training AUC 0.85 [95% CI 0.76-0.92], testing AUC 0.89 [95% CI 0.79-0.97]) and good calibration (Brier score 0.12). High-risk patients, defined as those with a model predicted risk probability > 0.471 based on Youden's index, had significantly higher rates of pneumonia, tracheostomy, and prolonged mechanical ventilation. Stratified resection plans showed that low-risk patients benefited from gross-total resection (EOR 88.4%, [95% CI 75.7%-100.0%]), while high-risk patients achieved optimal functional outcomes with limited resection (EOR 40.8%, [95% CI 38.2%-50.5%]). SHAP and nomogram analyses provided transparent, patient-specific information for risk consultations. + This study presents the first predictive model tailored to short-term postoperative LCN outcomes following medullary glioma surgery, proposing a dynamic resection paradigm based on individualized risk stratification. By guiding surgical planning and intraoperative decision-making, this model facilitates a balance between maximal tumor control and functional preservation. + + + + Zhang + Mingxin + M + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + + Xiao + Xiong + X + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Jia + Heyuan + H + + 5School of Instrumentation and Optoelectronic Engineering, Beihang University, Beijing. + + + + Liu + Yinan + Y + + 6Brainnetome Center, Institute of Automation, Chinese Academy of Sciences, Beijing; and. + + + + Jiang + Wenju + W + + 7Beijing Arion Cancer Center, Beijing, China. + + + + Xie + Luyang + L + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + + Pan + Changcun + C + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Wu + Zhen + Z + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Junting + J + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Liwei + L + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + 3Beijing Neurosurgical Institute, Capital Medical University, Beijing. + + + 4China National Clinical Research Center for Neurological Diseases, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Peng + P + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Neurosurg + 0253357 + 0022-3085 + + IM + + lower cranial nerve dysfunction + machine learning + medullary glioma + oncology + predictive model + risk stratification + skull base + surgical decision-making + tumor + +
+ + + + 2025 + 6 + 21 + + + 2025 + 12 + 19 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 17 + 52 + + + aheadofprint + + 42214095 + 10.3171/2025.12.JNS251593 + + +
+ + + 42214078 + + 2026 + 05 + 29 + +
+ + 1520-5215 + + + 2026 + May + 29 + + + The journal of physical chemistry. A + J Phys Chem A + + IPSBrain: A Unified Intelligent Data Analysis Platform for Multimodal Experimental Characterization at Advanced Photon Source. + 10.1021/acs.jpca.6c01154 + + Advanced photon sources deliver X-ray with unprecedented brilliance and coherence, facilitating sophisticated multimodal characterization of diverse materials while simultaneously generating data volumes that far exceed the capacity of traditional, expert-driven analytical workflows. This growing gap between data acquisition and interpretation has become a critical bottleneck for timely scientific discovery, which creates a critical need for high-throughput and automated data analysis tools. Recent advances in artificial intelligence (AI) offer a transformative potential to address this challenge, enabling the direct mapping of complex experimental observations into scientific insights. However, existing AI-driven tools are remain largely fragmented and task-specific, limiting their adoption of modern multimodal experiments at the facility scale. Here we present IPSBrain, a unified AI-powered platform that serves as Intelligent Photon Source Brain for automated analysis of multimodal synchrotron experimental data. The platform integrated a series of novel, self-developed machine-learning-based models that enable automated data analysis from multiple experimental techniques, including diffraction, scattering, X-ray absorption, and tomograph. The platform is accessible through an intuitive web interface, which significantly lowers the technical barrier to advanced scientific data interpretation. By enabling end-to-end intelligent workflows from data acquisition to quantitative physical insight, IPSBrain supports high-throughput, reproducible, and scalable analysis aligned with the operational demands of modern synchrotron radiation sources. IPSBrain not only demonstrates a practical and extensible framework for AI-driven synchrotron data analysis but also establishes a transferable paradigm for intelligent data analysis of other large-scale research infrastructures, such as neutron sources and free-electron lasers. + + + + Pang + Yihe + Y + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + Spallation Neutron Source Science Center, Dongguan 523800, China. + + + + Li + Lin + L + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Computer Science and Technology, Beijing Institute of Technology, Beijing 100081, China. + + + + Deng + Xiangwen + X + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + Xi + Zuoxin + Z + 0000-0003-1237-7780 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Li + Jing + J + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Han + Mengdan + M + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Sun + Yaping + Y + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Science, China University of Geosciences Beijing, Beijing 100083, China. + + + + Yao + Haodong + H + 0000-0001-5959-8594 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + Wu + Liyuan + L + 0000-0002-4890-2770 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + + Yuan + Qin + Q + 0009-0001-7123-6155 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + + Zhao + Lina + L + 0000-0002-9796-0221 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Phys Chem A + 9890903 + 1089-5639 + + IM +
+ + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 17 + 12 + + + aheadofprint + + 42214078 + 10.1021/acs.jpca.6c01154 + + +
+ + + 42214077 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2561-3278 + + 11 + + 2026 + May + 29 + + + JMIR biomedical engineering + JMIR Biomed Eng + + Psychosocial Stress in the Chinese Community: Speech Analytics Through Linguistic and Acoustic Fusion Using Machine Learning. + + e91138 + e91138 + + 10.2196/91138 + + Family caregivers experience significant stress due to intensive caregiving activities, making them highly susceptible to adverse psychosocial health conditions. Early detection of this stress is crucial for timely interventions to prevent disease progression and long-term disability. + This study aimed to develop and validate the Linguistic and Acoustic Speech Analytics Program, a novel machine learning approach capable of providing a fusion analysis of linguistic and acoustic speech features to enhance the effectiveness of psychosocial stress assessment. + This quantitative study analyzed speech data collected from 100 Chinese family caregivers. Participants responded to 12 open-ended questions, and their voices were recorded for linguistic and acoustic feature extraction. Various machine learning classifiers, including support vector machine, were developed to process speech data. A key methodological step was the application of an orthogonalization procedure to decorrelate acoustic features from linguistic features before fusion analysis. The classifiers were then trained to evaluate psychosocial stress levels based on the processed and fused linguistic and acoustic speech features. Model performance was measured using receiver operating characteristic-area under the curve, F1-score, and accuracy. + The linear support vector machine model emerged as the top performer, achieving a receiver operating characteristic-area under the curve of 78.28%, an F1-score of 75.27%, and an accuracy of 73%. These results demonstrate the model's strong capability in identifying stressed participants based on their speech. Critically, the fusion of linguistic and acoustic features significantly outperformed models using either feature type alone. Furthermore, the orthogonalization procedure proved essential, as decorrelating features before fusion markedly enhanced classification accuracy compared to using non-orthogonalized features. + This study demonstrates that fusion analysis of linguistic and acoustic features effectively identifies psychosocial stress among family caregivers. It also emphasizes the importance of proper feature processing when combining multiple features extracted from the same audio sample. These findings provide valuable insights for developing machine learning models for psychosocial stress assessment and addressing various psychosocial conditions in different contexts, supporting population mental health management. + © Amanda M Y Chu, Benson S Y Lam, Jenny T Y Tsang, Agnes Tiwari, Jacky N L Chan, Mike K P So. Originally published in JMIR Biomedical Engineering (http://biomsedeng.jmir.org). + + + + Chu + Amanda M Y + AMY + 0000-0002-9543-747X + + Department of Social Sciences and Policy Studies, The Education University of Hong Kong, Tai Po, Hong Kong, China. + + + + Lam + Benson S Y + BSY + 0000-0002-0836-4162 + + Department of Mathematics, Statistics and Insurance, The Hang Seng University of Hong Kong, Shatin, Hong Kong, China. + + + + Tsang + Jenny T Y + JTY + 0000-0003-4558-9384 + + School of Nursing, Tung Wah College, Homantin, Hong Kong, China. + + + + Tiwari + Agnes + A + 0000-0002-3993-8552 + + School of Nursing, Hong Kong Sanatorium and Hospital, Hong Kong, China. + + + + Chan + Jacky N L + JNL + 0000-0003-1704-4221 + + Department of Information Systems, Business Statistics and Operations Management, The Hong Kong University of Science and Technology, Clear Water Bay, Hong Kong, China, 852 2358 7726. + + + + So + Mike K P + MKP + 0000-0003-0781-8166 + + Department of Information Systems, Business Statistics and Operations Management, The Hong Kong University of Science and Technology, Clear Water Bay, Hong Kong, China, 852 2358 7726. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Biomed Eng + 101771351 + 2561-3278 + + + caregivers + digital health + psychosocial health + speech analytics + text analytics + +
+ + + + 2026 + 1 + 11 + + + 2026 + 3 + 23 + + + 2026 + 3 + 24 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 17 + 12 + + + epublish + + 42214077 + 10.2196/91138 + v11i1e91138 + + +
+ + + 42214073 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1929-0748 + + 15 + + 2026 + May + 29 + + + JMIR research protocols + JMIR Res Protoc + + Creation of an mHealth Infrastructure to Support the Development and Delivery of mHealth Interventions: Protocol for Demonstration Projects Addressing Smoking Cessation in Cancer Care. + + e92288 + e92288 + + 10.2196/92288 + + Cancer remains a leading cause of morbidity worldwide. To reduce this burden, scalable, effective approaches are needed to address modifiable risk factors for cancer and support behavioral self-management. With smartphone ownership now nearly ubiquitous, mobile health (mHealth) interventions offer a powerful means to extend the reach, accessibility, and sustainability of evidence-based treatments for a variety of modifiable risk factors (eg, excessive alcohol use, physical inactivity, poor diet, and smoking). Moreover, the flexibility of mHealth platforms enables efficient delivery of novel interventions, supports innovative study designs, and facilitates real-time data collection to advance public health research. + Despite the great potential of mHealth interventions, developing high-quality mHealth tools is complex, time-consuming, and resource-intensive. To address these challenges, we are developing a coordinated, accessible, research-grade infrastructure for mHealth app development, testing, and dissemination. + The mHealth Florida infrastructure (mFLi) will provide a comprehensive, low-code software platform that enables researchers to build apps compatible with major mobile operating systems, namely, Apple iOS and Google Android. Through a modular interface, users will select from a menu of prebuilt features to tailor functionality to specific study needs. The platform will include 3 integrated environments (development, testing, and production), allowing researchers to prototype, evaluate, and deploy mHealth interventions. This infrastructure will be developed and maintained by a multidisciplinary team, ensuring that the platform is technically robust and usable and adheres to institutional and regulatory standards. To demonstrate the platform's functionality, utility, and adaptability, a multisite study comprising three initial projects focused on smoking cessation among patients with cancer is being conducted: (1) participant screening and enrollment, (2) randomization and treatment delivery, and (3) data processing using machine learning methods with on-device and cloud-based approaches. + This study was funded in May 2023, and ethics approval was obtained from all involved sites' institutional review boards between February 2024 and October 2025. Recruitment began in March 2025 and enrollment is ongoing. As of January 2026, 41% (37/90) of the target sample have been enrolled and 21% (19/90) have completed their 6-month assessment. Data collection will be completed once the final participant completes their 6-month assessment (expected May 2027), with analyses commencing thereafter. Study findings are anticipated to be published in a peer-reviewed journal in 2027. + Collectively, these projects will illustrate how mFLi can streamline app development, facilitate rapid translation of research into practice, and reduce barriers for researchers and developers. Ultimately, mFLi is designed to accelerate innovation in mHealth research, enhance access to behavioral interventions, and improve health outcomes among diverse populations. + ClinicalTrials.gov NCT06909357; https://clinicaltrials.gov/study/NCT06909357. + PRR1-10.2196/92288. + ©Lindsey S Sparrock, Jennifer I Vidrine, Christine E Vinci, Issam M El Naqa, Steven K Sutton, Ramzi G Salloum, Jesse Dallery, Tracy E Crane, Frank J Penedo, Samuel J Brockway, Sarah R Jones, Charles E Hoogland, Richard R Reich, Guillermo Gonzalez-Calderon, Vani N Simmons, Damon J Vidrine. Originally published in JMIR Research Protocols (https://www.researchprotocols.org), 29.05.2026. + + + + Sparrock + Lindsey S + LS + 0000-0003-3230-7886 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Vidrine + Jennifer I + JI + 0000-0001-7159-7252 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + Vinci + Christine E + CE + 0000-0001-8883-0989 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + El Naqa + Issam M + IM + 0000-0001-6023-1132 + + Department of Machine Learning, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Radiation Oncology, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Gastrointestinal Oncology, Moffitt Cancer Center, Tampa, FL, United States. + + + + Sutton + Steven K + SK + 0000-0002-2504-7601 + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Salloum + Ramzi G + RG + 0000-0002-8139-2418 + + Department of Health Outcomes and Biomedical Informatics, College of Medicine, University of Florida, Gainesville, FL, United States. + + + Health Cancer Center, University of Florida, Gainesville, FL, United States. + + + + Dallery + Jesse + J + 0000-0002-2882-1105 + + Department of Psychology, University of Florida, Gainesville, FL, United States. + + + + Crane + Tracy E + TE + 0000-0002-4288-134X + + Department of Medicine, Miller School of Medicine, University of Miami, Miami, FL, United States. + + + + Penedo + Frank J + FJ + 0000-0002-2780-0417 + + Department of Medicine, Miller School of Medicine, University of Miami, Miami, FL, United States. + + + Department of Psychology, University of Miami, Coral Gables, FL, United States. + + + + Brockway + Samuel J + SJ + 0009-0000-4761-768X + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Jones + Sarah R + SR + 0000-0001-5513-2527 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Hoogland + Charles E + CE + 0000-0001-7735-1931 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Reich + Richard R + RR + 0009-0009-9559-6858 + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Gonzalez-Calderon + Guillermo + G + 0000-0002-4075-8946 + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Simmons + Vani N + VN + 0000-0002-4381-5336 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + Vidrine + Damon J + DJ + 0000-0002-8711-796X + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + eng + + + ClinicalTrials.gov + + NCT06909357 + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Res Protoc + 101599504 + 1929-0748 + + IM + + + Humans + + + Smoking Cessation + methods + + + Telemedicine + + + Neoplasms + therapy + + + Mobile Applications + + + Digital Health + + + + cancer + feasibility + mHealth + randomized controlled trial + smoking + tobacco cessation + +
+ + + + 2026 + 2 + 9 + + + 2026 + 3 + 18 + + + 2026 + 3 + 17 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 16 + 53 + + + epublish + + 42214073 + 10.2196/92288 + v15i1e92288 + + +
+ + + 42214056 + + 2026 + 05 + 29 + +
+ + 2688-1535 + + + 2026 + May + 29 + + + JCO oncology practice + JCO Oncol Pract + + Development and External Validation of a Machine Learning-Based Risk Classification Score for Prostate Cancer-Specific Cardiovascular Risk. + + OP2600131 + OP2600131 + + 10.1200/OP-26-00131 + + Patients with prostate cancer (PC) face elevated cardiovascular (CV) risk. Conventional CV risk scores are often poorly calibrated for PC and require laboratory tests that are not routinely available in PC clinics, limiting oncology use. + The development cohort (DC) included men with PC (age ≥18 years) diagnosed in 2010-2014. Validation cohort 1 (V1) included men age 45 years and older within 1 year of PC diagnosis or near initiation of androgen deprivation therapy. Validation cohort 2 (V2) included men with PC diagnosed in 2006-2019. Outcomes were cardiovascular disease (CVD), atherosclerotic CVD (ASCVD), and heart failure (HF). Predictors were selected with XGBoost and LASSO, modeled with Fine-Gray and penalized Cox regression, and scaled to additive point scores (low/intermediate/high risk). Performance was assessed using time-dependent AUC (TDAUC), which quantifies the model's ability to correctly rank patients by risk at each time point, and compared with conventional scores. + The DC included 1,815 patients, and V1 and V2 included 4,022 and 1,729 patients, respectively (median follow-up 10.3 years). At 10 years, cumulative incidence was 15.0% for composite CVD, 9.4% for ASCVD, and 10.1% for HF. The composite CVD score (age, race, smoking history, high-risk Gleason score, and household members) achieved a 10-year TDAUC of 0.71 (95% CI, 0.64 to 0.78) in the DC and 0.59 (95% CI, 0.52 to 0.65) in V2, with a 2-year TDAUC of 0.66 (95% CI, 0.56 to 0.75) in V1. In the DC, ASCVD and HF scores achieved 10-year TDAUCs of 0.66 (95% CI, 0.58 to 0.75) and 0.70 (95% CI, 0.62 to 0.79), respectively, and retained discrimination in validation. + To our knowledge, these are the first PC-specific CV risk scores derived from oncology-available variables, supporting pragmatic CV risk stratification in PC clinics and motivating further validation and implementation studies. + + + + Stabellini + Nickolas + N + 0000-0002-3135-7980 + + Case Western Reserve University, Cleveland, OH. + + + Department of Hematology-Oncology, University Hospitals Seidman Cancer Center, Cleveland, OH. + + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Nahle + Tarek + T + 0009-0004-4584-3308 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Shah + Viraj + V + 0009-0003-5850-9862 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Kollapaneni + Sai S + SS + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Makram + Omar M + OM + 0000-0001-8361-9068 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Cullen + Jennifer + J + + Cancer Prevention and Control Program, Houston Methodist Neal Cancer Center, Houston, TX. + + + + Weintraub + Neal L + NL + 0000-0002-5138-3705 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + Vascular Biology Center, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Kunhiraman + Harikrishnan H + HH + 0000-0002-6395-7956 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Swami + Umang + U + 0000-0003-3518-0411 + + Division of Oncology, Department of Internal Medicine, Huntsman Cancer Institute, University of Utah, Salt Lake City, UT. + + + + Mahmoudi + Morteza + M + 0000-0002-2575-9684 + + Department of Radiology and Precision Health Program, Michigan State University, East Lansing, MI. + + + + Fillmore + Nathanael + N + 0000-0002-8058-3423 + + Department of Medicine, Harvard Medical School, Boston, MA. + + + + Garraway + Isla P + IP + + Department of Urology, David Geffen School of Medicine, University of California, Los Angeles, CA. + + + Department of Surgical and Perioperative Care, VA Greater Los Angeles, Los Angeles, CA. + + + + Leong + Darryl + D + 0000-0002-1968-169X + + Population Health Research Institute and Department of Medicine, McMaster University and Hamilton Health Sciences, Hamilton, ON, Canada. + + + + Pinthus + Jehonathan + J + + Division of Urology, Department of Surgery, McMaster University, Hamilton, ON, Canada. + + + + Shanahan + John + J + + Cancer Informatics, Seidman Cancer Center at University Hospitals of Cleveland, Cleveland, OH. + + + + Montero + Alberto J + AJ + 0000-0002-8221-8120 + + Case Western Reserve University, Cleveland, OH. + + + Department of Hematology-Oncology, University Hospitals Seidman Cancer Center, Cleveland, OH. + + + + Agarwal + Neeraj + N + 0000-0003-1076-0428 + + Huntsman Cancer Institute, University of Utah, Salt Lake City, UT. + + + + Guha + Avirup + A + 0000-0003-0253-1174 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + Cardio-Oncology Program, Medical College of Georgia at Augusta University, Augusta, GA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + JCO Oncol Pract + 101758685 + 2688-1527 + + IM +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 16 + 12 + + + aheadofprint + + 42214056 + 10.1200/OP-26-00131 + + +
+ + + 42213920 + + 2026 + 05 + 29 + +
+ + 1079-7114 + + 136 + 19 + + 2026 + May + 15 + + + Physical review letters + Phys Rev Lett + + Hierarchical and Ultrametric Barriers in the Energy Landscape of Jammed Granular Matter. + + 198202 + 198202 + + 10.1103/mtn5-s26m + + According to the mean-field glass theory, the (free) energy landscape of disordered systems is hierarchical and ultrametric if they belong to the full-replica-symmetry-breaking universality class. However, examining this theoretical picture in three-dimensional systems remains challenging, where the energy barriers become finite. Here, we numerically explore the energy landscape of granular models near the jamming transition using a saddle dynamics algorithm to locate both local energy minima and saddles. The multiscale distances and energy barriers between minima are characterized by two metrics, both of which exhibit signatures of an ultrametric space. The scale-free distributions of energy barriers confirm the landscape's hierarchical organization and align with the distribution of elastic avalanches under athermal quasistatic shear. + + + + Wu + Shuonan + S + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + + Xie + Yuchen + Y + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + + Pan + Deng + D + + Chinese Academy of Sciences, Institute of Theoretical Physics, Beijing 100190, China. + https://ror.org/034t30j35 + + + + Zhang + Lei + L + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + Peking University, Beijing International Center for Mathematical Research, Beijing, 100871, China. + https://ror.org/02v51f717 + + + Peking University, Center for Quantitative Biology, Beijing, 100871, China. + https://ror.org/02v51f717 + + + Peking University, Center for Machine Learning Research, Beijing, 100871, China. + https://ror.org/02v51f717 + + + + Jin + Yuliang + Y + + Chinese Academy of Sciences, Institute of Theoretical Physics, Beijing 100190, China. + https://ror.org/034t30j35 + + + University of Chinese Academy of Sciences, School of Physical Sciences, Beijing 100049, China. + https://ror.org/05qbk4x57 + + + University of Chinese Academy of Sciences, Center for Theoretical Interdisciplinary Sciences, Wenzhou Institute, Wenzhou, Zhejiang 325001, China. + https://ror.org/05qbk4x57 + + + + eng + + Journal Article + +
+ + United States + Phys Rev Lett + 0401141 + 0031-9007 + + IM +
+ + + + 2025 + 12 + 22 + + + 2026 + 2 + 10 + + + 2026 + 4 + 21 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 15 + 12 + + + ppublish + + 42213920 + 10.1103/mtn5-s26m + + +
+ + + 42213819 + + 2026 + 05 + 29 + +
+ + 1535-1386 + + + 2026 + May + 29 + + + The Journal of bone and joint surgery. American volume + J Bone Joint Surg Am + + Compliance with the CONSORT AI Extension in Orthopaedic Randomized Controlled Trials. + 10.2106/JBJS.25.01439 + + The utilization of artificial intelligence (AI), such as machine learning, in health care has risen exponentially, underscoring the necessity of transparency and traceability in the reporting of AI in randomized controlled trials (RCTs) that involve AI. In 2020, a CONSORT (Consolidated Standards of Reporting Trials) AI extension was published that included 14 additional items that should be reported when AI is used in RCTs. This study aimed to evaluate compliance with these additional guidelines. + A systematic approach was used to identify all RCTs in orthopaedics that involved AI since the extension was published. Three databases were searched (PubMed, Embase, Cochrane) using the search terms ([orthopaedic] OR [orthopedic]) AND ([artificial intelligence] OR [AI] OR [machine learning] OR [deep learning]). + One hundred and seventy-four articles were identified, and 11 articles satisfied the inclusion and exclusion criteria and were assessed for compliance. The average number of CONSORT AI-extension items met per study was 11.4 ± 1.6 (81.2% ± 12.1%). Eight items (1a [i], 1b [ii], 2a [i], 4a [i], 5 [ii], 5 [v], 5 [vi], 19) that were related to standard reporting of AI utilization were reported in all articles. The items with the lowest reporting rates were related to data transparency and included 4a (ii), 5 (iii), and 25, with only 9.1%, 36.4%, and 45.5% of all studies complying, respectively. + Orthopaedic RCTs involving AI showed high compliance with respect to standard trial reporting and broad AI descriptors but low compliance with respect to detailed data transparency, data-quality handling, and code accessibility. Addressing these weaker areas is essential to improve reproducibility, reduce bias, and strengthen trust in AI-driven clinical research. + Improved compliance with CONSORT-AI reporting standards may help orthopaedic clinicians to critically evaluate AI-based randomized trials, reproduce findings, and determine whether AI interventions are reliable and safe for clinical use. + Copyright © 2026 by The Journal of Bone and Joint Surgery, Incorporated. + + + + Strasser + Thomas + T + 0000-0003-4456-8178 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Baker + Christopher + C + 0009-0009-9822-6633 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Cheminant + Jenna + J + 0009-0001-2747-5263 + + College of Osteopathic Medicine of the Pacific, Western University of Health Sciences, Pomona, California. + + + + Han + Blake + B + 0009-0002-9570-1944 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + College of Osteopathic Medicine of the Pacific, Western University of Health Sciences, Pomona, California. + + + + Canumay + Sallie + S + 0009-0009-1627-8828 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Schlechter + John + J + 0000-0001-8389-8407 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + Rady Children's Health Orange County, Orange, California, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Bone Joint Surg Am + 0014030 + 0021-9355 + + IM + Disclosure: No external funding was received for this work. The Disclosure of Potential Conflicts of Interest forms are provided with the online version of the article (http://links.lww.com/JBJS/J301). +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 14 + 2 + + + aheadofprint + + 42213819 + 10.2106/JBJS.25.01439 + 00004623-990000000-01850 + + + + Schulz KF, Altman DG, Moher D; CONSORT Group. CONSORT 2010 statement: updated guidelines for reporting parallel group randomised trials. BMJ. 2010 Mar 23;340:c332. + + + Moher D, Hopewell S, Schulz KF, Montori V, Gøtzsche PC, Devereaux PJ, Elbourne D, Egger M, Altman DG. CONSORT 2010 explanation and elaboration: updated guidelines for reporting parallel group randomised trials. BMJ. 2010 Mar 23;340:c869. + + + Ioannidis JP. How to make more published research true. PLoS Med. 2014 Oct 21;11(10):e1001747. + + + Liu X, Cruz Rivera S, Moher D, Calvert MJ, Denniston AK; SPIRIT-AI and CONSORT-AI Working Group. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI extension. Nat Med. 2020 Sep;26(9):1364-74. + + + Fan X, Qiao X, Wang Z, Jiang L, Liu Y, Sun Q. Artificial Intelligence-Based CT Imaging on Diagnosis of Patients with Lumbar Disc Herniation by Scalpel Treatment. Comput Intell Neurosci. 2022 May 27;2022:3688630. + + + Anderson PG, Baum GL, Keathley N, Sicular S, Venkatesh S, Sharma A, Daluiski A, Potter H, Hotchkiss R, Lindsey RV, Jones RM. Deep learning assistance closes the accuracy gap in fracture detection across clinician types. Clin Orthop Relat Res. 2023 Mar 1;481(3):580-8. + + + Gauci MO, Olmos M, Cointat C, Chammas PE, Urvoy M, Murienne A, Bronsard N, Gonzalez JF. Validation of the shoulder range of motion software for measurement of shoulder ranges of motion in consultation: coupling a red/green/blue-depth video camera to artificial intelligence. Int Orthop. 2023 Feb;47(2):299-307. + + + Zhu Y, Wu T, Wang W, Cai C, Zhu B, Lin W, Xu H, Liang Q, Wang Y. Artificial intelligence algorithm–based lumbar and spinal MRI for evaluation of efficacy of Chinkuei Shin Chewan decoction on lumbar spinal stenosis. Contrast Media Mol Imaging. 2021 Dec 29;2021:2700452. + + + Zhang H, He Q, Liu Q, He Y, Wang T, Feng Z, Zhang Q, He S. Comparative analysis of artificial intelligence and two-dimensional digital template preoperative planning–assisted total hip arthroplasty to predict prosthesis size. Chin J Tissue Eng Res. 2023;27(29):4620-7. + + + Zheng H, Feng E, Xiao Y, Liu X, Lai T, Xu Z, Chen J, Xie S, Lin F, Zhang Y. Is AI 3D-printed PSI an accurate option for patients with developmental dysplasia of the hip undergoing THA? BMC Musculoskelet Disord. 2024 Apr 22;25(1):308. + + + Gao L, Xing B. Bone cement reinforcement improves the therapeutic effects of screws in elderly patients with pelvic fragility factures. J Orthop Surg Res. 2024 Mar 18;19(1):191. + + + Baker HP, Dwyer E, Kalidoss S, Hynes K, Wolf J, Strelzow JA. ChatGPT’s Ability to Assist with Clinical Documentation: A Randomized Controlled Trial. J Am Acad Orthop Surg. 2024 Feb 1;32(3):123-9. + + + Bates NA, Huffman A, Goodyear E, Nagai T, Rigamonti L, Breuer L, Holmes BD, Schilaty ND. Physical clinical care and artificial-intelligence-guided core resistance training improve endurance and patient-reported outcomes in subjects with lower back pain. Clin Biomech (Bristol). 2023 Mar;103:105902. + + + Zhang Y, Hui Z, Qi W, Zhang J, Wang M, Zhu D. Clinical study on the safety and feasibility of AiWalker-K for lower limbs exercise rehabilitation in children with cerebral palsy. PLoS One. 2024 May 22;19(5):e0303517. + + + Thiengwittayaporn S, Wattanapreechanon P, Sakon P, Peethong A, Ratisoontorn N, Charoenphandhu N, Charoensiriwath S. Development of a mobile application to improve exercise accuracy and quality of life in knee osteoarthritis patients: a randomized controlled trial. Arch Orthop Trauma Surg. 2023 Feb;143(2):729-38. + + + Jayakumar P, Moore MG, Furlough KA, Uhler LM, Andrawis JP, Koenig KM, Aksan N, Rathouz PJ, Bozic KJ. Comparison of an artificial intelligence–enabled patient decision aid vs educational material on decision quality, shared decision-making, patient experience, and functional outcomes in adults with knee osteoarthritis: a randomized clinical trial. JAMA Netw Open. 2021 Feb 1;4(2):e2037107. + + + Page MJ, McKenzie JE, Bossuyt PM, Boutron I, Hoffmann TC, Mulrow CD, Shamseer L, Tetzlaff JM, Akl EA, Brennan SE, Chou R, Glanville J, Grimshaw JM, Hróbjartsson A, Lalu MM, Li T, Loder EW, Mayo-Wilson E, McDonald S, McGuinness LA, Stewart LA, Thomas J, Tricco AC, Welch VA, Whiting P, Moher D. The PRISMA 2020 statement: an updated guideline for reporting systematic reviews. BMJ. 2021 Mar 29;372:n71. + + + Sataloff RT, Bush ML, Chandra R, Chepeha D, Rotenberg B, Fisher EW, Goldenberg D, Hanna EY, Kerschner JE, Kraus DH, Krouse JH, Li D, Link M, Lustig LR, Selesnick SH, Sindwani R, Smith RJ, Tysome J, Weber PC, Welling DB. Systematic and other reviews: criteria and complexities. Ear Nose Throat J. 2021 Jul;100(6):403-6. + + + Liu X, Rivera SC, Moher D, Calvert MJ, Denniston AK; SPIRIT-AI and CONSORT-AI Working Group. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI Extension. BMJ. 2020 Sep 9;370:m3164. + + + Anderson JM, Howard C, Staggs J, Steele R, Strasser T, Small T, Vassar M, Checketts JX. Inadequate reporting of complications in randomized controlled trials cited as supporting evidence underpinning AAOS CPG recommendations for hip and knee osteoarthritis: application of the CONSORT Harms checklist. J Arthroplasty. 2022 Dec;37(12):2466-2472.e2. + + + Marcus E, Teuwen J. Artificial intelligence and explanation: How, why, and when to explain black boxes. Eur J Radiol. 2024 Apr;173:111393. + + + Wyles CC, Saniei S, Mulford KL, Girod MM, Taunton MJ. Reporting Guidelines for Artificial Intelligence Use in Orthopaedic Surgery Research. J Arthroplasty. 2025 Oct;40(10):2737-2743.e1. + + + Martindale APL, Llewellyn CD, de Visser RO, Ng B, Ngai V, Kale AU, Ferrante di Ruffano L, Golub RM, Collins GS, Moher D, McCradden MD, Oakden-Rayner L, Cruz Rivera S, Calvert M, Kelly CJ, Lee CS, Yau C, Chan AW, Keane PA, Beam AL, Denniston AK, Liu X. Concordance of randomized controlled trials for artificial intelligence interventions with the CONSORT-AI reporting guidelines. Nature Communications. 2024;15(1):1619. + + + Shahzad R, Ayub B, Siddiqui MAR. Quality of reporting of randomised controlled trials of artificial intelligence in healthcare: a systematic review. BMJ Open. 2022 Sep 5;12(9):e061519. + + + Misir A, Yuce A. AI in Orthopedic Research: A Comprehensive Review. J Orthop Res. 2025 Aug;43(8):1508-27. + + + +
+ + + 42213782 + + 2026 + 05 + 29 + +
+ + 2211-1247 + + 45 + 6 + + 2026 + May + 28 + + + Cell reports + Cell Rep + + Non-centromeric CENP-A regulates epithelial-mesenchymal plasticity and heterogeneity in human cells. + + 117405 + 117405 + + 10.1016/j.celrep.2026.117405 + S2211-1247(26)00483-3 + + Centromere protein A (CENP-A), a centromeric histone H3 variant highly expressed in aggressive cancers, promotes epithelial-mesenchymal transition (EMT), yet its underlying mechanisms remain unresolved. Here, we used a reversible high-CENP-A expression system in human cells to follow EMT-state trajectories and CENP-A localization over time. Sustained CENP-A elevation shifted hybrid populations toward mesenchymal states and increased both centromeric loading and ectopic chromatin incorporation. Chromatin immunoprecipitation revealed ectopic CENP-A enrichment at EMT-associated loci. Single-nucleus multi-omics further resolved two EMT programs engaged at distinct cell cycle stages: CENP-A strengthened a pre-existing inflammatory program and triggered a developmental program. Importantly, restoring basal CENP-A levels erased these transcriptional programs and eliminated ectopic incorporation, consistent with a reversible, non-genetic mechanism. Together, our findings uncover a non-centromeric function for CENP-A in shaping epithelial-mesenchymal plasticity and cellular heterogeneity. + Copyright © 2026 The Author(s). Published by Elsevier Inc. All rights reserved. + + + + Renaud-Pageot + Charlène + C + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Capocefalo + Daniele + D + + Institut Pasteur, Université Paris Cité, CNRS, UMR 3738, Machine Learning for Integrative Genomics Lab, 75015 Paris, France. + + + + Lemaire + Sébastien + S + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Forest + Audrey + A + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Cantini + Laura + L + + Institut Pasteur, Université Paris Cité, CNRS, UMR 3738, Machine Learning for Integrative Genomics Lab, 75015 Paris, France. + + + + Almouzni + Geneviève + G + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. Electronic address: genevieve.almouzni@curie.fr. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + Cell Rep + 101573691 + + IM + + CENP-A + CP: developmental biology + CP: molecular biology + cell cycle + centromere + chromatin + epigenetics + epithelial-mesenchymal transition + single-nucleus multi-omics + + Declaration of interests The authors declare no competing interests. +
+ + + + 2025 + 10 + 1 + + + 2026 + 2 + 10 + + + 2026 + 4 + 27 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 52 + + + aheadofprint + + 42213782 + 10.1016/j.celrep.2026.117405 + S2211-1247(26)00483-3 + + +
+ + + 42213739 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + TransGrid-CostOpt: A hybrid transformer framework for cost prediction and optimization of distribution network assets. + + e0350026 + e0350026 + + 10.1371/journal.pone.0350026 + + The prediction and optimization of distribution network asset costs is a complex problem in the power industry, involving the optimization of multiple objectives and the response to dynamic demands. Traditional methods often struggle to effectively address fluctuations in power load and the uncertainties in the supply chain, limiting their effectiveness in complex environments. To solve this issue, we propose the TransGrid-CostOpt model, an intelligent cost optimization model that integrates deep learning, multi-objective optimization, time-series forecasting, and optimization decision-making modules. TransGrid-CostOpt optimizes load forecasting and cost allocation for the distribution network by combining multi-source data, time-series load forecasting, and reinforcement learning decision strategies, reducing operational costs, improving load forecasting accuracy, and enhancing decision adaptability. Experimental results show that TransGrid-CostOpt outperforms traditional models and other advanced methods on the BuildingsBench and PJM Hourly Load Data datasets, exhibiting higher accuracy and efficiency in forecasting, cost optimization, and multi-objective balancing. Compared to classical baseline models and cutting-edge approaches, TransGrid-CostOpt demonstrates a 15% to 30% overall performance improvement. Ablation experiments confirm the critical role of each module, especially the time-series forecasting module and optimization decision-making module, in significantly enhancing the model's performance. TransGrid-CostOpt strengthens the cost management capability of the distribution network and shows strong adaptability in dynamic electricity market environments, with broad application potential. + Copyright: © 2026 Xiong et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Xiong + Wei + W + + State Grid Hubei Electric Power Co., Ltd, Wuhan, Hubei, China. + + + + Xia + Jie + J + + State Grid Hubei Electric Power Co., Ltd. Jingzhou Power Supply Company, Jingzhou, Hubei, China. + + + + Yu + YiBo + Y + + Wuhan Anju Supply Chain Co., Ltd, Wuhan, Hubei, China. + + + + Xiong + SanMing + S + + International Education College of North China Electric Power University (Baoding), Baoding, Hebei, China. + + + + Hu + HaiYang + H + + State Grid Hubei Electric Power Co., Ltd. Jingzhou Power Supply Company, Jingzhou, Hubei, China. + + + + Wan + Peng + P + 0009-0006-8464-084X + + Hubei Power Grid Design Co., Ltd., Wuhan, Hubei, China. + + + + Li + Dan + D + + Yunxia Electric Energy (Yunnan) Co., Ltd, Kunming, Yunnan, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Reinforcement Machine Learning + + + Prediction Algorithms + + + Forecasting + methods + + + Predictive Learning Models + + + The authors declare that they have no competing interests. There is no financial, personal, or professional conflict that could be perceived as influencing the research or the writing of this manuscript. +
+ + + + 2025 + 12 + 18 + + + 2026 + 5 + 7 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 44 + + + epublish + + 42213739 + 10.1371/journal.pone.0350026 + PONE-D-25-67221 + + +
+ + + 42213730 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1553-7358 + + 22 + 5 + + 2026 + May + + + PLoS computational biology + PLoS Comput Biol + + A prototype-augmented graph representation learning framework for identifying brain disorder-associated genes and facilitating drug repurposing. + + e1014323 + e1014323 + + 10.1371/journal.pcbi.1014323 + + Many genetic loci were identified as associated with neuropsychiatric disorders and neurodegenerative disorders by Genome-wide association studies (GWAS). How these loci impact these diseases is unclear. Advances in deep-learning approaches and multi-omics data have the potential to link GWAS findings with disease mechanisms. Here, we proposed the Multi-omics Graph Transformer Network (MOGT), a semi-supervised graph neural network that leverages graph representation learning to model biological networks derived from multi-omics data to predict disease-associated genes. MOGT outperforms the current approaches in disease gene prediction for two psychiatric disorders and three neurodegenerative/neurological diseases. High-risk genes (HRGs) for Parkinson's disease (PD) predicted by MOGT were used to drug discovery by integrating with the CMAP database. Finally, 10 drugs were identified as potential candidates. Among them, the effect of drug UK-356618 was experimentally verified in a primary neuron model, showing that UK-356618 reversed the abnormal expression of PD-associated genes and improved the cell-level phenotypes of PD. Together, these results indicate that MOGT can be used to identify HRGs for brain disorders, and these predicted HRGs provide high-level insights into the mechanisms and treatments of brain disorders. + Copyright: © 2026 Li et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Li + Jiafang + J + 0009-0006-5493-5305 + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + Guangdong Provincial Key Laboratory of Malignant Tumor Epigenetics and Gene Regulation, Guangzhou, Guangdong, China. + + + + Li + Yifei + Y + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + Guangdong Provincial Key Laboratory of Malignant Tumor Epigenetics and Gene Regulation, Guangzhou, Guangdong, China. + + + + Lin + Siying + S + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + School of Computer Science and Engineering, Sun Yat-sen University, Guangzhou, Guangdong, China. + + + + Rao + Jiahua + J + + School of Computer Science and Engineering, Sun Yat-sen University, Guangzhou, Guangdong, China. + + + + Zhao + Huiying + H + 0000-0001-9134-536X + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + Guangdong Provincial Key Laboratory of Malignant Tumor Epigenetics and Gene Regulation, Guangzhou, Guangdong, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS Comput Biol + 101238922 + 1553-734X + + IM + + + Graph Neural Networks + + + Drug Repositioning + methods + + + Genome-Wide Association Study + + + Humans + + + Computational Biology + methods + + + Brain Diseases + genetics + drug therapy + + + Representation Machine Learning + + + Genetic Predisposition to Disease + genetics + + + Parkinson Disease + genetics + + + Animals + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 12 + 1 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 43 + + + epublish + + 42213730 + 10.1371/journal.pcbi.1014323 + PCOMPBIOL-D-25-02551 + + +
+ + + 42213726 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + Machine learning models based on magnetic resonance imaging for predicting Lymphovascular Invasion in Invasive Breast Cancer. + + e0350085 + e0350085 + + 10.1371/journal.pone.0350085 + + Treatment strategies for invasive breast cancer require accurate lymphovascular invasion (LVI) predictions. This study aimed to investigate the feasibility and effectiveness of delta radiomics signature based on dynamic contrast-enhanced magnetic resonance imaging (DCE-MRI) and radiomics signature based on T2-weighted fat suppressed imaging(T2FS) for assessing LVI in invasive breast cancer. + A total of 166 patients with resectable invasive breast cancer who underwent preoperative DCE-MRI and T2FS from July 10, 2020 to December 31, 2023 were enrolled. Radiomics features were extracted from pre-contrast phase (RFpre), second post-contrast phase (RFpost), and Delta radiomics features (RFDelta) calculated as RFpost minus RFpre. Then four radiomics signatures (RST2, RSpre, RSpost, RSDelta) were further developed based on the Random Forest model for RFT2, RFpre, RFpost and RFDelta, respectively. The predictive performance of all signatures was evaluated by receiver operating characteristic (ROC) analysis, with accuracy and area under the curve (AUC) as the main quantitative metrics. + In the test set, RSDelta (10 features) achieved the highest accuracy of 0.717 and an AUC of 0.764; RSpost (8 features) had an accuracy of 0.565 and an AUC of 0.610; RSpre (7 features) and RST2 (6 features) both showed an accuracy of 0.565 with AUCs of 0.535 and 0.662, respectively. Statistical differences were observed in predictive performance between RSDelta and RSpre, RSpost (both p < 0.05), while no significant difference was found between RSDelta and RST2 (p = 0.239). + RST2, RSpre, RSpost and RSDelta are all feasible for predicting LVI in invasive breast cancer, and RSDelta outperforms the other three radiomics signatures, which can serve as a potential non-invasive imaging biomarker for LVI prediction in clinical practice. + Copyright: © 2026 Li et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Li + Hong + H + 0000-0002-4531-7541 + + Department of Radiology, the Second Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + Huang + Jieling + J + + Department of Radiology, Guangzhou Geriatric Hospital, Guangzhou, Guangdong, China. + + + + Hou + Jianning + J + + Department of Radiology, Guangzhou Women And Children's Medical Center, Guangzhou, China. + + + + Chen + Xinxin + X + + Department of Breast surgery, the Second Affiliated Hospital, Guangzhou Medical University,‌‌ Guangzhou, Guangdong, China. + + + + Zhi + Cheng + C + + Department of Pathology, the Second Affiliated Hospital, Guangzhou Medical University, ‌‌Guangzhou, Guangdong, China. + + + + Li + Zhiming + Z + + Department of Radiology, the Second Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Humans + + + Breast Neoplasms + diagnostic imaging + pathology + + + Female + + + Radiomics + + + Dynamic Contrast Enhanced Magnetic Resonance Imaging + + + Machine Learning + + + Neoplasm Invasiveness + + + Magnetic Resonance Imaging + methods + + + Middle Aged + + + Predictive Learning Models + + + Lymphatic Metastasis + diagnostic imaging + + + Random Forest + + + ROC Curve + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 7 + 28 + + + 2026 + 5 + 8 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 43 + + + epublish + + 42213726 + 10.1371/journal.pone.0350085 + PONE-D-25-38600 + + +
+ + + 42213702 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2767-3170 + + 5 + 5 + + 2026 + May + + + PLOS digital health + PLOS Digit Health + + Video-based detection of Delirium in hospitalized adults. + + e0001462 + e0001462 + + 10.1371/journal.pdig.0001462 + + Delirium, a dynamic neuropsychiatric condition associated with morbidity and mortality, remains underdiagnosed due to reliance on subjective, intermittent screening tools. Objective and potentially continuous identification is needed to improve clinical care. We developed and validated an analytic framework for delirium classification based on automatically extracted video features. In this prospective cohort study, patients (≥ 18 years) admitted to the inpatient medical or neurological ward of a tertiary academic center between August 2020 and March 2022 with an expected stay longer than one night were enrolled. Daily structured delirium assessments and brief video recordings were performed in consenting patients. Videos were analyzed using deep learning pose estimation to extract keypoints and calculate behavioral features based on eye, face, and limb postures and movements. Four machine learning models (logistic regression, gradient boosting, support vector machines, and random forests) were trained to predict delirium status from extracted features. Model performance was evaluated on 20 repetitions of three-fold cross-validation using the area under the curve of the receiver operating characteristics curve (AUC ROC). The cohort included 109 videos from 25 male and 25 female participants (median age: 72, IQR: 63.25-78). Twenty videos (18%) were from patients with delirium. Keypoints for this dataset were more accurately extracted using a customized ResNet-101 model developed with DeepLabCut (sensitivity 0.94, specificity 0.89, compared to human-labeled gold standards) than using off-the-shelf models. Keypoints were then used to generate behavioral features summarizing movement and postures throughout the video. A support vector machine model achieved an average delirium classification AUC ROC of 0.79 (SD ± 0.09), sensitivity of 0.71 (SD ± 0.16), and specificity of 0.78 (SD ± 0.07). This study demonstrates the feasibility of identifying delirium using brief videos in clinically heterogeneous cohorts and reveals novel features for objective identification. + Copyright: © 2026 Mendu et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Mendu + Maanasa + M + 0000-0002-0409-1769 + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Tesh + Ryan A + RA + 0000-0002-6154-6248 + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + Department of Neurology, Beth Israel Deaconess Medical Center, Boston, Massachusetts, United States of America. + + + + Pellerin + Kyle + K + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Steward + Grace E + GE + 0000-0002-0226-0880 + + Department of Neurology, Northwestern University, Chicago, Illinois, United States of America. + + + + Cerda + Ivo H + IH + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Williams + Marta + M + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Colman + Mia + M + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Shah + Simran + S + 0000-0001-6298-7558 + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Lam + Alice D + AD + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Cash + Sydney S + SS + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Westover + M Brandon + MB + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + Department of Neurology, Beth Israel Deaconess Medical Center, Boston, Massachusetts, United States of America. + + + + Kimchi + Eyal Y + EY + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + Department of Neurology, Northwestern University, Chicago, Illinois, United States of America. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLOS Digit Health + 9918335064206676 + 2767-3170 + + I have read the journal’s policy and the authors of this manuscript have the following competing interests: Dr. Cash and Dr. Westover report being a cofounder of, serving as a scientific advisor and consultant to, and having a personal equity interest in Beacon Biosignals outside the submitted work. Beacon Biosignals had no role in the design, data analysis, interpretation, or writing of the manuscript. +
+ + + + 2025 + 10 + 23 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 34 + + + epublish + + 42213702 + 10.1371/journal.pdig.0001462 + PDIG-D-25-00896 + + +
+ + + 42213697 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + A hybrid BiLSTM-transformer-GCN architecture with API fusion for adaptive transportation resource analytics. + + e0349787 + e0349787 + + 10.1371/journal.pone.0349787 + + Intelligent Transportation Systems (ITS) generate large volumes of heterogeneous spatiotemporal data from connected vehicles, road infrastructure, and external contextual services. Effectively discovering, classifying, and managing these transportation resources in real time remains challenging due to dynamic traffic conditions and nonlinear dependencies. This paper proposes a novel hybrid deep learning framework that integrates Bidirectional Long Short-Term Memory (BiLSTM), Transformer encoders, and Graph Convolutional Networks (GCN) with API-based contextual feature fusion for adaptive resource discovery and classification. A multi-objective learning strategy jointly optimizes supervised classification and unsupervised anomaly discovery through reconstruction-based latent feature refinement. Experiments conducted on the Barcelona Accident dataset and the Metro Interstate Traffic Volume dataset demonstrate the superiority of the proposed method. On the combined dataset, the framework achieves an accuracy of 0.882, F1-score of 0.864, and AUC of 0.911, outperforming traditional baselines such as Random Forest (accuracy 0.839) and deep CNN-LSTM (accuracy 0.857). For anomaly discovery, it obtains an AUROC of 0.836 and AUPRC of 0.784 on the Barcelona dataset, and AUROC of 0.819 on the Metro dataset, while achieving the lowest reconstruction error of 0.198. The ablation study shows performance degradation when API fusion (-4.1% accuracy) or GCN modeling (-2.8% accuracy) is removed, confirming their contribution. Inference latency analysis further demonstrates practical deployability with a competitive accuracy-latency trade-off. + Copyright: © 2026 Javeed et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Javeed + Mohammed Saad + MS + + Information Science, Trine University, Michigan,‌‌ Allen Park, United States of America‌. + + + + Biswas + Arindam Kishor + AK + + University of the Cumberlands, Williamsburg, Kentucky, United States of America. + + + + Hasan + Md Nahid + MN + + University of Wisconsin-Milwaukee, Milwaukee, Wisconsin, United States of America. + + + + Maua + Jannatul + J + + Department of Computer Science and Engineering, Bangladesh University of Business and Technology, Dhaka, Bangladesh. + + + + Islam + Rahomotul + R + 0009-0007-1948-0322 + + Department of Computer Science and Engineering, Bangladesh University of Business and Technology, Dhaka, Bangladesh. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Long Short Term Memory + + + Graph Neural Networks + + + Transportation + + + Data Analytics + + + Deep Learning + + + Intelligent Systems + + + Algorithms + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 10 + 26 + + + 2026 + 5 + 5 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 34 + + + epublish + + 42213697 + 10.1371/journal.pone.0349787 + PONE-D-25-57885 + + +
+ + + 42213657 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + Towards intelligent railway monitoring: A novel hybrid deep learning architecture for railway obstacle detection. + + e0349562 + e0349562 + + 10.1371/journal.pone.0349562 + + Railways are among the most efficient modes of transportation, capable of moving large quantities of goods and passengers over long distances at relatively low cost. However, accidents frequently occur due to objects or individuals present on the tracks, as trains are unable to swerve and require long braking distances. While the localization of objects within the track bed is a well-explored topic, the reliable and high-performance classification of such obstacles across all relevant categories remains an unresolved challenge. This study proposes an innovative hybrid architecture that leverages the specific visual characteristics of track bed imagery, setting a new benchmark in this domain. The hybrid design effectively leverages the strengths of ResNet50 and Swin Transformer V2, allowing the model to capture both local and global features. In addition, an Efficient Attention Module is integrated to further emphasize the most relevant features for robust obstacle classification. Using stratified five-fold cross-validation on a dataset of 2,003 images across six classes (iron bar, boulder, person, branch, canister, and barrel), the model achieved an average balanced accuracy of 99.46%. The results have implications for accident prevention, improving operational efficiency, and modernizing railway safety systems, thereby enabling the future application of automatic railway surveillance systems to ultimately enhance operational security. + Copyright: © 2026 Mai et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Mai + Christopher + C + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + Eisentraut + Luca + L + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + Schadt + Merlin + M + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + Buettner + Ricardo + R + 0000-0003-2263-6408 + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Railroads + + + Deep Learning + + + Humans + + + Detection Algorithms + + + Convolutional Neural Networks + + + Image Processing, Computer-Assisted + methods + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 11 + 7 + + + 2026 + 5 + 1 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 33 + + + epublish + + 42213657 + 10.1371/journal.pone.0349562 + PONE-D-25-60054 + + +
+ + + 42213596 + + 2026 + 05 + 29 + +
+ + 1944-8252 + + + 2026 + May + 29 + + + ACS applied materials & interfaces + ACS Appl Mater Interfaces + + 3D-Printed Conductive Aerogel Humidity Sensor for Advanced Wearable Sleep and Health Monitoring. + 10.1021/acsami.6c01464 + + Recent advances in personalized sleep medicine and home-based health monitoring have grown rapidly, yet progress remains limited by the lack of comfortable, reliable, and durable sensors for long-term respiration tracking. Here, we present a flexible humidity sensor fabricated through a freeze-drying-assisted direct-ink-writing (DIW) 3D printing strategy. This sensor is constructed from a poly(vinyl alcohol)/nanocellulose/graphene/multiwalled carbon nanotubes (PVA/CNF/Gr/MWCNTs, PCGM) composite aerogel, with a hierarchically porous conductive architecture. This aerogel was stabilized by a biocompatible PVA matrix reinforced by nanocellulose, while graphene ensures high conductivity, and it was further enhanced by carbon nanotubes in the 3D structure. Moreover, the considerable hydrogen bonding and π-π conjugation within this hybrid material contribute to exceptional interfacial stability, water-adsorption capacity, and electrical conductivity, resulting in a remarkable humidity-sensing performance with high sensitivity, fast response/recovery times, and excellent stability across a broad humidity range. Remarkably, the sensor can accurately differentiate diverse sleep postures and respiratory patterns, including normal, snoring, and coughing. Furthermore, we further enabled a 600-sample-trained deep convolutional neural network and achieved a high-precision pattern recognition, with 100% accuracy in respiratory state classification and 97% accuracy for spoken-word recognition classification. Our work provides an integrated strategy for next-generation high-performance wearable health monitoring and human-machine interaction systems. + + + + Chen + Xiaojun + X + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + Department of Food Science and Technology, National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + + Lin + Xitong + X + + School of Mechanical Engineering, Guangdong Ocean University, Zhanjiang 524088, China. + + + + Huang + Yuanyu + Y + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + + Li + Yihuan + Y + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + + Lian + Haishan + H + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + + Zhao + Zhihao + Z + + Department of Food Science and Technology, National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + + Zhou + Jiangtao + J + 0000-0003-4248-2207 + + Department of Food Science and Technology, National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + Bezos Centre for Sustainable Protein at the National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + National University of Singapore (Suzhou) Research Institute, 377 Linquan Street, Suzhou Industrial Park, Jiangsu 215123, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + ACS Appl Mater Interfaces + 101504991 + 1944-8244 + + IM + + 3D printing + Composite aerogel + Deep learning + Flexible humidity sensor + Respiration monitoring + +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 12 + + + aheadofprint + + 42213596 + 10.1021/acsami.6c01464 + + +
+ + + 42213487 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2564-1891 + + 6 + + 2026 + May + 29 + + + JMIR infodemiology + JMIR Infodemiology + + Early Depression Detection in Social Media: Monitoring of Individual Nighttime Dynamics and Large Language Model Analysis. + + e87138 + e87138 + + 10.2196/87138 + + Depression has become a major global public health challenge, and early intervention is critical for improving patient outcomes. Current depression detection techniques based on social media data (traditional risk detection) rely heavily on users' complete historical information, which cannot meet the timeliness requirements of early intervention. This underscores the need for early risk detection (ERD) methods emphasizing early-stage, real-time warning. However, existing ERD studies have notable limitations such as (1) they overlook temporal activity patterns hidden in posting time stamps, missing vital warning signals; and (2) they depend on static templates or resource-intensive sequence models, resulting in limited interpretability and inefficient use of early data, ultimately constraining their clinical applicability for early intervention. + This study aims to develop an efficient, reliable, and interpretable ERD model. The core objectives are to extract temporal activity patterns features from posting time stamps, thereby enriching feature dimensions for risk detection; to leverage large language models (LLMs) for improved text filtering precision and depression-related factor analysis; and to achieve accurate early detection of depression to support clinical intervention. + We propose the Monitoring of Individual Nighttime Dynamics (MIND) and LLM analysis model, which integrates two key innovations: (1) circadian activity dynamics: posting time stamps are transformed into temporal activity patterns, analyzing fluctuations in posting frequency and timing to derive sleep-related features, thereby compensating for the limitations of text-only approaches, and (2) LLM depression profiler: LLMs are used for dynamic text filtering, automatically removing irrelevant noise and focusing on potential depression-related cues. Based on LLM semantic understanding, latent depression risk factors are identified, enhancing interpretability for clinical treatment and robustness to noise. + Experiments on the eRisk2017 (data source: Reddit [Reddit Inc]) benchmark dataset demonstrated that MIND significantly outperformed existing baseline models in early detection sensitivity, specificity, and accuracy. By combining sleep-related features with text analysis, the model achieved interpretable, traceable predictions that can support clinical treatment. ALL relevant experimental code is publicly available. + The MIND model combines temporal activity pattern features with LLM-based text analysis, addressing the challenges of poor interpretability and inefficient use of early-stage data in existing ERD methods. It significantly enhances early detection performance, offering a new paradigm for applying social media data in ERD, thereby enabling earlier intervention and reducing the public health burden of depression. + ©Bicheng Yu, Zhichang Zhang, Lulu Ma, Jiongfu Cai, Yuanyuan Zhang. Originally published in JMIR Infodemiology (https://infodemiology.jmir.org), 29.05.2026. + + + + Yu + Bicheng + B + 0009-0009-8280-6414 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Zhang + Zhichang + Z + 0000-0003-3306-8493 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Ma + Lulu + L + 0009-0009-1573-3534 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Cai + Jiongfu + J + 0009-0006-0608-6097 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Zhang + Yuanyuan + Y + 0009-0002-0645-3409 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Infodemiology + 9918249014806676 + 2564-1891 + + IM + + + Humans + + + Large Language Models + + + Social Media + statistics & numerical data + + + Depression + diagnosis + + + Early Diagnosis + + + + circadian rhythm + depression + early risk detection + large language model + sleep analysis + +
+ + + + 2025 + 11 + 5 + + + 2026 + 4 + 29 + + + 2026 + 3 + 30 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 11 + 53 + + + epublish + + 42213487 + 10.2196/87138 + v6i1e87138 + + +
+ + + 42213480 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2369-3762 + + 12 + + 2026 + May + 29 + + + JMIR medical education + JMIR Med Educ + + Performance of Large Language Models on the Brazilian National Medical Education Examination: Comparative Benchmark Study. + + e89839 + e89839 + + 10.2196/89839 + + Large language models (LLMs) are rapidly incorporated into medical education and examination preparation; yet, most benchmarking evidence is derived from English-language material. Whether frontier commercial models and Brazilian Portuguese domain-specialized systems perform equivalently on high-stakes Brazilian medical examinations remains unclear. + This study aims to quantify and compare the performance of 9 frontier commercial LLMs and 1 Brazilian Portuguese domain-specialized system (Charcot, Voa Health) on 2026 Brazilian National Medical Education Examination (Exame Nacional de Avaliação da Formação Médica [ENAMED] 2026) and to describe the patterns of systematic between-model error as complementary quality signal. + All 100 items of ENAMED 2026 (99 valid after annulment) were administered to 10 frontier-panel models across 5 independent runs under identical Portuguese prompts (temperature=0; top-p=.95). Commercial models were accessed through a unified OpenRouter client layer (DeepSeek provider-pinned). The primary outcome was mean accuracy against the preliminary key; the secondary outcomes were convergence error (CE), normalized mean response time (NMRT), and intermodel agreement. Accuracy was analyzed with Shapiro-Wilk, Levene, Kruskal-Wallis (ε2), Dunn-Holm post hoc, and a binomial generalized linear mixed model with question and run random intercepts. NMRT excluded Charcot (different stack) and Grok 4 (latency outlier). A total of 7 open-weight and small language models were assessed as a small language model (SLM) substudy. + Frontier-panel accuracy ranged from 73.74% (365/495) for GPT-4o-mini to 96.97% (480/495) for Charcot. Accuracy was nonnormal (Shapiro-Wilk, W=0.82; P<.001) with homogeneous variance (Levene P=.26). Kruskal-Wallis showed large between-model differences (H9=47.65; P<.001; ε2=0.97). Dunn-Holm flagged 8 of 45 pairs: Charcot was separable from GPT-4o-mini, DeepSeek v3.2-exp, and Grok 4, but not from the top frontier cluster. The generalized linear mixed model preserved the ranking (all comparators odds ratio<1 vs Charcot; upper CI<1 except GPT-5). A total of 9 items met the default CE criterion; item 77 showed 10-of-10 convergence, later confirmed by Instituto Nacional de Estudos e Pesquisas Educacionais Anísio Teixeira rectification, and sensitivity analysis preserved the CE set (5-20 items). Intermodel agreement was high (Fleiss κ=0.852; Krippendorff α=.852). Among 8 retained commercial models, NMRT correlated positively with accuracy (Spearman ρ=0.74; P=.04); these results are interpreted as descriptive of an orchestration-level latency-accuracy law. SLM accuracy ranged from 47.47% (Gemma 3 4B) to 82.22% (GPT-OSS 120B), with lower agreement (Fleiss κ=0.508) and 17 CE items. The best SLM-panel model lagged every frontier-panel model except GPT-4o-mini, with a 12-15 percentage-point gap against the top cluster. + On ENAMED 2026, a Brazilian Portuguese domain-specialized system ranked first, indistinguishable from frontier commercial cluster and above subfrontier and open-weight systems. Charcot's architecture is not publicly disclosed; these findings should be interpreted as comparative black-box evidence of performance and not as mechanistic evidence of specialization. CE was stable, and it prospectively flagged 1 rectified item, supporting its use as a quality assurance screen. + ©Francys de Luca Fernandes da Silva, Eduardo Augusto Roeder, João Victor Bruneti Severino, Matheus Nespolo Berger, Pedro Angelo Basei de Paula, Davi Ferreira, Maria Han Veiga, Thyago Proença de Moraes, Gustavo Lenci Marques. Originally published in JMIR Medical Education (https://mededu.jmir.org), 29.05.2026. + + + + Fernandes da Silva + Francys de Luca + FL + 0000-0001-9214-691X + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + + Roeder + Eduardo Augusto + EA + 0000-0002-1016-3319 + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Bruneti Severino + João Victor + JV + 0000-0002-8649-6494 + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Nespolo Berger + Matheus + M + 0009-0000-0815-3288 + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Basei de Paula + Pedro Angelo + PA + 0009-0000-6271-6862 + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Ferreira + Davi + D + 0000-0003-1151-9652 + + Instituto Tecnológico de Aeronáutica, São José dos Campos, São Paulo, Brazil. + + + + Han Veiga + Maria + M + 0009-0008-8261-5258 + + The Ohio State University, Columbus, OH, United States. + + + + de Moraes + Thyago Proença + TP + 0000-0002-2983-3968 + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + + Lenci Marques + Gustavo + G + 0000-0002-6057-0350 + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + eng + + Journal Article + Comparative Study + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Med Educ + 101684518 + 2369-3762 + + IM + + + Large Language Models + + + Brazil + + + Humans + + + Benchmarking + methods + + + Educational Measurement + methods + standards + statistics & numerical data + + + Education, Medical + standards + methods + + + + Brazilian Portuguese + ENAMED + Exame Nacional de Avaliação da Formação Médica + artificial intelligence + benchmarking + clinical reasoning + large language models + medical education + +
+ + + + 2025 + 12 + 20 + + + 2026 + 5 + 8 + + + 2026 + 4 + 28 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 11 + 52 + + + epublish + + 42213480 + 10.2196/89839 + v12i1e89839 + + +
+ + + 42213376 + + 2026 + 05 + 29 + +
+ + 1573-501X + + + 2026 + May + 29 + + + Molecular diversity + Mol Divers + + M-Tune: imbalanced data handling in machine learning by tuning the decision threshold. + 10.1007/s11030-026-11600-8 + + Overprediction of the majority class and poor predictive performance are the major issues when training machine learning classifiers with imbalanced data. This eventually leads to a larger misclassification rate and bias towards the majority class. This is a real-world problem, especially when dealing with biological datasets. There are several popular methods, including Random Under Sampling (RUS), Synthetic Minority Oversampling Technique (SMOTE), and Generalized tHreshOld ShifTing (GHOST). However, these methods either articulate the no. of samples or are biased towards the majority class. In this study, we developed a novel strategy, "M-Tune", a simple yet powerful technique for addressing the class imbalance problem. This procedure employs an ensemble approach that incorporates threshold shifting and majority voting. This new method can effectively predict the minority class. The developed method was rigorously tested with 138 drug discovery datasets. We further rigorously evaluate the performance of the M-Tune method for two classifiers with eleven different fingerprints and find that classifiers benefit from M-Tune in effectively classifying the minority class. The M-Tune method outperformed the other strategies, including the GHOST method and SMOTE and achieved comparable performance with RUS in identifying minority classes. In conclusion, we demonstrated a new threshold procedure that can be effectively applied to real-world imbalanced datasets, i.e., drug discovery data sets where the class datasets are highly imbalanced. This method aids in identifying the minority class in highly imbalanced datasets, in general, and in drug discovery datasets, in particular. Although M-Tune increases false positive predictions relative to conservative thresholding strategies, it provides a practical advantage in applications where maximizing active compound recovery is prioritized. + © 2026. The Author(s), under exclusive licence to Springer Nature Switzerland AG. + + + + Dutta + Tapos + T + + School of Computing Science, The Assam Kaziranga University, Jorhat, 785006, India. + + + + Chutia + Hillul + H + + Advanced Computation and Data Sciences Division, CSIR-North East Institute of Science and Technology, Jorhat, 785006, India. + + + + Nagamani + Selvaraman + S + + Advanced Computation and Data Sciences Division, CSIR-North East Institute of Science and Technology, Jorhat, 785006, India. nagamaniselvaraman@gmail.com. + + + Academy of Scientific and Innovative Research (AcSIR), Ghaziabad, 201002, India. nagamaniselvaraman@gmail.com. + + + + eng + + + BT/PR40188/BTIS/137/27/2021 + Department of Biotechnology, Ministry of Science and Technology, India + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + Mol Divers + 9516534 + 1381-1991 + + IM + + Bioactive datasets + Class imbalance problem + Data handling + Machine learning + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 7 + 18 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 11 + 20 + + + aheadofprint + + 42213376 + 10.1007/s11030-026-11600-8 + 10.1007/s11030-026-11600-8 + + + + Abd Elrahman SM, Abraham A (2013) A review of class imbalance problem. J Netw Innovative Comput 1:332–340 + + + Haixiang G, Yijing L, Shassng J, Mingyun G, Yuanyue H, Bing G (2017) Learning from class-imbalanced data: review of methods and applications. Expert Syst Appl 73:220–239 + + 10.1016/j.eswa.2016.12.035 + + + + Tong X, Feng Y, Li JJ (2018) Neyman-Pearson classification algorithms and NP receiver operating characteristics. Sci Adv 4:1–10 + + 10.1126/sciadv.aao1659 + + + + Kaur H, Pannu HS, Malhi AK (2019) A systematic review on imbalanced data challenges in machine learning: applications and solutions. ACM Comput Surv 52:1–36 + + + Weiss GM (2004) Mining with rarity: a unifying framework. SIGKDD Explor Newsl 6:7–19 + + 10.1145/1007730.1007734 + + + + Provost F, Fawcett T (2001) Robust classification for imprecise environments. Mach Learn 42:203–231 + + 10.1023/A:1007601015854 + + + + Japkowicz N, Stephen S (2002) The class imbalance problem: a systematic study. Intell Data Anal 6:429–449 + + 10.3233/IDA-2002-6504 + + + + López V, Fernández A, García S, Palade V, Herrera F (2013) An insight into classification with imbalanced data: empirical results and current trends on using data intrinsic characteristics. Inf Sci 250:113–141 + + 10.1016/j.ins.2013.07.007 + + + + Wellintz J, Jain S, Hochuli JE, Maxfield T, Muratov EN, Tropsha A, Zakharov AV (2025) One size does not fit all: revising traditional paradigms for assessing accuracy of QSAR models used for virtual screening. J Cheminform 17:7 + + 10.1186/s13321-025-00948-y + + + + Seal S, Mahale M, Ortegon MG (2025) Machine learning for toxicity prediction using chemical structures: pillars for success in the real world. Chem Res Toxicol 38:759–807 + + + Sun Y, Wong AK, Kamel MS (2009) Classification of imbalanced data: a review. Int J Pattern Recognit Artif Intell 23:687–719 + + 10.1142/S0218001409007326 + + + + V Ganganwar (2012) An overview of classification algorithms for imbalanced datasets. Int J Emerg Technol Adv Eng 2:42–47 + + + Estabrooks A, Jo T, Japkowicz N (2004) A multiple resampling method for learning from imbalanced data sets. Comput Intell 20:18–36 + + 10.1111/j.0824-7935.2004.t01-1-00228.x + + + + García V, Sánchez JS, Mollineda RA (2012) On the effectiveness of preprocessing methods when dealing with different levels of class imbalance. Knowl -Based Syst 25:13–21 + + 10.1016/j.knosys.2011.06.013 + + + + Fernández A, García S, Galar M, Prati RC, Krawczyk B, Herrera F (2018) Learning from imbalanced data sets. Springer, 123 – 146 + + 10.1007/978-3-319-98074-4 + + + + Elkan C (2001) Foundations of cost-sensitive learning. In: Proceedings of the 17th international joint conference on artificial intelligence, pp 973 – 978 + + + Galar M, Fernandez A, Barrenechea E, Bustince H, Herrera F (2012) A review on ensembles for the class imbalance problem: bagging-, boosting-, and hybrid-based approaches. IEEE Trans Syst Man Cybern C Appl Rev 42:463–484 + + 10.1109/TSMCC.2011.2161285 + + + + Cao H, Li X-L, Woon DY-K, Ng S-K (2013) Integrated oversampling for imbalanced time series classification. IEEE Trans Knowl Data Eng 25:2809–2822 + + 10.1109/TKDE.2013.37 + + + + Nekooeimehr I, Lai-Yuen SK (2016) Adaptive semi-unsupervised weighted oversampling (A-SUWO) for imbalanced datasets. Expert Syst Appl 46:405–416 + + 10.1016/j.eswa.2015.10.031 + + + + Kumar NS, Rao KN, Govardhan A, Reddy KS, Mahmood AM (2014) Undersampled K-means approach for handling imbalanced distributed data. Prog Artif Intell 3:29–38 + + 10.1007/s13748-014-0045-6 + + + + Anand A, Pugalenthi G, Fogel GB, Suganthan P (2010) An approach for classification of highly imbalanced data using weighting and undersampling. Amino Acids 39:1385–1391 + + 20411285 + 10.1007/s00726-010-0595-2 + + + + Song J, Huang X, Qin S, Song QA (2016) Bi-directional Sampling Based on K-means method for imbalance text classification. In: 2016 IEEE/ACIS 15th international conference on computer and, science I (ICIS), pp 1 – 5 + + + Cateni S, Colla V, Vannucci M (2014) A method for resampling imbalanced datasets in binary classification tasks for real-world problems. Neurocomput 135:32–41 + + 10.1016/j.neucom.2013.05.059 + + + + Al-Stouhi S, Reddy CK (2016) Transfer learning for class imbalance problems with inadequate data. Knowl Inf Syst 48:201–228 + + 27378821 + 10.1007/s10115-015-0870-3 + + + + Saha US, Vendruscolo M, Carpenter AE, Singh S, Bender A, Seal S (2024) Step forward cross validation for bioactivity prediction: Out of distribution validation in drug discovery bioRxiv Jul 4:07.02.601740 + + + Sheng VS, Ling CX (2006) Thresholding for making classifiers cost-sensitive. In: Proceedings of the 21st national conference on AI, pp 476 – 481 + + + King G, Zeng L (2001) Logistic regression in rare events data. Polit Anal 9:137–163 + + 10.1093/oxfordjournals.pan.a004868 + + + + Zou Q, Xie S, Lin Z, Wu M, Ju Y (2016) Finding the best classification threshold in imbalanced classification. Big Data Res 5:2–8 + + 10.1016/j.bdr.2015.12.001 + + + + Johnson JM, Khoshgoftaar TM (2021) In Deep learning applications. Wani MA, Khoshgoftaar TM, Palade V (Eds) Springer, Singapore, vol 2, pp 199 – 227 + + + Korkmaz S (2020) Deep learning-based imbalanced data classification for drug discovery. J Chem Inf Model 60:4180–4190 + + 32573225 + 10.1021/acs.jcim.9b01162 + + + + Esposito C, Wang S, Lange UE, Oellien F, Riniker S (2020) Combining machine learning and molecular dynamics to predict PGlycoprotein substrates. J Chem Inf Model 60:4730–4749 + + 32786699 + 10.1021/acs.jcim.0c00525 + + + + Ruopp MD, Perkins NJ, Whitcomb BW, EF Schisterman (2008) Youden index and optimal cut-point estimated from observations affected by a lower limit of detection. Biom J 50:419–430 + + 18435502 + 2515362 + 10.1002/bimj.200710415 + + + + Song B, Zhang G, Zhu W, Liang Z (2014) ROC operating point selection for classification of imbalanced data with application to computer-aided polyp detection in CT colonography. Int J Comput Assist Radiol Surg 9:79–89 + + 23797823 + 3835757 + 10.1007/s11548-013-0913-8 + + + + Fawcett T (2006) An introduction to ROC analysis. Pattern Recognit Lett 27:861–874 + + 10.1016/j.patrec.2005.10.010 + + + + Yu H, Mu C, Sun C, Yang W, Yang X, Zuo X (2015) SupportVector machine-based optimized decision threshold adjustment strategy for classifying imbalanced. Data. Knowl -Based Syst 76:67–78 + + 10.1016/j.knosys.2014.12.007 + + + + Mazumdar B, Sarma PKD, Mahanta HJ, Sastry GN (2023) Machine learning based dynamic consensus model for predicting blood-brain barrier permeability. Comput Biol Med 160:106984 + + 37137267 + 10.1016/j.compbiomed.2023.106984 + + + + John L, Mahanta HJ, Soujanya Y, Sastry GN (2023) Assessing machine learning approaches for predicting failures of investigational drug candidates during clinical trials. Comput Biol Med 153:106494 + + 36587568 + 10.1016/j.compbiomed.2022.106494 + + + + Madugula SS, John L, Nagamani S, Gaur AS, Poroikov VV, Sastry GN (2021) Molecular descriptor analysis of approved drugs using unsupervised learning for drug repurposing. Comput Biol Med 138:104856 + + 34555571 + 10.1016/j.compbiomed.2021.104856 + + + + Korkmaz S (2020) Deep learning-based imbalanced data classification for drug discovery. J Chem Inf Model 60:4180–4190 + + 32573225 + 10.1021/acs.jcim.9b01162 + + + + Gadaleta D, Vukovic K, Toma C, Lavado GJ, Karmaus AL, Mansouri K, Kleinstreuer NC, Benfenati E, Roncaglioni A (2019) SAR and QSAR modeling of a large collection of LD50 rat acute oral toxicity data. J Cheminf 11:58 + + 10.1186/s13321-019-0383-2 + + + + Esposito C, Landrum GA, Schneider N, Stiefl N, Riniker (2021) GHOST: adjusting the decision threshold to handle imbalanced data in machine learning. J Chem Inf Model 61:2623–2640 + + 34100609 + 10.1021/acs.jcim.1c00160 + + + + He H (2009) Learning from imbalanced data. IEEE Trans Knowl Data Shar 21:1263–1284 + + 10.1109/TKDE.2008.239 + + + + Chawla NV, Bowyer KW, Hall LO, Kegelmeyer WP (2002) Synthetic minority over-sampling technique. J Artif Intell Res 16:321–357 + + 10.1613/jair.953 + + + + Awale M, JL Reymond (2014) Atom pair 2D-fingerprints perceive 3D-molecular shape and pharmacophores for very fast virtual screening of ZINC and GDB-17. J Chem Inf Model 54:1892–1907 + + 24988038 + 10.1021/ci500232g + + + + Willighagen EL, Mayfield JW, Alvarsson J, Berg A, Carlsson L, Jeliazkova N, Kuhn S, Pluskal T, Rojas-Chertó M, Spjuth O, Torrance G, Evelo CT, Guha R, C Steinbeck (2017) The Chemistry Development Kit (CDK) v2.0: atom typing, depiction, molecular formulas, and substructure searching. Aust J Chem 9:33 + + + Hall LH, LB Kier (1995) Electrotopological state indices for atom types: a novel combination of electronic, topological, and valence state information. J Chem Inf Comput Sci 35:1039–1045 + + 10.1021/ci00028a014 + + + + Klekota J, FP Roth (2008) Chemical substructures that enrich for biological activity. Bioinformatics 24:2518–2525 + + 18784118 + 2732283 + 10.1093/bioinformatics/btn479 + + + + Durant JL, Leland BA, Henry DR, Nourse JG (2002) Reoptimization of MDL keys for use in drug discovery. J Chem Inf Comput Sci 42:1273–1280 + + 12444722 + 10.1021/ci010132r + + + + Kim S, Thiessen PA, Bolton EE, Chen J, Fu G, Gindulyte A, Han L, He J, He S, Shoemaker BA, Wang J, Yu B, Zhang J, Bryant SH (2016) PubChem substance and compound databases. Nucleic Acids Res 44:D1202–D1213 + + 26400175 + 10.1093/nar/gkv951 + + + + CW Yap (2011) PaDEL-descriptor: an open source software to calculate molecular descriptors and fingerprints. J Comput Chem 32:1466–1474 + + 21425294 + 10.1002/jcc.21707 + + + + Lemaître G, Nogueira F, Aridas CK (2017) Imbalanced-learn: a python toolbox to tackle the curse of imbalanced datasets in machine learning. J Mach Learn Res 18:559–563 + + + Chen T, Guestrin C (2016) XGBoost: a scalable tree boosting system. In: 22nd SIGKDD conference on knowledge discovery and data mining + + + Prokhorenkova L 1, Gusev G, Vorobev A, Dorogush AV, Gulin A (2018) CatBoost: unbiased boosting with categorical features. In: 32nd conference on neural information processing systems (NIPS 2018); Montréal, Canada + + + Wilcoxon F (1992) Breakthroughs in Statistics. Springer, 196 – 202 + + + Virtanen P, Gommers R, Oliphant TE, Haberland M, Reddy T, Cournapeau D, Burovski E, Peterson P, Weckesser W, Bright J, van der Walt SJ, Brett M, Wilson J, Jarrod Millman K, Mayorov N, Nelson ARJ, Jones E, Kern R, Larson E, Carey C, Polat l, Feng Y, Moore EW, erPlas JV, Laxalde D, Perktold J, Cimrman R, Henriksen I, Quintero EA, Harris CR, Archibald AM, Ribeiro AH, Pedregosa F, van Mulbregt P (2020) SciPy 1.0: fundamental algorithms for scientific computing in python. Nat Methods 17:261–272 + + 32015543 + 7056644 + 10.1038/s41592-019-0686-2 + + + + C Bonferroni (1936) Teoria Statistica delle Classi e Calcolo delle Probabilita. Pubblicazioni del R Istituto Superiore di Scienze Economiche e Commericiali di Firenze. 8:3– 62 + + + Raudys SJ, AK Jain (1991) Small sample size effects in statistical pattern recognition: recommendations for practitioners. IEEE Trans Pattern Anal Mach Intell 13:252–264 + + 10.1109/34.75512 + + + + Napieral ́ a K, Stefanowski J, Wilk S (2010) Learning from imbalanced data in presence of noisy and borderline examples. In: International conference on rough sets and current trends in computing, vol 6086, pp 158 – 167 + + + Holte RC, Acker L, Porter BW (1989) Concept learning and the problem of small disjuncts. In: Proceedings of the 11th IJCAI, pp 813– 818 + + + +
+ + + 42213288 + + 2026 + 05 + 29 + +
+ + 1880-344X + + + 2026 + May + 29 + + + Journal of echocardiography + J Echocardiogr + + Explainable machine learning for estimation of elevated left ventricular filling pressure: a multicenter validation. + 10.1007/s12574-026-00738-x + + Guideline-recommended algorithms (GL-algorithm) often results in indeterminate left ventricular filling pressure (LVFP). Despite high accuracy, machine learning (ML) methods lack interpretability, which necessitates the development of explainable ML models for clinical use. + To develop an explainable ML model for estimating LVFP, providing patient-level interpretation using gold-standard right heart catheterization (RHC) data. + We retrospectively enrolled 956 patients who underwent echocardiography and RHC at three hospitals within a median of 3 days. Two extreme gradient boosting models were trained using data from two hospitals (n = 621) to estimate elevated pulmonary artery wedge pressure (PAWP ≥ 18 mmHg) as a surrogate for elevated LVFP. Model 1 used variables from GL-algorithm, while Model 2 used variables selected based on Shapley additive explanations (SHAP) values. Models' area under the receiver-operating characteristic curve (AUROC) for elevated LVFP were compared using external test data from the other hospital (n = 335). + Overall, 31.0% had elevated PAWP, and 42.7% were classified as indeterminate LVFP by GL-algorithm, whereas the ML models classified all patients. AUROCs of Model 1 (0.82, 95% CI 0.73-0.92) and Model 2 (0.83, 95% CI 0.75-0.91) in classifiable cases by GL-algorithm significantly outperformed that of GL-algorithm (0.72, 95% CI 0.60-0.83, p = 0.020 and 0.016, respectively), Model 2 performed equally well for indeterminate cases. SHAP force plots visualized each variable's contribution to the ML model's decision for each patient. + Explainable ML outperformed GL-algorithm in estimating LVFP, providing a user-friendly tool for clinicians with patient-level interpretability. + © 2026. Japanese Society of Echocardiography. + + + + Nakamura + Yutaka + Y + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Kagiyama + Nobuyuki + N + 0000-0002-2305-0049 + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. kgnb_27_hot@yahoo.co.jp. + + + Data Science Course, Juntendo University, Tokyo, Japan. kgnb_27_hot@yahoo.co.jp. + + + Department of Cardiovascular Medicine, Juntendo University Graduate School of Medicine, 2-1-1 Hongo, Tokyo, 113-0021, Japan. kgnb_27_hot@yahoo.co.jp. + + + + Shrestha + Sirish + S + + Center for Creative Leadership, Greensboro, USA. + + + + Akama + Yuka + Y + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Kito + Shusuke + S + + Data Science Course, Juntendo University, Tokyo, Japan. + + + + Takamatsu + Sachiko + S + + Department of Nursing, The Sakakibara Heart Institute of Okayama, Okayama, Japan. + + + + Toki + Misako + M + + Department of Clinical Laboratory, The Sakakibara Heart Institute of Okayama, Okayama, Japan. + + + + Kitai + Takeshi + T + + Department of Cardiovascular Medicine, Kobe City Medical Center General Hospital, Kobe, Japan. + + + Department of Heart Failure, National Cerebral and Cardiovascular Center, Suita, Japan. + + + + Okada + Taiji + T + + Department of Cardiovascular Medicine, Kobe City Medical Center General Hospital, Kobe, Japan. + + + Division of Cardiology, Shimane University Faculty of Medicine, Izumo, Japan. + + + + Murata + Azusa + A + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Kaneko + Tomohiro + T + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Matsue + Yuya + Y + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Miyazaki + Sakiko + S + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Okazaki + Shinya + S + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Minamino + Tohru + T + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + eng + + + 25K19371 + Japan Society for the Promotion of Scienc + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Japan + J Echocardiogr + 101263153 + 1349-0222 + + IM + + Explainable AI + Heart failure + Left ventricular filling pressure + Machine learning + SHAP + +
+ + + + 2025 + 12 + 21 + + + 2026 + 5 + 12 + + + 2026 + 5 + 2 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 11 + 18 + + + aheadofprint + + 42213288 + 10.1007/s12574-026-00738-x + 10.1007/s12574-026-00738-x + + + + GBD 2017 Disease and Injury Incidence and Prevalence Collaborators. Global, regional, and national incidence, prevalence, and years lived with disability for 354 diseases and injuries for 195 countries and territories. Lancet. 2018;392:1789–858. + + + Bozkurt B, Ahmad T, Alexander KM, Baker WL, Bosak K, Breathett K, et al. Heart failure epidemiology and outcomes statistics: a report of the Heart Failure Society of America. J Card Fail. 2023;29:1412–51. + + 10.1016/j.cardfail.2023.07.006 + 37797885 + 10864030 + + + + Shimokawa H, Miura M, Nochioka K, Sakata Y. Heart failure as a general pandemic in Asia. Eur J Heart Fail. 2015;17:884–92. + + 10.1002/ejhf.319 + 26222508 + + + + Savarese G, Becher PM, Lund LH, Seferovic P, Rosano GMC, Coats AJS. Global burden of heart failure: a comprehensive and updated review of epidemiology. Cardiovasc Res. 2023;118:3272–87. + + 10.1093/cvr/cvac013 + 35150240 + + + + Nagueh SF, Smiseth OA, Appleton CP, Byrd BF 3rd, Dokainish H, Edvardsen T, et al. Recommendations for the evaluation of Left ventricular diastolic function by echocardiography: an update from the American Society of Echocardiography and the European Association of Cardiovascular Imaging. J Am Soc Echocardiogr. 2016;29:277–314. + + 10.1016/j.echo.2016.01.011 + 27037982 + + + + Andersen OS, Smiseth OA, Dokainish H, Abudiab MM, Schutt RC, Kumar A, et al. Estimating left ventricular filling pressure by echocardiography. J Am Coll Cardiol. 2017;69:1937–48. + + 10.1016/j.jacc.2017.01.058 + 28408024 + + + + Lancellotti P, Galderisi M, Edvardsen T, Donal E, Goliasch G, Cardim N, et al. Echo-Doppler estimation of left ventricular filling pressure: results of the multicentre EACVI Euro-Filling study. Eur Heart J Cardiovasc Imaging. 2017;18:961–8. + + 10.1093/ehjci/jex067 + 28444160 + + + + Sato K, Grant ADM, Negishi K, Cremer PC, Negishi T, Kumar A, et al. Reliability of updated left ventricular diastolic function recommendations in predicting elevated left ventricular filling pressure and prognosis. Am Heart J. 2017;189:28–39. + + 10.1016/j.ahj.2017.03.022 + 28625379 + + + + Playford D, Strange G, Celermajer DS, Evans G, Scalia GM, Stewart S, et al. Diastolic dysfunction and mortality in 436 360 men and women: the National Echo Database Australia (NEDA). Eur Heart J Cardiovasc Imaging. 2021;22:505–15. + + 10.1093/ehjci/jeaa253 + 33245344 + 8081414 + + + + Kagiyama N, Shrestha S, Farjo PD, Sengupta PP. Artificial intelligence: practical primer for clinical research in cardiovascular disease. J Am Heart Assoc. 2019;8:e012788. + + 10.1161/JAHA.119.012788 + 31450991 + 6755846 + + + + Tamura Y, Nomura A, Kagiyama N, Mizuno A, Node K. Digitalomics, digital intervention, and designing future: the next frontier in cardiology. J Cardiol. 2024;83:318–22. + + 10.1016/j.jjcc.2023.12.002 + 38135148 + + + + Farjo PD, Yanamala N, Kagiyama N, Patel HB, Casaclang-Verzosa G, Nezarat N, et al. Prediction of coronary artery calcium scoring from surface electrocardiogram in atherosclerotic cardiovascular disease: a pilot study. Eur Heart J Digit Health. 2020;1:51–61. + + 10.1093/ehjdh/ztaa008 + 37056293 + 10087019 + + + + Misumi K, Matsue Y, Nogi K, Fujimoto Y, Kagiyama N, Kasai T, et al. Derivation and validation of a machine learning-based risk prediction model in patients with acute heart failure. J Cardiol. 2023;81:531–6. + + 10.1016/j.jjcc.2023.02.006 + 36858175 + + + + Pandey A, Kagiyama N, Yanamala N, Segar MW, Cho JS, Tokodi M, et al. Deep-learning models for the echocardiographic assessment of diastolic dysfunction. JACC Cardiovasc Imaging. 2021;14:1887–900. + + 10.1016/j.jcmg.2021.04.010 + 34023263 + + + + Lancaster MC, Salem Omar AM, Narula S, Kulkarni H, Narula J, Sengupta PP. Phenotypic clustering of left ventricular diastolic function parameters: patterns and prognostic relevance. JACC Cardiovasc Imaging. 2019;12:1149–61. + + 10.1016/j.jcmg.2018.02.005 + 29680357 + + + + Lang RM, Badano LP, Mor-Avi V, Afilalo J, Armstrong A, Ernande L, et al. Recommendations for cardiac chamber quantification by echocardiography in adults: an update from the American Society of Echocardiography and the European Association of Cardiovascular Imaging. J Am Soc Echocardiogr. 2015;28:1-39.e14. + + 10.1016/j.echo.2014.10.003 + 25559473 + + + + Nagueh SF, Sanborn DY, Oh JK, Anderson B, Billick K, Derumeaux G, et al. Recommendations for the evaluation of left ventricular diastolic function by echocardiography and for heart failure with preserved ejection fraction diagnosis: an update from the American Society of Echocardiography. J Am Soc Echocardiogr. 2025;38:537–69. + + 10.1016/j.echo.2025.03.011 + 40617625 + + + + Heidenreich PA, Bozkurt B, Aguilar D, Allen LA, Byun JJ, Colvin MM, et al. 2022 AHA/ACC/HFSA guideline for the management of heart failure: a report of the American College of Cardiology/American Heart Association Joint Committee on clinical practice guidelines. J Am Coll Cardiol. 2022;79:e263–421. + + 10.1016/j.jacc.2021.12.012 + 35379503 + + + + McDonagh TA, Metra M, Adamo M, Gardner RS, Baumbach A, Böhm M, et al. 2021 ESC Guidelines for the diagnosis and treatment of acute and chronic heart failure: developed by the task force for the diagnosis and treatment of acute and chronic heart failure of the European Society of Cardiology (ESC) With the special contribution of the Heart Failure Association (HFA) of the ESC. Eur Heart J. 2021;42:3599–726. + + 10.1093/eurheartj/ehab368 + 34447992 + + + + Forrester JS, Diamond GA, Swan HJ. Correlative classification of clinical and hemodynamic function after acute myocardial infarction. Am J Cardiol. 1977;39:137–45. + + 10.1016/S0002-9149(77)80182-3 + 835473 + + + + Chen T, Guestrin C. XGBoost a scalable tree boosting system. Knowl discovery data Min. 2016. https://doi.org/10.48550/arXiv.1603.02754 + + 10.48550/arXiv.1603.02754 + + + + Lundberg S, Lee S-I. A unified approach to interpreting model predictions. Neural information processing systems. 2017. https://doi.org/10.48550/arXiv.1705.07874 + + + van de Bovenkamp AA, Enait V, de Man FS, Oosterveer FTP, Bogaard HJ, Vonk Noordegraaf A, et al. Validation of the 2016 ASE/EACVI guideline for diastolic dysfunction in patients with unexplained dyspnea and a preserved left ventricular ejection fraction. J Am Heart Assoc. 2021;10:e021165. + + 10.1161/JAHA.121.021165 + 34476984 + 8649534 + + + + Almeida JG, Fontes-Carvalho R, Sampaio F, Ribeiro J, Bettencourt P, Flachskampf FA, et al. Impact of the 2016 ASE/EACVI recommendations on the prevalence of diastolic dysfunction in the general population. Eur Heart J Cardiovasc Imaging. 2018;19:380–6. + + 10.1093/ehjci/jex252 + 29236978 + + + + Luke P, Eggett C, Spyridopoulos I, Irvine T. A comparative analysis of British and American Society of Echocardiography recommendations for the assessment of left ventricular diastolic function. Echo Res Pract. 2018;5:139–47. + + 10.1530/ERP-18-0024 + 30400022 + 6215898 + + + + Kusunose K, Ooka S, Yamada H, Sata M. The 2025 echocardiographic diastolic function algorithm is associated with improved risk stratification in hospitalized patients with heart failure. J Am Soc Echocardiogr. 2026;39:373–84. + + 10.1016/j.echo.2025.12.008 + 41475581 + + + + Harada T, Sorimachi H, Obokata M, Naser JA, Ibe T, Tada A, et al. Echocardiographic diastolic function grading in HFpEF: testing the updated 2025 ASE criteria. J Am Coll Cardiol. 2026;87:1261–75. + + 10.1016/j.jacc.2025.11.024 + 41532943 + + + + Inoue K, Obokata M. Clinical utility of the left atrial strain analysis. J Echocardiogr. 2025;23:145–55. + + 10.1007/s12574-025-00695-x + 40608278 + 12378494 + + + + Luo Y, Wang Z, Wang C. Improvement of APACHE II score system for disease severity based on XGBoost algorithm. BMC Med Inform Decis Mak. 2021;21:237. + + 10.1186/s12911-021-01591-x + 34362354 + 8344327 + + + + Hou N, Li M, He L, Xie B, Wang L, Zhang R, et al. Predicting 30-days mortality for MIMIC-III patients with sepsis-3: a machine learning approach using XGboost. J Transl Med. 2020;18:462. + + 10.1186/s12967-020-02620-5 + 33287854 + 7720497 + + + + Wu TT, Lin XQ, Mu Y, Li H, Guo YS. Machine learning for early prediction of in-hospital cardiac arrest in patients with acute coronary syndromes. Clin Cardiol. 2021;44:349–56. + + 10.1002/clc.23541 + 33586214 + 7943901 + + + + Hirata Y, Tsuji T, Kotoku J, Sata M, Kusunose K. Echocardiographic artificial intelligence for pulmonary hypertension classification. Heart. 2024;110:586–93. + + 10.1136/heartjnl-2023-323320 + 38296266 + + + + Saito Y, Omae Y, Mizobuchi S, Fujito H, Miyagawa M, Kitano D, et al. Prognostic significance of pulmonary arterial wedge pressure estimated by deep learning in acute heart failure. ESC Heart Fail. 2023;10:1103–13. + + 10.1002/ehf2.14282 + 36583242 + + + + Hummel YM, Liu LCY, Lam CSP, Fonseca-Munoz DF, Damman K, Rienstra M, et al. Echocardiographic estimation of left ventricular and pulmonary pressures in patients with heart failure and preserved ejection fraction: a study utilizing simultaneous echocardiography and invasive measurements. Eur J Heart Fail. 2017;19:1651–60. + + 10.1002/ejhf.957 + 28984057 + + + + +
+ + + 42213198 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1573-4951 + + 40 + 1 + + 2026 + May + 29 + + + Journal of computer-aided molecular design + J Comput Aided Mol Des + + Target-aware molecule SMILES generation using a large language model with retrieval-augmented generation, multi-turn memory, and a predictive model. + 134 + 10.1007/s10822-026-00834-1 + + Given the vastness of chemical space and the cost and time requirements of high-throughput screening, resource-efficient computational strategies are needed to prioritize candidate drug molecules. Here, we evaluated whether an open-weight large language model (LLM) augmented with retrieval-augmented generation (RAG), multi-turn memory, and a pretrained drug-target interaction predictor can generate target-aware molecules without task-specific retraining. Protein-ligand-pKi examples retrieved from BindingDB, Davis, and KIBA were used as contextual guidance, while DeepPurpose provided the optimization signal during iterative SMILES refinement. Our approach produced a statistically significant increase in predicted pKi across successive multi-turn memory iterations, indicating that retrieval- and memory-guided refinement may improve target-conditioned molecular generation. The proposed framework also showed favorable molecular generation characteristics, with novelty reaching 100%, diversity up to 0.882, and uniqueness up to 1.0, suggesting that retrieval did not reduce the process to simple reproduction of known ligands but instead supported exploration of new regions of chemical space. In addition, the approach yielded supportive docking results consistent with the generation of chemically relevant candidate ligands. However, the increase in predicted affinity was accompanied by trade-offs in molecular quality, including reduced validity and drug-likeness in later iterations. Taken together, these findings suggest that this framework provides a flexible and comparatively resource-efficient strategy for target-aware de novo molecular design, while further multi-objective optimization and independent validation remain necessary. + © 2026. The Author(s). + + + + Karabowicz + Piotr + P + 0000-0002-8072-2104 + + Department of Clinical Molecular Biology, Medical University of Bialystok, 15-269, Bialystok, Poland. piotr.karabowicz@umb.edu.pl. + + + + Charkiewicz + Radosław + R + + Department of Clinical Molecular Biology, Medical University of Bialystok, 15-269, Bialystok, Poland. + + + Center of Experimental Medicine, Medical University of Bialystok, 15-369, Bialystok, Poland. + + + + Charkiewicz + Alicja + A + + Department of Analysis and Bioanalysis of Medicines, Medical University of Bialystok, 15-089, Bialystok, Poland. + + + + Nikliński + Jacek + J + + Department of Clinical Molecular Biology, Medical University of Bialystok, 15-269, Bialystok, Poland. + + + + eng + + + B.SUB.26.512 + Uniwersytet Medyczny w Bialymstoku + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + J Comput Aided Mol Des + 8710425 + 0920-654X + + + + 0 + Ligands + + + 0 + Proteins + + + 0 + Small Molecule Libraries + + + IM + + + Large Language Models + + + Ligands + + + Proteins + chemistry + + + Drug Discovery + methods + + + Small Molecule Libraries + chemistry + + + Drug Design + + + Humans + + + + Drug discovery + Large language models + Multi-turn memory + Retrieval-augmented generation + SMILES generation + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 8 + + + 2026 + 5 + 9 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 11 + 15 + + + epublish + + 42213198 + 10.1007/s10822-026-00834-1 + 10.1007/s10822-026-00834-1 + + + + Skinnider MA (2024) Invalid SMILES are beneficial rather than detrimental to chemical language models. Nat Mach Intell 6:437–448. https://doi.org/10.1038/s42256-024-00821-x + + 10.1038/s42256-024-00821-x + + + + Zheng Y, Koh HY, Ju J et al (2025) Large language models for drug discovery and development. Patterns 6:101346. https://doi.org/10.1016/j.patter.2025.101346 + + 10.1016/j.patter.2025.101346 + 41142906 + 12546459 + + + + Mienye ID, Jere N, Obaido G et al (2025) Large language models: an overview of foundational architectures, recent trends, and a new taxonomy. Discov Appl Sci 7:1027. https://doi.org/10.1007/s42452-025-07668-w + + 10.1007/s42452-025-07668-w + + + + Umer MS, Nabeel M, Athar U et al (2025) Large language models meet molecules: a systematic review of advances and challenges in AI-driven cheminformatics. Arch Computat Methods Eng. https://doi.org/10.1007/s11831-025-10437-y + + 10.1007/s11831-025-10437-y + + + + Bagal V, Aggarwal R, Vinod PK, Priyakumar UD (2022) MolGPT: molecular generation using a transformer-decoder model. J Chem Inf Model 62:2064–2076. https://doi.org/10.1021/acs.jcim.1c00600 + + 10.1021/acs.jcim.1c00600 + 34694798 + + + + Sheikholeslami M, Mazrouei N, Gheisari Y et al (2025) DrugGen enhances drug discovery with large language models and reinforcement learning. Sci Rep 15:13445. https://doi.org/10.1038/s41598-025-98629-1 + + 10.1038/s41598-025-98629-1 + 40251288 + 12008224 + + + + Song B, Li X, Chao X et al (2025) Advancements in large language models ( LLMS ): empowering drug discovery. WIREs Comput Mol Sci 15:e70054. https://doi.org/10.1002/wcms.70054 + + 10.1002/wcms.70054 + + + + Ma J, Liu J, Xu D et al (2025) Application and prospects of large language models in small-molecule drug discovery. Anal Chem 97:27453–27477. https://doi.org/10.1021/acs.analchem.5c04083 + + 10.1021/acs.analchem.5c04083 + 41366732 + 12750412 + + + + Öztürk H, Özgür A, Ozkirimli E (2018) DeepDTA: deep drug–target binding affinity prediction. Bioinformatics 34:i821–i829. https://doi.org/10.1093/bioinformatics/bty593 + + 10.1093/bioinformatics/bty593 + 30423097 + 6129291 + + + + Mswahili ME, Jeong Y-S (2024) Transformer-based models for chemical SMILES representation: a comprehensive literature review. Heliyon 10:e39038. https://doi.org/10.1016/j.heliyon.2024.e39038 + + 10.1016/j.heliyon.2024.e39038 + 39640612 + 11620068 + + + + Gao Y, Xiong Y, Gao X, et al (2023) Retrieval-augmented generation for large language models: a survey + + + Zhang P, Peng X, Han R et al (2025) Rag2Mol: structure-based drug design based on retrieval augmented generation. Briefings Bioinform 26:bbaf265. https://doi.org/10.1093/bib/bbaf265 + + 10.1093/bib/bbaf265 + + + + Hu Y, Wang Y, McAuley J (2025) Evaluating memory in LLM agents via incremental multi-turn interactions + + + OpenAI, Agarwal S, Ahmad L, et al (2025) gpt-oss-120b &amp; gpt-oss-20b Model Card + + + Grattafiori A, Dubey A, Jauhri A, et al (2024) The Llama 3 Herd of Models + + + Liu T, Hwang L, Burley SK et al (2025) BindingDB in 2024: a FAIR knowledgebase of protein-small molecule binding data. Nucleic Acids Res 53:D1633–D1644. https://doi.org/10.1093/nar/gkae1075 + + 10.1093/nar/gkae1075 + 39574417 + 11701568 + + + + Huang K, Fu T, Glass LM et al (2021) DeepPurpose: a deep learning library for drug–target interaction prediction. Bioinformatics 36:5545–5547. https://doi.org/10.1093/bioinformatics/btaa1005 + + 10.1093/bioinformatics/btaa1005 + 33275143 + 8016467 + + + + Eberhardt J, Santos-Martins D, Tillack AF, Forli S (2021) AutoDock Vina 1.2.0: new docking methods, expanded force field, and Python bindings. J Chem Inf Model 61:3891–3898. https://doi.org/10.1021/acs.jcim.1c00203 + + 10.1021/acs.jcim.1c00203 + 34278794 + 10683950 + + + + Fleming J, Magana P, Nair S et al (2025) AlphaFold Protein Structure Database and 3D-Beacons: new data and capabilities. J Mol Biol 437:168967. https://doi.org/10.1016/j.jmb.2025.168967 + + 10.1016/j.jmb.2025.168967 + 40133787 + + + + Laban P, Hayashi H, Zhou Y, Neville J (2025) LLMs Get Lost In Multi-Turn Conversation + + + +
+ + + 42213197 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1438-7948 + + 26 + 1 + + 2026 + May + 29 + + + Functional & integrative genomics + Funct Integr Genomics + + An integrated computational-experimental approach identifies Malate Synthase G as therapeutic target to disrupt carbon metabolism in chronic Pseudomonas aeruginosa infection. + 116 + 10.1007/s10142-026-01889-x + + Pseudomonas aeruginosa is a leading cause of nosocomial infections, particularly in individuals with a compromised immune system. Due to its strong adaptive ability, P. aeruginosa tends to develop antibiotic resistance and establish chronic infection, making its eradication through traditional antibiotics challenging. Thus, the development of novel therapeutic targets and corresponding inhibitors is urgently required. We conducted bioinformatics analyses of gene-chip datasets (GSE10362, GSE21966) of P. aeruginosa from patients with cystic fibrosis (CF) in the Gene Expression Omnibus (GEO) database, ranging from early to late stages of infection. Differentially expressed gene (DEG) analysis, Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment, and Weighted Gene Co-expression Network Analysis (WGCNA) were performed to identify key functional DEGs. Among these genes, candidate genes were refined using three machine learning algorithms: LASSO regression, random forest (RF), and support vector machine (SVM). Using this integrated approach and published reports, target gene was identified consequently. With reported inhibitors, a structure-based virtual screening model against the target protein was established to screen inhibitors from an FDA-approved drug library. Screened hits were experimentally validated through in vitro MIC and checkerboard broth microdilution assays to determine their antibacterial activity and the synergistic effect of tobramycin (TOB) and amikacin (AMK). Enzyme activity was measured to evaluate target protein inhibition. Transcriptome sequencing analysis was performed to explain the effect of target inhibition and reveal the possible mechanism of inhibition. We identified 210 upregulated genes in the late stage of infection. KEGG functional enrichment demonstrated that the up-regulated genes were mainly enriched in metabolic pathways. Eight metabolism-related key DEGs were obtained by the intersection of genes from metabolic pathways and genes from the key module of WGCNA. Machine learning algorithms (LASSO, RF, and SVM) and literature investigation results identified glcB, which encodes malate synthase G (MS), as a therapeutic target for developing inhibitors. In virtual screening, we formulated four rules for a screening model based on the docking results, and finally identified three FDA-approved drugs prednisolone, dienogest and carbinoxamine maleate salt (CAR) as candidates. In vitro MIC assay and checkerboard assay suggested that CAR had an antibacterial effect with a concentration-dependent trend and could enhance the effect of tobramycin and amikacin. Consistent with MIC assay, the inhibition rate in MS activity assay showed a concentration-dependent trend. Transcriptome sequencing analysis showed that carbon metabolism was remodeled when MS was inhibited, thus impairing the growth of P. aeruginosa, and the synergistic effect with TOB and AMK may be explained by the impaired ability to combat oxidative stress. This study identified and validated drug target glcB (encodes MS) and potential inhibitor CAR in treating chronic P. aeruginosa infection based on an integrated method of bioinformatics, virtual screening, and in vitro experiments. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Chen + Geping + G + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. + + + + Tan + Qiutong + Q + + College of Pharmacy, Jinan University, Guangzhou, 510632, China. + + + + Zhou + Haochuan + H + + College of Pharmacy, Jinan University, Guangzhou, 510632, China. + + + + Wang + Rui + R + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. + + + + Mo + Jingyi + J + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. + + + + Xu + Jun + J + + College of Pharmacy, Jinan University, Guangzhou, 510632, China. xujun@jnu.edu.cn. + + + + Chen + Wenying + W + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. chenwenying2016@163.com. + + + + eng + + + CPA: 2023ZYS09 + Guangdong Pharmaceutical Association + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Funct Integr Genomics + 100939343 + 1438-793X + + + + EC 2.3.3.9 + Malate Synthase + + + 0 + Anti-Bacterial Agents + + + 7440-44-0 + Carbon + + + 0 + Bacterial Proteins + + + IM + + + Pseudomonas aeruginosa + drug effects + genetics + pathogenicity + metabolism + + + Humans + + + Malate Synthase + antagonists & inhibitors + genetics + metabolism + chemistry + + + Pseudomonas Infections + drug therapy + genetics + microbiology + metabolism + + + Anti-Bacterial Agents + pharmacology + + + Carbon + metabolism + + + Bacterial Proteins + genetics + metabolism + antagonists & inhibitors + + + Cystic Fibrosis + microbiology + + + Computational Biology + + + Molecular Docking Simulation + + + + Pseudomonas aeruginosa + Bioinformatics + Carbon metabolism + Malate synthase + Virtual screening + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 11 + + + 2026 + 5 + 18 + + + 2026 + 4 + 29 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 44 + + + 2026 + 5 + 29 + 11 + 15 + + + epublish + + 42213197 + 10.1007/s10142-026-01889-x + 10.1007/s10142-026-01889-x + + + + Ahn S, Jung J, Jang I-A et al (2016) Role of Glyoxylate Shunt in Oxidative Stress Response. J Biol Chem 291:11928–11938. https://doi.org/10.1074/jbc.M115.708149 + + 10.1074/jbc.M115.708149 + 27036942 + 4882458 + + + + Allison KR, Brynildsen MP, Collins JJ (2011) Metabolite-enabled eradication of bacterial persisters by aminoglycosides. Nature 473:216–220. https://doi.org/10.1038/nature10069 + + 10.1038/nature10069 + 21562562 + 3145328 + + + + Baldelli V, Carrasco Aliaga SJ, Colque CA et al (2026) The Pseudomonas aeruginosa sirB2 gene is a fitness determinant of anaerobic growth and its inactivation affects virulence and rugose small colony variants emergence. Virulence 17:2605800. https://doi.org/10.1080/21505594.2025.2605800 + + 10.1080/21505594.2025.2605800 + 41408422 + + + + Chen H, Malengo G, Wang L et al (2025) Coordination of virulence factors and lifestyle transition in Pseudomonas aeruginosa through single-cell analysis. Commun Biol 8:1236. https://doi.org/10.1038/s42003-025-08693-6 + + 10.1038/s42003-025-08693-6 + 40819180 + 12357884 + + + + Clinical and Laboratory Standards Institute (2018) Methods for dilution antimicrobial susceptibility tests for bacteria That grow aerobically (M07). Wayne, PA + + + Diaz MR, King JM, Yahr TL (2011) Intrinsic and Extrinsic Regulation of Type III Secretion Gene Expression in Pseudomonas Aeruginosa. Front Microbiol 2:89. https://doi.org/10.3389/fmicb.2011.00089 + + 10.3389/fmicb.2011.00089 + 21833328 + 3153048 + + + + Díaz-Pérez AL, Román-Doval C, Díaz-Pérez C et al (2007) Identification of the aceA gene encoding isocitrate lyase required for the growth of Pseudomonas aeruginosa on acetate, acyclic terpenes and leucine. FEMS Microbiol Lett 269:309–316. https://doi.org/10.1111/j.1574-6968.2007.00654.x + + 10.1111/j.1574-6968.2007.00654.x + 17319879 + + + + Dolan SK, Welch M (2018) The Glyoxylate Shunt, 60 Years On. Annu Rev Microbiol 72:309–330. https://doi.org/10.1146/annurev-micro-090817-062257 + + 10.1146/annurev-micro-090817-062257 + 30200852 + + + + Dolan SK, Kohlstedt M, Trigg S et al (2020) Contextual Flexibility in Pseudomonas aeruginosa Central Carbon Metabolism during Growth in Single Carbon Sources. mBio 11:e02684–e02619. https://doi.org/10.1128/mBio.02684-19 + + 10.1128/mBio.02684-19 + 32184246 + 7078475 + + + + Dunn MF, Ramírez-Trujillo JA, Hernández-Lucas I (2009) Major roles of isocitrate lyase and malate synthase in bacterial and fungal pathogenesis. Microbiol Read Engl 155:3166–3175. https://doi.org/10.1099/mic.0.030858-0 + + 10.1099/mic.0.030858-0 + + + + Fahnoe KC, Flanagan ME, Gibson G et al (2012) Non-traditional antibacterial screening approaches for the identification of novel inhibitors of the glyoxylate shunt in gram-negative pathogens. PLoS ONE 7:e51732. https://doi.org/10.1371/journal.pone.0051732 + + 10.1371/journal.pone.0051732 + 23240059 + 3519852 + + + + Fan Q, Wang H, Yuan S et al (2025) Pyruvate formate lyase regulates fermentation metabolism and virulence of Streptococcus suis. Virulence 16:2467156. https://doi.org/10.1080/21505594.2025.2467156 + + 10.1080/21505594.2025.2467156 + 39977342 + 11845055 + + + + Flynn JM, Niccum D, Dunitz JM, Hunter RC (2016) Evidence and Role for Bacterial Mucin Degradation in Cystic Fibrosis Airway Disease. PLoS Pathog 12:e1005846. https://doi.org/10.1371/journal.ppat.1005846 + + 10.1371/journal.ppat.1005846 + 27548479 + 4993466 + + + + Harrington NE, Kottara A, Cagney K et al (2024) Global genomic diversity of Pseudomonas aeruginosa in bronchiectasis. J Infect 89:106275. https://doi.org/10.1016/j.jinf.2024.106275 + + 10.1016/j.jinf.2024.106275 + 39293722 + 7618805 + + + + Hoboth C, Hoffmann R, Eichner A et al (2009) Dynamics of adaptive microevolution of hypermutable Pseudomonas aeruginosa during chronic pulmonary infection in patients with cystic fibrosis. J Infect Dis 200:118–130. https://doi.org/10.1086/599360 + + 10.1086/599360 + 19459782 + + + + Hogardt M, Heesemann J (2010) Adaptation of Pseudomonas aeruginosa during persistence in the cystic fibrosis lung. Int J Med Microbiol IJMM 300:557–562. https://doi.org/10.1016/j.ijmm.2010.08.008 + + 10.1016/j.ijmm.2010.08.008 + 20943439 + + + + Kohanski MA, Dwyer DJ, Hayete B et al (2007) A common mechanism of cellular death induced by bactericidal antibiotics. Cell 130:797–810. https://doi.org/10.1016/j.cell.2007.06.049 + + 10.1016/j.cell.2007.06.049 + 17803904 + + + + Kornberg HL, Krebs HA (1957) Synthesis of cell constituents from C2-units by a modified tricarboxylic acid cycle. Nature 179:988–991. https://doi.org/10.1038/179988a0 + + 10.1038/179988a0 + 13430766 + + + + La Rosa R, Johansen HK, Molin S (2019) Adapting to the Airways: Metabolic Requirements of Pseudomonas aeruginosa during the Infection of Cystic Fibrosis Patients. Metabolites 9:234. https://doi.org/10.3390/metabo9100234 + + 10.3390/metabo9100234 + 31623245 + 6835255 + + + + La Rosa R, Johansen HK, Molin S (2022) Persistent Bacterial Infections, Antibiotic Treatment Failure, and Microbial Adaptive Evolution. Antibiotics 11:419. https://doi.org/10.3390/antibiotics11030419 + + 10.3390/antibiotics11030419 + 35326882 + 8944626 + + + + La Rosa R, Molin S, Johansen HK (2025) Pseudomonas aeruginosa: persistence beyond antibiotic resistance. Trends Microbiol 33:1076–1084. https://doi.org/10.1016/j.tim.2025.05.004 + + 10.1016/j.tim.2025.05.004 + 40441928 + + + + Langton Hewer SC, Smyth AR (2009) Antibiotic strategies for eradicating Pseudomonas aeruginosa in people with cystic fibrosis. Cochrane Database Syst Rev CD004197. https://doi.org/10.1002/14651858.CD004197.pub3 + + 10.1002/14651858.CD004197.pub3 + + + + Langton Hewer SC, Smith S, Rowbotham NJ et al (2023) Antibiotic strategies for eradicating Pseudomonas aeruginosa in people with cystic fibrosis. Cochrane Database Syst Rev 6:CD004197. https://doi.org/10.1002/14651858.CD004197.pub6 + + 10.1002/14651858.CD004197.pub6 + 37268599 + 10237531 + + + + Laverty G, Gorman SP, Gilmore BF (2014) Biomolecular Mechanisms of Pseudomonas aeruginosa and Escherichia coli Biofilm Formation. Pathogens 3:596–632. https://doi.org/10.3390/pathogens3030596 + + 10.3390/pathogens3030596 + 25438014 + 4243431 + + + + Letizia M, Diggle SP, Whiteley M (2025) Pseudomonas aeruginosa: ecology, evolution, pathogenesis and antimicrobial susceptibility. Nat Rev Microbiol 23:701–717. https://doi.org/10.1038/s41579-025-01193-8 + + 10.1038/s41579-025-01193-8 + 40442328 + 13064840 + + + + Linzner N, Loi VV, Antelmann H (2022) The Catalase KatA Contributes to Microaerophilic H2O2 Priming to Acquire an Improved Oxidative Stress Resistance in Staphylococcus aureus. Antioxidants 11:1793. https://doi.org/10.3390/antiox11091793 + + 10.3390/antiox11091793 + 36139867 + 9495333 + + + + Lopatkin AJ, Bening SC, Manson AL et al (2021) Clinically relevant mutations in core metabolic genes confer antibiotic resistance. Science 371:eaba0862. https://doi.org/10.1126/science.aba0862 + + 10.1126/science.aba0862 + 33602825 + 8285040 + + + + Mall MA, Burgel P-R, Castellani C et al (2024) Cystic fibrosis. Nat Rev Dis Primer 10:53. https://doi.org/10.1038/s41572-024-00538-6 + + 10.1038/s41572-024-00538-6 + + + + Maloy SR, Bohlander M, Nunn WD (1980) Elevated levels of glyoxylate shunt enzymes in Escherichia coli strains constitutive for fatty acid degradation. J Bacteriol 143:720–725. https://doi.org/10.1128/jb.143.2.720-725.1980 + + 10.1128/jb.143.2.720-725.1980 + 7009561 + 294349 + + + + McVey AC, Medarametla P, Chee X et al (2017) Structural and Functional Characterization of Malate Synthase G from Opportunistic Pathogen Pseudomonas aeruginosa. Biochemistry 56:5539–5549. https://doi.org/10.1021/acs.biochem.7b00852 + + 10.1021/acs.biochem.7b00852 + 28985053 + + + + McVey AC, Bartlett S, Kajbaf M et al (2020) 2-Aminopyridine Analogs Inhibit Both Enzymes of the Glyoxylate Shunt in Pseudomonas aeruginosa. Int J Mol Sci 21:2490. https://doi.org/10.3390/ijms21072490 + + 10.3390/ijms21072490 + 32260167 + 7177833 + + + + Meylan S, Porter CBM, Yang JH et al (2017) Carbon Sources Tune Antibiotic Susceptibility in Pseudomonas aeruginosa via Tricarboxylic Acid Cycle Control. Cell Chem Biol 24:195–206. https://doi.org/10.1016/j.chembiol.2016.12.015 + + 10.1016/j.chembiol.2016.12.015 + 28111098 + 5426816 + + + + Moradali MF, Ghods S, Rehm BHA (2017) Pseudomonas aeruginosa Lifestyle: A Paradigm for Adaptation, Survival, and Persistence. Front Cell Infect Microbiol 7:39. https://doi.org/10.3389/fcimb.2017.00039 + + 10.3389/fcimb.2017.00039 + 28261568 + 5310132 + + + + National Institute of Diabetes and Digestive and Kidney Diseases (2012) LiverTox: Clinical and research information on drug-induced liver injury. Bethesda, MD + + + Negi A, Sharma R (2024) The significance of persisters in tuberculosis drug discovery: Exploring the potential of targeting the glyoxylate shunt pathway. Eur J Med Chem 265:116058. https://doi.org/10.1016/j.ejmech.2023.116058 + + 10.1016/j.ejmech.2023.116058 + 38128237 + + + + Pang Z, Raudonis R, Glick BR et al (2019) Antibiotic resistance in Pseudomonas aeruginosa: mechanisms and alternative therapeutic strategies. Biotechnol Adv 37:177–192. https://doi.org/10.1016/j.biotechadv.2018.11.013 + + 10.1016/j.biotechadv.2018.11.013 + 30500353 + + + + Parkins MD, Somayaji R, Waters VJ (2018) Epidemiology, Biology, and Impact of Clonal Pseudomonas aeruginosa Infections in Cystic Fibrosis. Clin Microbiol Rev 31:e00019–e00018. https://doi.org/10.1128/CMR.00019-18 + + 10.1128/CMR.00019-18 + 30158299 + 6148191 + + + + Prayle A, Watson A, Fortnum H, Smyth A (2010) Side effects of aminoglycosides on the kidney, ear and balance in cystic fibrosis. Thorax 65:654–658. https://doi.org/10.1136/thx.2009.131532 + + 10.1136/thx.2009.131532 + 20627927 + 2921289 + + + + Puckett S, Trujillo C, Wang Z et al (2017) Glyoxylate detoxification is an essential function of malate synthase required for carbon assimilation in Mycobacterium tuberculosis. Proc Natl Acad Sci U S A 114:E2225–E2232. https://doi.org/10.1073/pnas.1617655114 + + 10.1073/pnas.1617655114 + 28265055 + 5358392 + + + + Reynolds D, Kollef M (2021) The Epidemiology and Pathogenesis and Treatment of Pseudomonas aeruginosa Infections: An Update. Drugs 81:2117. https://doi.org/10.1007/s40265-021-01635-6 + + 10.1007/s40265-021-01635-6 + 34743315 + 8572145 + + + + Sauvage S, Gaviard C, Tahrioui A et al (2022) Impact of Carbon Source Supplementations on Pseudomonas aeruginosa Physiology. J Proteome Res 21:1392–1407. https://doi.org/10.1021/acs.jproteome.1c00936 + + 10.1021/acs.jproteome.1c00936 + 35482949 + + + + Singh J, Solomon M, Iredell J, Selvadurai H (2025) Overcoming Pseudomonas aeruginosa in Chronic Suppurative Lung Disease: Prevalence, Treatment Challenges, and the Promise of Bacteriophage Therapy. Antibiot Basel Switz 14:427. https://doi.org/10.3390/antibiotics14050427 + + 10.3390/antibiotics14050427 + + + + Souche A, Vandenesch F, Doléans-Jordheim A, Moreau K (2023) How Staphylococcus aureus and Pseudomonas aeruginosa Hijack the Host Immune Response in the Context of Cystic Fibrosis. Int J Mol Sci 24:6609. https://doi.org/10.3390/ijms24076609 + + 10.3390/ijms24076609 + 37047579 + 10094765 + + + + Stefani S, Campana S, Cariani L et al (2017) Relevance of multidrug-resistant Pseudomonas aeruginosa infections in cystic fibrosis. Int J Med Microbiol IJMM 307:353–362. https://doi.org/10.1016/j.ijmm.2017.07.004 + + 10.1016/j.ijmm.2017.07.004 + 28754426 + + + + Stokes JM, Lopatkin AJ, Lobritz MA, Collins JJ (2019) Bacterial Metabolism and Antibiotic Efficacy. Cell Metab 30:251–259. https://doi.org/10.1016/j.cmet.2019.06.009 + + 10.1016/j.cmet.2019.06.009 + 31279676 + 6990394 + + + + Su S, Panmanee W, Wilson JJ et al (2014) Catalase (KatA) plays a role in protection against anaerobic nitric oxide in Pseudomonas aeruginosa. PLoS ONE 9:e91813. https://doi.org/10.1371/journal.pone.0091813 + + 10.1371/journal.pone.0091813 + 24663218 + 3963858 + + + + Su Y, Peng B, Han Y et al (2015) Fructose restores susceptibility of multidrug-resistant Edwardsiella tarda to kanamycin. J Proteome Res 14:1612–1620. https://doi.org/10.1021/pr501285f + + 10.1021/pr501285f + 25675328 + + + + Sun Z, Kang Y, Norris MH et al (2014) Blocking phosphatidylcholine utilization in Pseudomonas aeruginosa, via mutagenesis of fatty acid, glycerol and choline degradation pathways, confirms the importance of this nutrient source in vivo. PLoS ONE 9:e103778. https://doi.org/10.1371/journal.pone.0103778 + + 10.1371/journal.pone.0103778 + 25068317 + 4113454 + + + + Terry JM, Piña SE, Mattingly SJ (1992) Role of energy metabolism in conversion of nonmucoid Pseudomonas aeruginosa to the mucoid phenotype. Infect Immun 60:1329–1335. https://doi.org/10.1128/iai.60.4.1329-1335.1992 + + 10.1128/iai.60.4.1329-1335.1992 + 1372292 + 257000 + + + + Wang Y, Wang Z, Chen W et al (2024) A KDPG sensor RccR governs Pseudomonas aeruginosa carbon metabolism and aminoglycoside antibiotic tolerance. Nucleic Acids Res 52:967–976. https://doi.org/10.1093/nar/gkad1201 + + 10.1093/nar/gkad1201 + 38096062 + 10810197 + + + + Xia Y, Wang D, Pan X et al (2020) TpiA is a Key Metabolic Enzyme That Affects Virulence and Resistance to Aminoglycoside Antibiotics through CrcZ in Pseudomonas aeruginosa. mBio 11:e02079–e02019. https://doi.org/10.1128/mBio.02079-19 + + 10.1128/mBio.02079-19 + 31911486 + 6946797 + + + + Yang H, Zhou Y, Luo Q et al (2023) L-leucine increases the sensitivity of drug-resistant Salmonella to sarafloxacin by stimulating central carbon metabolism and increasing intracellular reactive oxygen species level. Front Microbiol 14:1186841. https://doi.org/10.3389/fmicb.2023.1186841 + + 10.3389/fmicb.2023.1186841 + 37250042 + 10213264 + + + + Yang J, Xu J-F, Liang S (2025) Antibiotic resistance in Pseudomonas aeruginosa: mechanisms and emerging treatment. Crit Rev Microbiol 51:841–859. https://doi.org/10.1080/1040841X.2024.2429599 + + 10.1080/1040841X.2024.2429599 + 39556143 + + + + +
+ + + 42213195 + + 2026 + 05 + 29 + +
+ + 1432-0584 + + + 2026 + May + 29 + + + Annals of hematology + Ann Hematol + + A macrophage-related efferocytosis-based two-gene prognostic model for acute myeloid leukemia identified by multi-omics and machine learning. + 10.1007/s00277-026-07044-7 + + Background Acute myeloid leukemia (AML) remains a lethal hematologic malignancy with high heterogeneity. Macrophage-mediated efferocytosis in the tumor microenvironment is implicated in immune suppression and disease progression. Methods We integrated single-cell and bulk transcriptomic data from public cohorts to identify genes associated with macrophages and efferocytosis in AML. Candidate genes were screened for prognosis using univariate Cox regression. A comprehensive machine learning framework, evaluating 117 algorithm combinations, was employed to construct a robust prognostic model. The optimal LASSO and random survival forest approach identified CD52 and S100A4 as core prognostic genes. The resulting two-gene model was rigorously validated using Kaplan-Meier analysis, time-dependent ROC curves, and calibration plots across multiple independent cohorts. The associations of the risk score with the immune microenvironment and drug sensitivity were further analyzed. SHapley Additive exPlanations (SHAP) analysis was applied to interpret the model's decision-making. Results The two-gene signature demonstrated stable and powerful predictive performance for overall survival in both training and external validation sets. The risk score was an independent prognostic factor and showed significant correlations with immune cell infiltration patterns and response to chemotherapeutic agents. SHAP analysis confirmed the consistent and biologically plausible contributions of CD52 and S100A4. Single-cell resolution analysis revealed their specific enrichment in distinct AML-associated macrophage subpopulations. Conclusions We developed a novel macrophage efferocytosis-based prognostic model using a multi-omics and machine learning approach. This model provides valuable insights into the immune microenvironment of AML and offers a potential tool for risk stratification and therapeutic guidance. + © 2026. The Author(s). + + + + Li + Xiaoning + X + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. + + + + Zhang + Yujie + Y + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. + + + + Wei + Xiaoying + X + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. + + + + Huang + Rui + R + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. rachelchn@163.com. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. rachelchn@163.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Ann Hematol + 9107334 + 0939-5555 + + IM + + Acute myeloid leukemia + Biomarkers + Efferocytosis + Machine learning + Prognostic model + + Declarations. Consent for publication: All authors have read and approved the final version of the manuscript and agree to the publication of this research in the journal. Ethics and consent to participate declarations: Not applicable.  Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 12 + 2 + + + 2026 + 4 + 26 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 11 + 15 + + + aheadofprint + + 42213195 + 10.1007/s00277-026-07044-7 + 10.1007/s00277-026-07044-7 + + +
+ + + 42213145 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2561-326X + + 10 + + 2026 + May + 29 + + + JMIR formative research + JMIR Form Res + + Machine Learning-Based Prediction Model for 30-Day Emergency Department Revisits in a Medically Underserved Tertiary Hospital: Formative Retrospective Cohort Study. + + e87289 + e87289 + + 10.2196/87289 + + Emergency department (ED) revisits are critical quality indicators, particularly in medically underserved areas, where traditional prediction tools show limited performance. Machine learning (ML) approaches may offer improved predictive performance for identifying high-risk patients. + This formative study aimed to develop and validate an ML-based model for predicting 30-day ED revisits using electronic health records from a tertiary hospital serving a medically underserved area in South Korea and to evaluate its clinical utility through interpretability analysis and risk stratification. + This retrospective cohort study analyzed 36,230 adult patients visiting the Gangneung Asan Hospital ED in 2023. We developed and compared 3 ML models (extreme gradient boosting [XGBoost], random forest, and ElasticNet) using electronic health records. Model interpretability was ensured through Shapley additive explanations (SHAP) analysis, and clinical utility was evaluated through 5-tier risk stratification. + Among 36,230 patients, 798 (2.2%) revisited within 30 days. XGBoost achieved superior performance with an area under the receiver operating characteristic curve of 0.90 (95% CI 0.88-0.92), a sensitivity of 0.94, and a specificity of 0.69. The SHAP analysis identified ED length of stay, oxygen saturation, systolic blood pressure, computed tomography performance, antibiotic use, and liver disease as key predictors. Risk stratification demonstrated a 25-fold difference in the actual revisit rates between the lowest (152/8450, 1.8%) and the highest (686/1500, 45.7%) risk groups. + The XGBoost model demonstrated excellent predictive performance with high interpretability for 30-day ED revisit predictions. The implementation of this model could enable risk-stratified interventions and more efficient resource allocation in medically underserved settings, potentially reducing unnecessary revisits and improving patient outcomes. This formative study establishes feasibility and provides a foundation for future multicenter validation studies in similar medically underserved settings. + © Kyongmin Sun. Originally published in JMIR Formative Research (https://formative.jmir.org). + + + + Sun + Kyongmin + K + 0000-0002-2977-0880 + + Department of Emergency Medicine, College of Medicine, Gangneung Asan Hospital, Gangneung, Gangwon-do, Republic of Korea. + + + Department of Health Administration, Graduate School, Yonsei University Mirae Campus, 1 Yonsedae-gil, Heungeop-myeon, Wonju, Gangwon-do, 26493, Republic of Korea, 82 337602418. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Form Res + 101726394 + 2561-326X + + IM + + + Retrospective Studies + + + Humans + + + Tertiary Care Centers + statistics & numerical data + organization & administration + + + Emergency Room Visits + statistics & numerical data + + + Emergency Service, Hospital + statistics & numerical data + organization & administration + + + Machine Learning + + + Republic of Korea + + + Medically Underserved Area + + + Female + + + Predictive Learning Models + + + Male + + + Middle Aged + + + Adult + + + Aged + + + Boosting Machine Learning Algorithms + + + Cohort Studies + + + + SHAP + Shapley additive explanations + XGBoost + emergency department + extreme gradient boosting + machine learning + medically underserved area + prediction model + revisit + +
+ + + + 2025 + 11 + 6 + + + 2026 + 4 + 9 + + + 2026 + 4 + 28 + + + 2026 + 5 + 29 + 15 + 43 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 11 + 13 + + + epublish + + 42213145 + 10.2196/87289 + v10i1e87289 + + +
+ + + 42213103 + + 2026 + 05 + 29 + +
+ + 1432-5241 + + + 2026 + May + 29 + + + Aesthetic plastic surgery + Aesthetic Plast Surg + + Does Patient History Influence Capsular Contracture? An Exploratory Analysis with Machine Learning. + 10.1007/s00266-026-05919-8 + + Capsular contracture (CC) is a frequent and distressing complication of breast augmentation and reconstruction. Although numerous patient-, surgical-, and implant-related risk factors have been proposed, reliable population-level predictors remain inconsistent across studies. This study evaluates whether administrative medical history, as encoded by ICD and CPT codes, contains sufficient predictive signal to identify patients at risk for CC using machine learning. + Patients were queried from the MerativeTM MarketScan® Research Databases from 2003 to 2017 with CPT codes for implant-based breast reconstruction and augmentation. ICD codes were then used to identify all events and conditions of a patient's history. Hyperparameter-tuned random forest models were combined with multivariable logistic regression models to validate risk factors for the development of CC. + A total of 112,489 patients were included, and the rate of capsular contracture was 9.55%. In total, 4,825 common conditions and procedures were included as features in the model. The random forest's error rate was 9.54%. Prior CC was the most important variable in the model. When removed, model accuracy decreased by 0.0011% (p <0.001). Removing prior irradiation as a feature decreased model accuracy by 0.00014% (p < 0.001). In line with the previous literature, prior CC (OR = 2.47, p <0.001) and irradiation (OR = 1.16, p <0.001) were significantly associated with CC development in a multivariable logistic regression model. + Administrative medical history alone demonstrated limited predictive utility for CC development. Although established associations such as prior CC and irradiation were confirmed, their incremental contribution to predictive performance was negligible. These associations do not meaningfully enhance a clinician's ability to reliably predict which patients are at increased risk for CC. + This journal requires that authors assign a level of evidence to each article. For a full description of these Evidence-Based Medicine ratings, please refer to the Table of Contents or the online Instructions to Authors www.springer.com/00266 . + © 2026. The Author(s). + + + + Johnstone + Thomas M + TM + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. + + + + Najafali + Daniel + D + 0000-0003-1509-9229 + + Carle Illinois College of Medicine, University of Illinois Urbana-Champaign, Urbana, IL, USA. danieln6@illinois.edu. + + + + Shah + Jennifer K + JK + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. + + + + Camacho + Justin M + JM + + Drexel University College of Medicine, Philadelphia, PA, USA. + + + + Johnstone + Chancellor + C + + Air Force Institute of Technology, Wright-Patterson AFB, Dayton, OH, USA. + + + + Nazerali + Rahim S + RS + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. + + + + Lee + Gordon K + GK + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. gordokl1@hs.uci.edu. + + + Department of Plastic Surgery, University of California, Irvine, Orange, CA, USA. gordokl1@hs.uci.edu. + + + + eng + + + UL1TR003142 + TR + NCATS NIH HHS + United States + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Aesthetic Plast Surg + 7701756 + 0364-216X + + IM + + Alloplastic reconstruction + Artificial intelligence + Breast + Breast implants + Breast reconstruction + Capsular contracture + Complications + Contracture formation + Implant + Implant capsular contracture + Implant-based reconstruction + Machine learning + Mammaplasty + Outcomes prediction + Postoperative complications + Supervised machine learning + + Declarations. Conflict of interest: The authors declare that they have no conflicts of interest to disclose. Human and Animal Rights: Statement of human and animal rights, or ethical approval: This article does not contain any studies with human participants or animals performed by any of the authors. Data for this project were accessed using the Stanford Center for Population Health Sciences Data Core. The PHS Data Core is supported by a National Institutes of Health National Center for Advancing Translational Science Clinical and Translational Science Award (UL1TR003142) and from Internal Stanford funding. The content is solely the responsibility of the authors and does not necessarily represent the official views of the NIH. Informed Consent: For this type of study, informed consent is not required. +
+ + + + 2025 + 1 + 24 + + + 2026 + 4 + 17 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 11 + 12 + + + aheadofprint + + 42213103 + 10.1007/s00266-026-05919-8 + 10.1007/s00266-026-05919-8 + + + + ISAPS international survey on aesthetic/cosmetic procedures performed in 2019. 2020. https://www.isaps.org/discover/about-isaps/global-statistics/global-survey-2019-full-report-and-press-releases-english/ . Accessed 2024. + + + Pasca A, Bonci EA, Chiuzan C, et al. Treatment and prevention of periprosthetic capsular contracture in breast surgery with prosthesis using leukotriene receptor antagonists: a meta-analysis. Aesthet Surg J. 2022;42(5):483–94. https://doi.org/10.1093/asj/sjab355 . + + 10.1093/asj/sjab355 + 34618886 + + + + Vinsensia M, Schaub R, Meixner E, et al. Incidence and risk assessment of capsular contracture in breast cancer patients following post-mastectomy radiotherapy and implant-based reconstruction. Cancers. 2024. https://doi.org/10.3390/cancers16020265 . + + 10.3390/cancers16020265 + 39682174 + 11640044 + + + + Wells HJ, Yang JCC, Edelstein-Keshet L, Isaac KV. Implant texture and capsular contracture: a review of cellular and molecular pathways. Plast Reconstr Surg Glob Open. 2024;12(5):e5802. https://doi.org/10.1097/GOX.0000000000005802 . + + 10.1097/GOX.0000000000005802 + 38746946 + 11093578 + + + + Domanskis E, Owsley JQ Jr. Histological investigation of the etiology of capsule contracture following augmentation mammaplasty. Plast Reconstr Surg. 1976;58(6):689–93. https://doi.org/10.1097/00006534-197612000-00006 . + + 10.1097/00006534-197612000-00006 + 792918 + + + + Steiert AE, Boyce M, Sorg H. Capsular contracture by silicone breast implants: possible causes, biocompatibility, and prophylactic strategies. Med Devices (Auckl). 2013;6:211–8. https://doi.org/10.2147/MDER.S49522 . + + 10.2147/MDER.S49522 + 24324348 + 3855100 + + + + Adams WP Jr. Capsular contracture: what is it? What causes it? How can it be prevented and managed? Clin Plast Surg. 2009;36(1):119–26. https://doi.org/10.1016/j.cps.2008.08.007 . + + 10.1016/j.cps.2008.08.007 + 19055967 + + + + Larsen A, Rasmussen LE, Rasmussen LF, et al. Histological analyses of capsular contracture and associated risk factors: a systematic review. Aesthetic Plast Surg. 2021;45(6):2714–28. https://doi.org/10.1007/s00266-021-02473-3 . + + 10.1007/s00266-021-02473-3 + 34312696 + + + + Montemurro P, Demir IA, Cheema M, Heden P. Exploring the genetic role of capsular contracture in three family generations with a case report and a literature review. Aesthet Surg J. 2017;38(1):NP6–9. https://doi.org/10.1093/asj/sjx176 . + + 10.1093/asj/sjx176 + 29091998 + + + + Mohan AS, Sullivan J, Tenenbaum MM, Broderick KB, Myckatyn TM. Toward a consensus aproach for assessing capsular contracture severity and progression: a systematic review. Plast Reconstr Surg. 2024;153(1):7–22. https://doi.org/10.1097/PRS.0000000000010573 . + + 10.1097/PRS.0000000000010573 + 37075286 + + + + Wong CH, Samuel M, Tan BK, Song C. Capsular contracture in subglandular breast augmentation with textured versus smooth breast implants: a systematic review. Plast Reconstr Surg. 2006;118(5):1224–36. https://doi.org/10.1097/01.prs.0000237013.50283.d2 . + + 10.1097/01.prs.0000237013.50283.d2 + 17016195 + + + + Headon H, Kasem A, Mokbel K. Capsular contracture after breast augmentation: an update for clinical practice. Arch Plast Surg. 2015;42(5):532–43. https://doi.org/10.5999/aps.2015.42.5.532 . + + 10.5999/aps.2015.42.5.532 + 26430623 + 4579163 + + + + de Kerckhove M, Iwahira Y. Risk factors for capsular contracture: a retrospective study in immediate reconstruction versus delayed reconstruction. Plast Reconstr Surg Glob Open. 2020;8(5):e2864. https://doi.org/10.1097/GOX.0000000000002864 . + + 10.1097/GOX.0000000000002864 + 33133911 + 7572041 + + + + Galdiero M, Larocca F, Iovene MR, et al. Microbial evaluation in capsular contracture of breast implants. Plast Reconstr Surg. 2018;141(1):23–30. https://doi.org/10.1097/PRS.0000000000003915 . + + 10.1097/PRS.0000000000003915 + 29280857 + + + + Sobti N, Weitzman RE, Nealon KP, et al. Evaluation of capsular contracture following immediate prepectoral versus subpectoral direct-to-implant breast reconstruction. Sci Rep. 2020;10(1):1137. https://doi.org/10.1038/s41598-020-58094-4 . + + 10.1038/s41598-020-58094-4 + 31980737 + 6981172 + + + + Calobrace MB, Stevens WG, Capizzi PJ, Cohen R, Godinez T, Beckstrand M. Risk factor analysis for capsular contracture: a 10-year Sientra study using round, smooth, and textured implants for breast augmentation. Plast Reconstr Surg. 2018;141:20–8. https://doi.org/10.1097/PRS.0000000000004351 . + + 10.1097/PRS.0000000000004351 + + + + Bavaro DA, Fanizzi A, Iacovelli S, et al. A machine learning approach for predicting capsular contracture after postmastectomy radiotherapy in breast cancer patients. Healthcare. 2023. https://doi.org/10.3390/healthcare11071042 . + + 10.3390/healthcare11071042 + 37046969 + 10094026 + + + + Chen Y, Wang ML, Black GG, et al. Machine-learning prediction of capsular contraction after two-stage breast reconstruction. JPRAS Open. 2023;38:1–13. https://doi.org/10.1016/j.jpra.2023.07.008 . + + 10.1016/j.jpra.2023.07.008 + 37662866 + 10472234 + + + + Stanford Center for Population Health Sciences. 2024. MarketScan Databases. Redivis (RRID:SCR_023111). https://med.stanford.edu/phs/data/marketscan-data.html . + + + Mantelakis A, Assael Y, Sorooshian P, Khajuria A. Machine learning demonstrates high accuracy for disease diagnosis and prognosis in plastic surgery. Plast Reconstr Surg Glob Open. 2021;9(6):e3638. https://doi.org/10.1097/GOX.0000000000003638 . + + 10.1097/GOX.0000000000003638 + 34235035 + 8225366 + + + + Seu MY, Rezania N, Murray CE, et al. Predicting reduction mammaplasty total resection weight with machine learning. Ann Plast Surg. 2024;93(2):246–52. https://doi.org/10.1097/SAP.0000000000004016 . + + 10.1097/SAP.0000000000004016 + 38833662 + + + + Najafali D, Johnstone T, Pergakis M, et al. Prediction of blood pressure variability during thrombectomy using supervised machine learning and outcomes of patients with ischemic stroke from large vessel occlusion. J Thromb Thrombolysis. 2023;56(1):12–26. https://doi.org/10.1007/s11239-023-02796-9 . + + 10.1007/s11239-023-02796-9 + 37041431 + + + + Chen Y, Cao W, Gao X, Ong H, Ji T. Predicting postoperative complications of head and neck squamous cell carcinoma in elderly patients using random forest algorithm model. BMC Med Inform Decis Mak. 2015;15:44. https://doi.org/10.1186/s12911-015-0165-3 . + + 10.1186/s12911-015-0165-3 + 26054335 + 4459053 + + + + R Core Team. R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. 2024. https://www.R-project.org/ + + + Luvsannyam E, Patel D, Hassan Z, Nukala S, Somagutta MR, Hamid P. Overview of risk factors and prevention of capsular contracture following implant-based breast reconstruction and cosmetic surgery: A systematic review. Cureus. 2020;12(9):e10341. https://doi.org/10.7759/cureus.10341 . + + 10.7759/cureus.10341 + 33062465 + 7549852 + + + + Maita KC, Avila FR, Torres-Guzman RA, et al. The usefulness of artificial intelligence in breast reconstruction: a systematic review. Breast Cancer. 2024;31(4):562–71. https://doi.org/10.1007/s12282-024-01582-6 . + + 10.1007/s12282-024-01582-6 + 38619786 + + + + Kyle DJ, Harvey AG, Shih B, Tan KT, Chaudhry IH, Bayat A. Identification of molecular phenotypic descriptors of breast capsular contracture formation using informatics analysis of the whole genome transcriptome. Wound Repair Regen. 2013;21(5):762–9. https://doi.org/10.1111/wrr.12077 . + + 10.1111/wrr.12077 + 23941504 + + + + Tan KT, Wijeratne D, Shih B, Baildam AD, Bayat A. Tumour necrosis factor-alpha expression is associated with increased severity of periprosthetic breast capsular contracture. Eur Surg Res. 2010;45(3–4):327–32. https://doi.org/10.1159/000321009 . + + 10.1159/000321009 + 21042029 + + + + Hameed MR, Erlandson R, Rosen PP. Capsular synovial-like hyperplasia around mammary implants similar to detritic synovitis. A morphologic and immunohistochemical study of 15 cases. Am J Surg Pathol. 1995;19(4):433–8. https://doi.org/10.1097/00000478-199504000-00004 . + + 10.1097/00000478-199504000-00004 + 7694944 + + + + Prantl L, Schreml S, Fichtner-Feigl S, et al. Clinical and morphological conditions in capsular contracture formed around silicone breast implants. Plast Reconstr Surg. 2007;120(1):275–84. https://doi.org/10.1097/01.prs.0000264398.85652.9a . + + 10.1097/01.prs.0000264398.85652.9a + 17572576 + + + + Fraldi M, Esposito L, Cutolo A, Carotenuto AR, Adamo C, Molea G. Stealthy role of size-driven stresses in biomechanics of breast implants capsular contracture. J Mech Behav Biomed Mater. 2016;64:199–208. https://doi.org/10.1016/j.jmbbm.2016.07.028 . + + 10.1016/j.jmbbm.2016.07.028 + 27508316 + + + + Montemurro P, Lehnhardt M, Behr B, Wallner C. A machine learning approach to identify previously unconsidered causes for complications in aesthetic breast augmentation. Aesthetic Plast Surg. 2022;46(6):2669–76. https://doi.org/10.1007/s00266-022-02997-2 . + + 10.1007/s00266-022-02997-2 + 35802149 + + + + Burkhardt BR, Fried M, Schnur PL, Tofield JJ. Capsules, infection, and intraluminal antibiotics. Plast Reconstr Surg. 1981;68(1):43–9. https://doi.org/10.1097/00006534-198107000-00010 . + + 10.1097/00006534-198107000-00010 + 7243999 + + + + Mao Y, Hou X, Fu S, Luan J. Transcriptomic and machine learning analyses identify hub genes of metabolism and host immune response that are associated with the progression of breast capsular contracture. Genes Dis. 2024;11(3):101087. https://doi.org/10.1016/j.gendis.2023.101087 . + + 10.1016/j.gendis.2023.101087 + 38292203 + + + + Kwon TY, Ham S, Kang M, Shin JH. AI-based cell classification based on mechanical features of heterogeneous capsular contracture fibroblasts. Biophys J. 2024;123(3):280a–1a. + + 10.1016/j.bpj.2023.11.1749 + + + + Naoum GE, Ho AY, Shui A, et al. Risk of developing breast reconstruction complications: A machine-learning nomogram for individualized risk estimation with and without postmastectomy radiation therapy. Plast Reconstr Surg. 2022;149(1):1e–12e. https://doi.org/10.1097/PRS.0000000000008635 . + + 10.1097/PRS.0000000000008635 + 34758003 + + + + +
+ + + 42213093 + + 2026 + 05 + 29 + +
+ + 1613-6829 + + + 2026 + May + 29 + + + Small (Weinheim an der Bergstrasse, Germany) + Small + + Harnessing and Suppressing Electron Spin-State Transitions: From Decoding to Rational Design of High-Performance Cathodes for Alkali-Ion Batteries. + + e73936 + e73936 + + 10.1002/smll.73936 + + The electron spin state of transition metal ions represents a fundamental quantum property that is increasingly recognized as a pivotal design dimension for tuning the performance of cathode materials in Li/Na/K‑ion batteries. This review begins by consolidating the foundational principles through which spin states govern electrochemical properties, establishing a robust theoretical framework that bridges atomic-scale coordination environments with macroscopic electrode behavior. It further discusses advanced experimental and computational techniques for probing complex spin states and, critically, for establishing clear structure-spin-performance relationships. A central focus is placed on the rational design of spin configurations, whether via proactive engineering or suppression of unfavorable transitions, to optimize key electrochemical processes: modulating cationic vs. anionic redox competition, enhancing structural stability by mitigating Jahn-Teller distortions and magnetic frustration, and improving charge and ion transport. The review also highlights the emerging role of spin‑sensitive machine learning as an accelerated pathway for discovering superior cathode materials. By integrating theoretical insights, methodological advances, and application‑oriented studies, this work provides a comprehensive mechanistic framework and practical guidelines for the design of next‑generation high‑performance cathodes through deliberate spin‑state control. + © 2026 Wiley‐VCH GmbH. + + + + Peng + Tao + T + 0000-0002-0234-0477 + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Ma + Mengzhen + M + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Liu + Shaonan + S + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + He + Junbao + J + + Henan International Joint Laboratory of MXene Materials Microstructure, Collaborative Innovation Center of Intelligent Explosion-Proof Equipment of Henan Province, College of Physics and Electronic Engineering, Nanyang Normal University, Nanyang, China. + + + + Wang + Yuanyuan + Y + + College of Aerospace Science and Engineering, National University of Defense Technology, Changsha, China. + + + + Yang + Ya + Y + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Lu + Yang + Y + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Luo + Yongsong + Y + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + Henan International Joint Laboratory of MXene Materials Microstructure, Collaborative Innovation Center of Intelligent Explosion-Proof Equipment of Henan Province, College of Physics and Electronic Engineering, Nanyang Normal University, Nanyang, China. + + + + Sun + Weiwei + W + 0000-0003-4079-4063 + + College of Aerospace Science and Engineering, National University of Defense Technology, Changsha, China. + + + + eng + + + 52272219 + National Natural Science Foundation of China + + + + 52472254 + National Natural Science Foundation of China + + + + 262300421381 + Natural Science Foundation of Henan Province + + + + 242300421191 + Natural Science Foundation of Henan Province + + + + 24ZDYF016 + Key Research and Development Program of Nanyang City + + + + Nanhu Scholars Program for Young Scholars of Xinyang Normal University + + + + 2026JJ50116 + the Natural Science Foundation of Hunan Province + + + + 2026JJ50116 + the Natural Science Foundation of Hunan Province + + + + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + Germany + Small + 101235338 + 1613-6810 + + IM + + Li/Na/K‐ion batteries + cathode materials + electron spin state + machine learning + structure‐spin‐performance relationship + +
+ + + + 2026 + 5 + 9 + + + 2026 + 2 + 28 + + + 2026 + 5 + 14 + + + 2026 + 5 + 29 + 15 + 43 + + + 2026 + 5 + 29 + 15 + 43 + + + 2026 + 5 + 29 + 11 + 3 + + + aheadofprint + + 42213093 + 10.1002/smll.73936 + + + + X. Lu, Y. Wang, X. Xu, B. Yan, T. Wu, and L. Lu, “Polymer‐Based Solid‐State Electrolytes for High‐Energy‐Density Lithium‐Ion Batteries—Review,” Advanced Energy Materials 13 (2023): 2301746, https://doi.org/10.1002/aenm.202301746. + + + W. Dou, M. Zheng, W. Zhang, et al., “Review on the Binders for Sustainable High‐Energy‐Density Lithium Ion Batteries: Status, Solutions, and Prospects,” Advanced Functional Materials 33 (2023): 2305161, https://doi.org/10.1002/adfm.202305161. + + + Z. Lin, O. Sheng, X. Cai, et al., “Solid Polymer Electrolytes in All‐Solid‐State Lithium Metal Batteries: From Microstructures to Properties,” Journal of Energy Chemistry 81 (2023): 358. + + + Y. Zhang, W. Tang, H. Gao, et al., “Monolithic Layered Silicon Composed of a Crystalline–Amorphous Network for Sustainable Lithium‐Ion Battery Anodes,” ACS Nano 18 (2024): 15671–15680, https://doi.org/10.1021/acsnano.4c01814. + + + Y. Liu, Y. Yu, F. Yang, et al., “Reversible Iron Oxyfluoride (FeOF)‐Graphene Composites as Sustainable Cathodes for High Energy Density Lithium Batteries,” Small 19 (2023): 2206947, https://doi.org/10.1002/smll.202206947. + + + J. Xiang, Y. Wei, Y. Zhong, et al., “Building Practical High‐Voltage Cathode Materials for Lithium‐Ion Batteries,” Advanced Materials 34 (2022): 2200912, https://doi.org/10.1002/adma.202200912. + + + C. Liu, F. Roters, and D. Raabe, “Role of Grain‐Level Chemo‐Mechanics in Composite Cathode Degradation of Solid‐State Lithium Batteries,” Nature Communications 15 (2024): 7970, https://doi.org/10.1038/s41467‐024‐52123‐w. + + + K. Jin, L. Li, H. Tian, et al., “Three Birds With One Stone: Reducing Gases Manipulate Surface Reconstruction of Li‐Rich Mn‐Based Oxide Cathodes for High‐Energy Lithium‐Ion Batteries,” Energy Storage Materials 77 (2025): 104202, https://doi.org/10.1016/j.ensm.2025.104202. + + + H. Qian, H. Ren, Y. Zhang, et al., “Surface Doping vs. Bulk Doping of Cathode Materials for Lithium‐Ion Batteries: A Review,” Electrochemical Energy Reviews 5 (2022): 2. + + + Q. Fan, K. Lin, S. Yang, et al., “Constructing Effective TiO2 Nano‐Coating for High‐Voltage Ni‐Rich Cathode Materials for Lithium Ion Batteries by Precise Kinetic Control,” Journal of Power Sources 477 (2020): 228745, https://doi.org/10.1016/j.jpowsour.2020.228745. + + + G.‐T. Park, S.‐B. Kim, J.‐I. Yoon, et al., “Unraveling the New Role of Manganese in Nano and Microstructural Engineering of Ni‐Rich Layered Cathode for Advanced Lithium‐Ion Batteries,” Advanced Energy Materials 14 (2024): 2400130, https://doi.org/10.1002/aenm.202400130. + + + Y. Zhao, Q. Liu, X. Zhao, et al., “Structure Evolution of Layered Transition Metal Oxide Cathode Materials for Na‐Ion Batteries: Issues, Mechanism and Strategies,” Materials Today 62 (2023): 271–295, https://doi.org/10.1016/j.mattod.2022.11.024. + + + C. Xu, L. Zhou, T. Gao, et al., “Development of High‐Performance Iron‐Based Phosphate Cathodes Toward Practical Na‐Ion Batteries,” Journal of the American Chemical Society 146 (2024): 9819–9827, https://doi.org/10.1021/jacs.3c14452. + + + Q. Zhou, H. K. Liu, S. X. Dou, and S. Chong, “Defect‐Free Prussian Blue Analogue as Zero‐Strain Cathode Material for High‐Energy‐Density Potassium‐Ion Batteries,” ACS Nano 18 (2024): 7287–7297, https://doi.org/10.1021/acsnano.4c00251. + + + A. Li, Y. Man, J. Liao, L. Duan, X. Ji, and X. Zhou, “KI‐Assisted Formation of Spindle‐Like Prussian White Nanoparticles for High‐Performance Potassium‐Ion Battery Cathodes,” Nano Letters 23 (2023): 10066–10073, https://doi.org/10.1021/acs.nanolett.3c03558. + + + S. Liu, L. Kang, and S. C. Jun, “Challenges and Strategies Toward Cathode Materials for Rechargeable Potassium‐Ion Batteries,” Advanced Materials 33 (2021): 2004689, https://doi.org/10.1002/adma.202004689. + + + H. Xu, Q. Yan, W. Yao, C.‐S. Lee, and Y. Tang, “Mainstream Optimization Strategies for Cathode Materials of Sodium‐Ion Batteries,” Small Structures 3 (2022): 2100217, https://doi.org/10.1002/sstr.202100217. + + + Z. Jiang, K. Zhang, Q. Ding, et al., “Metal–Ligand Spin‐Lock Strategy for Inhibiting Anion Dimerization in Li‐Rich Cathode Materials,” Journal of the American Chemical Society 147 (2025): 3062–3071, https://doi.org/10.1021/jacs.4c10815. + + + J. Yao, X. Wang, P. Hu, et al., “Local Electron Spin‐State Modulation at Mn Site for Advanced Sodium‐Ion Batteries With Fast‐Kinetic NaNi0.33Fe0.33Mn0.33O2 Cathode,” Advanced Functional Materials 34 (2024): 2419967. + + + H. Xia, Y. Hu, Z. Li, H. Lan, and J. Zhang, “Electron Spin Polarization in Rechargeable Batteries: Theoretical Foundation and Practical Applications,” Advanced Functional Materials 35 (2025): 2413491, https://doi.org/10.1002/adfm.202413491. + + + H. Ma, F. Wang, M. Shen, Y. Tong, H. Wang, and H. Hu, “Advances of LiCoO2 in Cathode of Aqueous Lithium‐Ion Batteries,” Small Methods 8 (2024): 2300820, https://doi.org/10.1002/smtd.202300820. + + + X. Liang, J.‐Y. Hwang, and Y.‐K. Sun, “Practical Cathodes for Sodium‐Ion Batteries: Who Will Take the Crown?,” Advanced Energy Materials 13 (2023): 2301975, https://doi.org/10.1002/aenm.202301975. + + + M. Sha, L. Liu, H. Zhao, and Y. Lei, “Review on Recent Advances of Cathode Materials for Potassium‐Ion Batteries,” Energy & Environmental Materials 3 (2020): 56–66, https://doi.org/10.1002/eem2.12060. + + + D. I. Khomskii and S. V. Streltsov, “Orbital Effects in Solids: Basics, Recent Progress, and Opportunities,” Chemical Reviews 121 (2021): 2992–3030, https://doi.org/10.1021/acs.chemrev.0c00579. + + + S. He, Y. Chen, J. Fang, Y. Liu, and Z. Lin, “Optimizing Photocatalysis via Electron Spin Control,” Chemical Society Reviews 54 (2025): 2154–2187, https://doi.org/10.1039/D4CS00317A. + + + J. Tian, Y. Rao, S. Xu, et al., “The Volcano Relationship Between dz2 Electronic States and Sulfur Redox Reaction Kinetics in Lithium–Sulfur Batteries,” Nano Letters 25 (2025): 6918–6926, https://doi.org/10.1021/acs.nanolett.5c00128. + + + Q. Lv, Y. Sun, B. Li, C. Li, Q. Zhang, and L. Wang, “Metal–Organic Frameworks With Axial Cobalt–Oxygen Coordination Modulate Polysulfide Redox for Lithium–Sulfur Batteries,” Advanced Energy Materials 15 (2025): 2403223, https://doi.org/10.1002/aenm.202403223. + + + L. Wang, Z. Mei, Q. An, et al., “Modulating the Electronic Spin State of Atomically Dispersed Iron Sites by Adjacent Zinc Atoms for Enhanced Spin‐Dependent Oxygen Electrocatalysis,” Chem Catalysis 3 (2023): 100758. + + + Y. Zhang, Q. Wu, J. Z. Y. Seow, Y. Jia, X. Ren, and Z. J. Xu, “Spin States of Metal Centers in Electrocatalysis,” Chemical Society Reviews 53 (2024): 8123–8136, https://doi.org/10.1039/D3CS00913K. + + + M. K. Aydinol, A. F. Kohan, G. Ceder, K. Cho, and J. Joannopoulos, “Ab Initio Study of Lithium Intercalation in Metal Oxides and Metal Dichalcogenides,” Physical Review B 56 (1997): 1354–1365, https://doi.org/10.1103/PhysRevB.56.1354. + + + C. Lin, J. Li, Z.‐W. Yin, et al., “Structural Understanding for High‐Voltage Stabilization of Lithium Cobalt Oxide,” Advanced Materials 36 (2024): 2307404, https://doi.org/10.1002/adma.202307404. + + + J. H. Yang, H. Kim, and G. Ceder, “Insights Into Layered Oxide Cathodes for Rechargeable Batteries,” Molecules 26 (2021): 3173, https://doi.org/10.3390/molecules26113173. + + + L. Shi, Z. Liu, K. Li, et al., “YIG‐Inspired Fe 3d Spin Rearrangement to Construct Built‐in Electric Field Achieving Fast‐Charging Layered Cathode for Wide‐Temperature Sodium‐Ion Battery,” Advanced Functional Materials 36 (2026): 18348, https://doi.org/10.1002/adfm.202518348. + + + J. Wang, K. Wang, Q. Liu, H. Su, and H. Zhu, “Modifying Anionic Sites for Fe Spin Activation to Enhance Performance in NASICON Cathodes,” Chemical Engineering Journal 514 (2025): 163122, https://doi.org/10.1016/j.cej.2025.163122. + + + Q. Zhou, Y. Xin, Y. Wang, et al., “Modulating the Electron Spin States of Na2FePO4F Cathode via High Entropy Strategy for Enhanced Sodium Storage and Ultra‐High Cycling Stability,” Chemical Engineering Journal 503 (2025): 158475, https://doi.org/10.1016/j.cej.2024.158475. + + + L. Yang, Z. Liu, X. Shen, et al., “Effect of Vacancy‐Tailored Mn3+ Spinning on Enhancing Structural Stability,” Energy Storage Materials 44 (2022): 231–238, https://doi.org/10.1016/j.ensm.2021.10.024. + + + P. C. Mondal, W. Mtangi, and C. Fontanesi, “Chiro‐Spintronics: Spin‐Dependent Electrochemistry and Water Splitting Using Chiral Molecular Films,” Small Methods 2 (2018): 1700313, https://doi.org/10.1002/smtd.201700313. + + + A. Vadakkayil, C. Clever, K. N. Kunzler, S. Tan, B. P. Bloom, and D. H. Waldeck, “Chiral Electrocatalysts Eclipse Water Splitting Metrics Through Spin Control,” Nature Communications 14 (2023): 1067, https://doi.org/10.1038/s41467‐023‐36703‐w. + + + D. Barik, U. Utkarsh, and K. B. Ghosh, “Spin‐Controlled Electrocatalysis: An Out‐of‐the‐Box Strategy for the Advancement of Electrochemical Water Splitting,” Chemical Communications 61 (2025): 6226–6245, https://doi.org/10.1039/D5CC01305D. + + + H. Im, S. Ma, H. Lee, et al., “Elucidating the Chirality Transfer Mechanisms During Enantioselective Synthesis for the Spin‐Controlled Oxygen Evolution Reaction,” Energy & Environmental Science 16 (2023): 1187–1199, https://doi.org/10.1039/D2EE03853F. + + + J. Ran, M. Si, and D. Gao, “Co@CoO Chiral Nanostructures Enabling Efficient Oxygen Electrocatalysis by Modulated Spin‐Polarization,” Chemical Engineering Journal 493 (2024): 152545, https://doi.org/10.1016/j.cej.2024.152545. + + + N. Yuran, B. Muniyandi, A. Saha, et al., “Chiral Molecular Coating of a LiNiCoMnO2 Cathode for High‐Rate Capability Lithium‐Ion Batteries,” The Journal of Physical Chemistry Letters 15 (2024): 2682–2689, https://doi.org/10.1021/acs.jpclett.4c00171. + + + H. Gong, Y. Cao, B. Zhang, et al., “Noninvasive Rejuvenation Strategy of Nickel‐Rich Layered Positive Electrode for Li‐Ion Battery Through Magneto‐Electrochemical Synergistic Activation,” Nature Communications 15 (2024): 10243, https://doi.org/10.1038/s41467‐024‐54641‐z. + + + D. Xue, P. Yuan, S. Jiang, et al., “Altering the Spin State of Fe‐N‐C Through Ligand Field Modulation of Single‐Atom Sites Boosts the Oxygen Reduction Reaction,” Nano Energy 105 (2023): 108020, https://doi.org/10.1016/j.nanoen.2022.108020. + + + X. Li, J. Qin, Q. Lin, et al., “Electron Spin Broken‐Symmetry of Fe–Co Diatomic Pairs to Promote Kinetics of Bifunctional Oxygen Electrocatalysis for Zinc–Air Batteries,” Advanced Science 11 (2024): 2401187, https://doi.org/10.1002/advs.202401187. + + + S. Ye, S. Xie, Y. Lei, et al., “Modulating the Electronic Spin State by Constructing Dual‐Metal Atomic Pairs for Activating the Dynamic Site of Oxygen Reduction Reaction,” Nano Research 16 (2023): 1869–1877, https://doi.org/10.1007/s12274‐022‐4979‐x. + + + D. Xue, Y. Zhao, J. Cao, Y. Wang, X. Li, and T. Ma, “Spin Engineering of Dual‐Atom Site Catalysts for Efficient Electrochemical Energy Conversion,” Advanced Materials 37 (2025): 2504213, https://doi.org/10.1002/adma.202504213. + + + C. Huang, J. Yu, C. Y. Zhang, et al., “Electronic Spin Alignment Within Homologous NiS2/NiSe2 Heterostructures to Promote Sulfur Redox Kinetics in Lithium‐Sulfur Batteries,” Advanced Materials 36 (2024): 2400810, https://doi.org/10.1002/adma.202400810. + + + L. Yang, R. He, M. Botifoll, et al., “Enhanced Oxygen Evolution and Zinc‐Air Battery Performance via Electronic Spin Modulation in Heterostructured Catalysts,” Advanced Materials 36 (2024): 2400572, https://doi.org/10.1002/adma.202400572. + + + J. Chen, J. Xiao, S. Liao, et al., “Spin Polarization in Bi/FeS Heterostructure Enables High‐Performance Sodium Ion Storage,” Energy Storage Materials 82 (2025): 104631, https://doi.org/10.1016/j.ensm.2025.104631. + + + E. M. Mozur and R. Seshadri, “Methods and Protocols: Practical Magnetic Measurement,” Chemistry of Materials 35 (2023): 3450–3463, https://doi.org/10.1021/acs.chemmater.3c00297. + + + M. A. Halim, S. Karmakar, S. S. Das, W. J. Geerts, A. Haque, and G. W. Beall, “Crystallite Size‐Dependent Magnetic Moment in Hydrogen Bridged Manganese Tetracyanonickelate Based Two‐Dimensional Metal‐Organic Frameworks,” Journal of Magnetism and Magnetic Materials 571 (2023): 170573, https://doi.org/10.1016/j.jmmm.2023.170573. + + + J. Kim, K. Lee, T. Takabatake, H. Kim, M. Kim, and M.‐H. Jung, “Magnetic Transition to Antiferromagnetic Phase in Gadolinium Substituted Topological Insulator Bi2Te3,” Scientific Reports 5 (2015): 10309, https://doi.org/10.1038/srep10309. + + + Y. Xi, X. Wang, H. Wang, et al., “Optimizing the Electron Spin States of Na4Fe3(PO4)2P2O7 Cathodes via Mn/F Dual‐Doping for Enhanced Sodium Storage,” Advanced Functional Materials 34 (2024): 2309701, https://doi.org/10.1002/adfm.202309701. + + + X. Wang, J. Li, Q. Wang, et al., “Balancing Electron Spin States of Na3.12Fe2.44(P2O7)2 Through F‐Doping Realized High Performance on Sodium Ions Storage,” Advanced Energy Materials 15 (2025): 2502300, https://doi.org/10.1002/aenm.202502300. + + + A. Niemöller, P. Jakes, R.‐A. Eichel, and J. Granwehr, “In Operando EPR Investigation of Redox Mechanisms in LiCoO2,” Chemical Physics Letters 716 (2019): 231–236, https://doi.org/10.1016/j.cplett.2018.12.022. + + + H. Nguyen and R. J. Clément, “Rechargeable Batteries From the Perspective of the Electron Spin,” ACS Energy Letters 5 (2020): 3848–3859, https://doi.org/10.1021/acsenergylett.0c02074. + + + H. Nguyen, E. N. Bassey, E. E. Foley, D. A. Kitchaev, R. Giovine, and R. J. Clément, “Operando Electron Spin Probes for the Study of Battery Processes,” Journal of Magnetic Resonance 368 (2024): 107772, https://doi.org/10.1016/j.jmr.2024.107772. + + + M. Tang, A. Dalzini, X. Li, et al., “Operando EPR for Simultaneous Monitoring of Anionic and Cationic Redox Processes in Li‐Rich Metal Oxide Cathodes,” The Journal of Physical Chemistry Letters 8 (2017): 4009–4016, https://doi.org/10.1021/acs.jpclett.7b01425. + + + A. Niemöller, P. Jakes, S. Eurich, et al., “Monitoring Local Redox Processes in LiNi0.5Mn1.5O4 Battery Cathode Material by in Operando EPR Spectroscopy,” The Journal of Chemical Physics 148 (2018): 014705, https://doi.org/10.1063/1.5008251. + + + Z. Su, Z. Li, X. Yang, X. Li, L. Wang, and W. Lü, “In Situ Balanced Synthesis of High‐Activity Low‐Spin Iron Cathode Prussian Blue for Enhanced Sodium‐Ion Storage,” Nano Letters 25 (2025): 957–965, https://doi.org/10.1021/acs.nanolett.4c03985. + + + Z. Wang, K. Nie, M. T. Sougrati, et al., “Charge Transfer Induced Highly Active Low‐Spin Iron of Prussian Blue Cathode Through Calcination Strategy for High Performance Sodium‐Ion Batteries,” Chemical Engineering Journal 488 (2024): 151090, https://doi.org/10.1016/j.cej.2024.151090. + + + Z. Yao, T. Fu, T. Pan, et al., “Modulating the Spin State to Stabilize the Surface and Bulk Structure for Durable 4.6 V LiCoO2 Cathodes,” Advanced Functional Materials 34 (2024): 2408152, https://doi.org/10.1002/adfm.202408152. + + + C. Zheng, Y. Wang, H. Mao, et al., “Superexchange Interaction Regulates Ni/Mn Spin States Triggering Ni‐t2G/O‐2p Reductive Coupling Enabling Stable Lithium‐Rich Cathode,” Nature Communications 16 (2025): 3900, https://doi.org/10.1038/s41467‐025‐59159‐6. + + + Y. Fan, X. Wang, G. Bo, et al., “Operando Synchrotron X‐Ray Absorption Spectroscopy: A Key Tool for Cathode Material Studies in Next‐Generation Batteries,” Advanced Science 12 (2025): 2414480, https://doi.org/10.1002/advs.202414480. + + + W. Lee, S. Yun, H. Li, et al., “Anionic Redox Chemistry as a Clue for Understanding the Structural Behavior in Layered Cathode Materials,” Small 16 (2020): 1905875, https://doi.org/10.1002/smll.201905875. + + + Y. S. Byeon, W. Lee, S. Park, et al., “Comprehensive Understanding of Elemental Doping and Substitution of Ni‐Rich Cathode Materials for Lithium‐Ion Batteries via In Situ Operando Analyses,” Small Science 4 (2024): 2400165. + + + M. Fehse, N. Etxebarria, L. Otaegui, et al., “Influence of Transition‐Metal Order on the Reaction Mechanism of LNMO Cathode Spinel: An Operando X‐Ray Absorption Spectroscopy Study,” Chemistry of Materials 34 (2022): 6529–6540, https://doi.org/10.1021/acs.chemmater.2c01360. + + + A. Mullaliu, G. Aquilanti, P. Conti, et al., “Copper Electroactivity in Prussian Blue‐Based Cathode Disclosed by Operando XAS,” The Journal of Physical Chemistry C 122 (2018): 15868–15877, https://doi.org/10.1021/acs.jpcc.8b03429. + + + J. Zhang, D. Wong, Q. Zhang, et al., “Reducing Co/O Band Overlap Through Spin State Modulation for Stabilized High Capability of 4.6 V LiCoO2,” Journal of the American Chemical Society 145 (2023): 10208–10219, https://doi.org/10.1021/jacs.3c01128. + + + Y. Cheng, X. Gong, S. Tao, et al., “Mechano‐Thermal Milling Synthesis of Atomically Dispersed Platinum With Spin Polarization Induced by Cobalt Atoms Towards Enhanced Oxygen Reduction Reaction,” Nano Energy 98 (2022): 107341, https://doi.org/10.1016/j.nanoen.2022.107341. + + + F. Zhou, Z. Gong, R. Wang, et al., “Band Structure and Spin‐State‐Induced Electronic Configuration Regulation for Efficient Sulfur Redox Reaction,” Advanced Functional Materials 35 (2025): 2417730, https://doi.org/10.1002/adfm.202417730. + + + J. Yu, C. Huang, O. Usoltsev, et al., “Promoting Polysulfide Redox Reactions Through Electronic Spin Manipulation,” ACS Nano 18 (2024): 19268–19282, https://doi.org/10.1021/acsnano.4c05278. + + + C. Li, J. Yu, D. Yang, et al., “Balancing Electronic Spin State via Atomically‐Dispersed Heteronuclear Fe–Co Pairs for High‐Performance Sodium–Sulfur Batteries,” Journal of the American Chemical Society 147 (2025): 8250–8259, https://doi.org/10.1021/jacs.4c15408. + + + Y. Liu, X. Wu, H. Qu, et al., “Regulating the Local Spin States in Spinel Oxides to Promote the Activity of Li‐CO2 Batteries,” Advanced Materials 37 (2025): 2411652, https://doi.org/10.1002/adma.202411652. + + + J. Qian, T. Wang, Z. Zhang, Y. Liu, J. Li, and D. Gao, “Engineered Spin State in Ce Doped LaCoO3 With Enhanced Electrocatalytic Activity for Rechargeable Zn‐Air Batteries,” Nano Energy 74 (2020): 104948, https://doi.org/10.1016/j.nanoen.2020.104948. + + + Y. Bao, J. Xiao, Y. Huang, et al., “Regulating Spin Polarization via Axial Nitrogen Traction at Fe−N5 Sites Enhanced Electrocatalytic CO2 Reduction for Zn−CO2 Batteries,” Angewandte Chemie International Edition 63 (2024): 202406030. + + + B. Li, H. Wang, Y. Shen, et al., “Selective Adsorption‐Catalysis Sites of Lithium Polysulfides Induced by the Competition Between Spin Polarization and Electronegativity in High‐Entropy Alloy Electrocatalysts,” ACS Nano 19 (2025): 12021–12032, https://doi.org/10.1021/acsnano.4c17661. + + + Q. Li, Z. Ma, M. Liu, et al., “High Spin‐State Modulation of Catalytic Centers by Weak Ligand Field for Promoting Sulfur Redox Reaction in Lithium‐Sulfur Batteries,” Angewandte Chemie 137 (2025): 202416176, https://doi.org/10.1002/ange.202416176. + + + Y. Pan, K. Li, A. Hu, et al., “Manipulating Li2O2 Deposition Morphology by Surface Spin Modulation of Cobalt‐Based Spinel Oxide Catalysts in Lithium−Oxygen Batteries,” Chemical Engineering Journal 477 (2023): 147209, https://doi.org/10.1016/j.cej.2023.147209. + + + C. Zhang, X. Wang, Z. Ma, et al., “Spin State Modulation on Dual Fe Center by Adjacent Ni Sites Enabling the Boosted Activities and Ultra‐Long Stability in Zn‐Air Batteries,” Science Bulletin 68 (2023): 2042–2053, https://doi.org/10.1016/j.scib.2023.07.049. + + + J. Chen, H. Chen, S. Zhang, et al., “Structure/Interface Coupling Effect for High‐Voltage LiCoO2 Cathodes,” Advanced Materials 34 (2022): 2204845, https://doi.org/10.1002/adma.202204845. + + + M. Zhang, S. Xu, H. Xu, et al., “Enabling Reversible O1 Phase Transition in 4.8 V‐Level LiCoO2 Through Local Oxygen Coordination Engineering,” Advanced Energy Materials 15 (2025): 2500577, https://doi.org/10.1002/aenm.202500577. + + + Z. Lu, J. Zhang, Q. Zhang, et al., “Oxygen Anion Redox Chemistry Correlated With Spin State in Ni‐Rich Layered Cathodes,” Advanced Science 10 (2023): 2206442, https://doi.org/10.1002/advs.202206442. + + + Y. Zuo, H. Shang, J. Hao, et al., “Regulating the Potential of Anion Redox to Reduce the Voltage Hysteresis of Li‐Rich Cathode Materials,” Journal of the American Chemical Society 145 (2023): 5174–5182, https://doi.org/10.1021/jacs.2c11640. + + + L. Yang, Q. Liu, M. Wan, et al., “Surface Passivation of NaxFe[Fe(CN)6] Cathode to Improve Its Electrochemical Kinetics and Stability in Sodium‐Ion Batteries,” Journal of Power Sources 448 (2020): 227421, https://doi.org/10.1016/j.jpowsour.2019.227421. + + + T.‐U. Wi, C. Park, S. Ko, et al., “Cathode Electrolyte Interphase Engineering for Prussian Blue Analogues in Lithium‐Ion Batteries,” Nano Letters 24 (2024): 7783–7791, https://doi.org/10.1021/acs.nanolett.4c01971. + + + H. Zhang, J. Peng, L. Li, et al., “Low‐Cost Zinc Substitution of Iron‐Based Prussian Blue Analogs as Long Lifespan Cathode Materials for Fast Charging Sodium‐Ion Batteries,” Advanced Functional Materials 33 (2023): 2210725, https://doi.org/10.1002/adfm.202210725. + + + J. Sun, H. Ye, J. A. S. Oh, et al., “Elevating the Discharge Plateau of Prussian Blue Analogs Through Low‐Spin Fe Redox Induced Intercalation Pseudocapacitance,” Energy Storage Materials 43 (2021): 182–189, https://doi.org/10.1016/j.ensm.2021.09.004. + + + Z. Wang, M. T. Sougrati, Y. He, et al., “Sodium Storage and Capacity Retention Behavior Derived from High‐Spin/Low‐Spin Fe Redox Reaction in Monoclinic Prussian Blue Based on Operando Mössbauer Characterization,” Nano Energy 109 (2023): 108256, https://doi.org/10.1016/j.nanoen.2023.108256. + + + D. Yang, H. Wang, Y. Zhao, et al., “Achieving Ultra‐Fast and Stable Sodium‐Ion Batteries Through Deep Activation of Low‐Spin Iron in Prussian Blue,” Advanced Functional Materials 35 (2025): 2503067, https://doi.org/10.1002/adfm.202503067. + + + Z. Xiao, F. Xia, L. Xu, et al., “Suppressing the Jahn–Teller Effect in Mn‐Based Layered Oxide Cathode Toward Long‐Life Potassium‐Ion Batteries,” Advanced Functional Materials 32 (2022): 2108244, https://doi.org/10.1002/adfm.202108244. + + + T. Shang, A. Gao, D. Xiao, et al., “An Orbital Strategy for Regulating the Jahn–Teller Effect,” National Science Review 11 (2024): nwae255, https://doi.org/10.1093/nsr/nwae255. + + + M. Atanasov, S. V. Rao, and F. Neese, “A Reflection on Modelling and Examination of Paramagnetic Molecules for Magnetic Storage and Molecular Spintronics,” Chemical Science 16 (2025): 18985–18989, https://doi.org/10.1039/D5SC90219C. + + + Z.‐F. Huang, X. Meng, C.‐Z. Wang, Y. Sun, and G. Chen, “First‐Principles Calculations on the Jahn–Teller Distortion in Layered LiMnO2,” Journal of Power Sources 158 (2006): 1394–1400, https://doi.org/10.1016/j.jpowsour.2005.10.044. + + + Z.‐F. Huang, F. Du, C.‐Z. Wang, D.‐P. Wang, and G. Chen, “Low‐Spin Mn3+ Ion in Rhombohedral LiMnO2 Predicted by First‐Principles Calculations,” Physical Review B 75 (2007): 054411, https://doi.org/10.1103/PhysRevB.75.054411. + + + A. Choi, T. Kim, M.‐H. Kim, S. W. Lee, Y. H. Jung, and H.‐W. Lee, “Mitigating Jahn–Teller Effects by Fast Electrode Kinetics Inducing Charge Redistribution,” Advanced Functional Materials 32 (2022): 2111901, https://doi.org/10.1002/adfm.202111901. + + + Y. Xiao, T. Liu, J. Liu, et al., “Insight into the Origin of Lithium/Nickel Ions Exchange in Layered Li(NixMnyCoz)O2 Cathode Materials,” Nano Energy 49 (2018): 77–85, https://doi.org/10.1016/j.nanoen.2018.04.020. + + + J. Yin, Z. Wu, K. Fang, et al., “Reassessing Anionic Redox in Conventional Layered Oxide Cathodes for Li‐Ion Batteries: Ionic and Covalent Mechanisms,” Chemical Science 16 (2025): 8268–8281, https://doi.org/10.1039/D5SC00429B. + + + J. Wang and X. Sun, “Understanding and Recent Development of Carbon Coating on LiFePO4 Cathode Materials for Lithium‐Ion Batteries,” Energy & Environmental Science 5 (2012): 5163–5185, https://doi.org/10.1039/C1EE01263K. + + + C. Yang, X. Zhang, M. Huang, J. Huang, and Z. Fang, “Preparation and Rate Capability of Carbon Coated LiNi1/3Co1/3Mn1/3O2 as Cathode Material in Lithium Ion Batteries,” ACS Applied Materials and Interfaces 9 (2017): 12408. + + + Y. Lu, S. Zhang, Y. Li, L. Xue, G. Xu, and X. Zhang, “Preparation and Characterization of Carbon‐Coated NaVPO4 F as Cathode Material for Rechargeable Sodium‐Ion Batteries,” Journal of Power Sources 247 (2014): 770–777, https://doi.org/10.1016/j.jpowsour.2013.09.018. + + + A. Langrock, Y. Xu, Y. Liu, S. Ehrman, A. Manivannan, and C. Wang, “Carbon Coated Hollow Na2FePO4F Spheres for Na‐Ion Battery Cathodes,” Journal of Power Sources 223 (2013): 62–67, https://doi.org/10.1016/j.jpowsour.2012.09.059. + + + R. Pitchai, V. Thavasi, S. G. Mhaisalkar, and S. Ramakrishna, “Nanostructured Cathode Materials: A Key for Better Performance in Li‐Ion Batteries,” Journal of Materials Chemistry 21 (2011): 11040, https://doi.org/10.1039/c1jm10857c. + + + Y. Wang and G. Cao, “Developments in Nanostructured Cathode Materials for High‐Performance Lithium‐Ion Batteries,” Advanced Materials 20 (2008): 2251–2269, https://doi.org/10.1002/adma.200702242. + + + C. Deng and S. Zhang, “1D Nanostructured Na7V4(P2O7)4 (PO4) as High‐Potential and Superior‐Performance Cathode Material for Sodium‐Ion Batteries,” ACS Applied Materials & Interfaces 6 (2014): 9111–9117, https://doi.org/10.1021/am501072j. + + + Z. Gong and Y. Yang, “Recent Advances in the Research of Polyanion‐Type Cathode Materials for Li‐Ion Batteries,” Energy & Environmental Science 4 (2011): 3223, https://doi.org/10.1039/c0ee00713g. + + + T. Jin, H. Li, K. Zhu, P.‐F. Wang, P. Liu, and L. Jiao, “Polyanion‐Type Cathode Materials for Sodium‐Ion Batteries,” Chemical Society Reviews 49 (2020): 2342–2377, https://doi.org/10.1039/C9CS00846B. + + + J. Wang, J. Kang, Z.‐Y. Gu, et al., “Localized Electron Density Redistribution in Fluorophosphate Cathode: Dangling Anion Regulation and Enhanced Na‐Ion Diffusivity for Sodium‐Ion Batteries,” Advanced Functional Materials 32 (2022): 2109694, https://doi.org/10.1002/adfm.202109694. + + + Y.‐J. Li, Y.‐F. Zhu, B.‐B. Chen, et al., “Jahn‐Teller Effect in Sodium Layered Oxide Cathodes: Inducement Mechanisms, Mitigation Strategies, and Rational Utilizations,” Advanced Functional Materials 35 (2025): 2504096, https://doi.org/10.1002/adfm.202504096. + + + X. Zhang, F. Xie, X. Wang, T. Liu, L. Zhang, and J. Yu, “Mitigating the Jahn–Teller Distortion and Phase Transition in the P2‐Na0.67Ni0.33Mn0.67O2 Cathode Through Large Sr2+ Ion Substitution for Improved Performance,” Journal of Materials Chemistry A 12 (2024): 19440–19451, https://doi.org/10.1039/D4TA02993C. + + + Y. Zheng, H. Xie, J. Li, et al., “Insights into the Jahn‐Teller Effect in Layered Oxide Cathode Materials for Potassium‐Ion Batteries,” Advanced Energy Materials 14 (2024): 2400461, https://doi.org/10.1002/aenm.202400461. + + + S. Zhang, Z. Yang, Y. Lu, W. Xie, Z. Yan, and J. Chen, “Insights into Cation Migration and Intermixing in Advanced Cathode Materials for Lithium‐Ion Batteries,” Advanced Energy Materials 14 (2024): 2402068, https://doi.org/10.1002/aenm.202402068. + + + H. Lee, J. Kim, S. Lee, M. Avdeev, W. Yang, and Y.‐M. Kang, “Characterizing Disorders Within Cathode Materials of Lithium‐Ion Batteries,” Angewandte Chemie 137 (2025): 202501958, https://doi.org/10.1002/ange.202501958. + + + G. Ding, S. Wang, X. Huang, et al., “Mitigating Magnetic Frustration to Improve Single‐Crystalline Nonstoichiometric Li1.06Ni0.90Mn0.04O2 for Lithium‐Ion Batteries,” Journal of Materials Chemistry A 12 (2024): 23454–23460, https://doi.org/10.1039/D4TA03933E. + + + T. Ye, Z. Li, H. Yan, et al., “Magnetic Frustration Effect on the Rate Performance of LiNi0.6Co0.4−xMnxO2 Cathodes for Lithium‐Ion Batteries,” Advanced Energy Materials 12 (2022): 2201556, https://doi.org/10.1002/aenm.202201556. + + + Y. Wang, F. Zhang, Q. Long, et al., “Enhancing Cyclic Stability of Mn‐Based Prussian Blue Cathode for Potassium Ion Storage by High‐Spin Fe Substitution Strategy,” Energy Storage Materials 71 (2024): 103399, https://doi.org/10.1016/j.ensm.2024.103399. + + + E. Watanabe, W. Zhao, A. Sugahara, et al., “Redox‐Driven Spin Transition in a Layered Battery Cathode Material,” Chemistry of Materials 31 (2019): 2358–2365, https://doi.org/10.1021/acs.chemmater.8b04775. + + + H. Yu, Y. Qian, M. Otani, et al., “Study of the Lithium/Nickel Ions Exchange in the Layered LiNi0.42Mn0.42Co0.16O2 Cathode Material for Lithium Ion Batteries: Experimental and First‐Principles Calculations,” Energy & Environmental Science 7 (2014): 1068, https://doi.org/10.1039/c3ee42398k. + + + T. Hu, T. Yang, J. Liu, et al., “A Spin‐Dependent Machine Learning Framework for Transition Metal Oxide Battery Cathode Materials,” arXiv Preprint arXiv (2023), https://doi.org/10.48550/arXiv.2309.01146. + + + M. Eckhoff, K. N. Lausch, P. E. Blöchl, and J. Behler, “Predicting Oxidation and Spin States by High‐Dimensional Neural Networks: Applications to Lithium Manganese Oxide Spinels,” The Journal of Chemical Physics 153 (2020): 164107, https://doi.org/10.1063/5.0021452. + + + +
+ + + 42212994 + + 2026 + 05 + 29 + +
+ + 1876-7591 + + + 2026 + May + 28 + + + JACC. Cardiovascular imaging + JACC Cardiovasc Imaging + + Machine Learning Model Using Pre-Cancer Therapy Cardiac Magnetic Resonance Images to Predict Cancer Therapy-Related Cardiac Dysfunction. + S1936-878X(26)00229-9 + 10.1016/j.jcmg.2026.04.007 + + Predicting risk of cancer therapy-related cardiac dysfunction (CTRCD) remains challenging. + The purpose of this study was to assess if deep learning (DL) approaches using cardiac magnetic resonance (CMR) images before cancer therapy can predict subsequent CTRCD and compare them with clinical and conventional imaging models. + Women with HER2+ breast cancer receiving anthracyclines and trastuzumab from 3 prospective studies (Toronto, Canada: EMBRACE-MRI, SPARE-HF; and Calgary, Canada: CIROC) were included. Patients were assessed before cancer therapy, after anthracycline, and trimonthly with repeated echocardiography and CMR. CTRCD was defined according to CMR. We calculated the HFA-ICOS risk score and measured CMR and echocardiography volumetric and functional parameters. Deep convolutional neural network architectures were used with pre-cancer therapy CMR short-axis cine images to develop image-based DL models to predict CTRCD. The Toronto patients were used for model derivation and internal validation; the Calgary patients were used for external validation. + A total of 229 patients (mean age 50.4 ± 9.7 years) were included: 176 in the internal (52 CTRCD events) development cohort and 53 in the external data set (14 CTRCD events). Our pre-cancer therapy CMR DL model demonstrated an AUC of 0.85 (95% CI: 0.69-0.97) and F1 score 0.69 (95% CI: 0.47-0.86) to predict CTRCD. On external validation, the DL model had an AUC of 0.80 (95% CI: 0.58-0.86) and F1 score of 0.55 (95% CI: 0.32-0.69). In comparison, the best-performing models using HFA-ICOS risk score, CMR, and echocardiographic parameters demonstrated, respectively, AUCs of 0.66 (95% CI: 0.53-0.75), 0.59 (95% CI: 0.41-0.73), 0.62 (95% CI: 0.44-0.78) and F1 scores of 0.56 (95% CI: 0.47-0.61), 0.20 (95% CI: 0.00-0.42) and 0.36 (95% CI: 0.12-0.62) to predict CTRCD. + A DL model using pre-cancer therapy CMR short-axis cines can predict future CTRCD risk better than clinical or manually quantified imaging models. + Copyright © 2026 American College of Cardiology Foundation. Published by Elsevier Inc. All rights reserved. + + + + Yu + Christopher + C + + Department of Medicine, Division of Cardiology, Ted Rogers Program in Cardiotoxicity Prevention, Peter Munk Cardiac Centre, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + Peikari + Mohammad + M + + Ted Rogers Computational Program, Ted Rogers Centre for Heart Research, Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + Labib + Dina + D + + Stephenson Cardiac Imaging Centre, Libin Cardiovascular Institute of Alberta, University of Calgary, Alberta, Canada. + + + + Houbois + Christian P + CP + + Sunnybrook Health Science Centre, University of Toronto, Toronto, Ontario, Canada. + + + + Steve Fan + Chun-Po + CP + + Ted Rogers Computational Program, Ted Rogers Centre for Heart Research, Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + White + James A + JA + + Stephenson Cardiac Imaging Centre, Libin Cardiovascular Institute of Alberta, University of Calgary, Alberta, Canada. + + + + Amir + Eitan + E + + Princess Margaret Cancer Centre, University of Toronto, Toronto, Ontario, Canada. + + + + Hanneman + Kate + K + + Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + J Wintersperger + Bernd + B + + Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Department of Radiology, LMU University Hospital, LMU Munich, Munich, Germany. + + + + Abdel-Qadir + Husam + H + + Department of Medicine, Division of Cardiology, Ted Rogers Program in Cardiotoxicity Prevention, Peter Munk Cardiac Centre, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Women's College Hospital, Toronto, Ontario, Canada. + + + + McIntosh + Chris + C + + Ted Rogers Computational Program, Ted Rogers Centre for Heart Research, Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada; Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Princess Margaret Cancer Centre, Toronto, Ontario, Canada. + + + + Thavendiranathan + Paaladinesh + P + + Department of Medicine, Division of Cardiology, Ted Rogers Program in Cardiotoxicity Prevention, Peter Munk Cardiac Centre, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. Electronic address: dinesh.thavendiranathan@uhn.ca. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + JACC Cardiovasc Imaging + 101467978 + 1876-7591 + + IM + + cardio-oncology + cardiotoxicity cancer therapy–related cardiac dysfunction + heart failure + machine learning + + Funding Support and Author Disclosures This study was funded by operating grants 137132, 142456, and 147814 from the Canadian Institutes of Health Research, an Ontario Early Research Award, a Grant Miller Research grant from the University of Toronto, and AHSC AFP Innovation Funds. Dr Thavendiranathan (147814) is supported by a Canada Research Chair in Cardiooncology (CRC-2019-00097) and the Canadian Cancer Society/Canadian Institutes of Health Research W. David Hargraft Grant. All other authors have reported that they have no relationships relevant to the contents of this paper to disclose. +
+ + + + 2025 + 10 + 2 + + + 2026 + 4 + 7 + + + 2026 + 4 + 10 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 10 + 31 + + + aheadofprint + + 42212994 + 10.1016/j.jcmg.2026.04.007 + S1936-878X(26)00229-9 + + +
+ + + 42212964 + + 2026 + 05 + 29 + +
+ + 2198-3844 + + + 2026 + May + 29 + + + Advanced science (Weinheim, Baden-Wurttemberg, Germany) + Adv Sci (Weinh) + + Machine Learning Accelerated Non-Adiabatic Molecular Dynamics Elucidates Local Polarization Effects on Non-radiative Recombination in Halide Perovskites. + + e75903 + e75903 + + 10.1002/advs.75903 + + Non-radiative recombination is a critical factor limiting the optoelectronic performance of halide perovskites, yet how local polarization induced by charge redistribution regulates this process remains unclear. To gain deeper insight while reducing the high computational cost of conventional non-adiabatic molecular dynamics (NAMD), we developed Hefei-NAMD-S, a machine learning (ML) framework constructed using stacked models. The relative errors of the ML predicted non-adiabatic coupling and pure-dephasing time, calculated with respect to the first-principles values, remain below 1.10%, while the total computational time is reduced by approximately 78%, demonstrating the accuracy and efficiency of the proposed framework. NAMD simulations further reveal that the B-site local polarization is involved in regulating the non-radiative recombination process. The rubidium-substitution-doped system (FARb) and the cesium interstitial doped system exhibit recombination times of about 280 ns, nearly 2.8 times that of the pristine system, and the enhanced performance of FARb has been supported by previous experimental evidence. These results identify B-site local polarization as one of the important factors in suppressing non-radiative recombination and provide a theoretical foundation for designing perovskite materials through local polarization modulation. + © 2026 The Author(s). Advanced Science published by Wiley‐VCH GmbH. + + + + Yang + Bing + B + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Wei + Xiaoli + X + + School of Biological Science and Medical Engineering, Southeast University, Nanjing, China. + + + + Cai + Bo + B + 0000-0002-6605-5931 + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + Department of Materials Science and Metallurgy, University of Cambridge, Cambridge, UK. + + + + Yang + Yan + Y + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Zhu + Xinghai + X + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Liu + Yi + Y + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Xia + Junmin + J + 0000-0002-9805-5397 + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Liu + Lihui + L + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Cao + Kun + K + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Shen + Wei + W + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Xia + Pengfei + P + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Chen + Shufen + S + 0000-0003-0333-958X + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Chen + Siyu + S + + Department of Materials Science and Metallurgy, University of Cambridge, Cambridge, UK. + + + TCM Group, Cavendish Laboratory, University of Cambridge, Cambridge, UK. + + + + Zhao + Jin + J + + Department of Physics and ICQD/Hefei National Research Center for Physical Sciences at the Microscale, University of Science and Technology of China, Hefei, China. + + + Hefei National Laboratory, University of Science and Technology of China, Hefei, China. + + + Department of Physics and Astronomy, University of Pittsburgh, Pittsburgh, USA. + + + + eng + + + 62404107 + National Natural Science Foundation of China + + + + 62304111 + National Natural Science Foundation of China + + + + 62474097 + National Natural Science Foundation of China + + + + BK20220396 + Natural Science Foundation of Jiangsu Province + + + + GDX2022010009 + Project of the State Key Laboratory of Flexible Electronics + + + + GZR2023010041 + Project of the State Key Laboratory of Flexible Electronics + + + + BZ2023059 + Science and Technology Cooperation Project of Hong Kong, Macao, and Taiwan + + + + 20KJA510005 + Natural Science Fund for Colleges and Universities in Jiangsu Province + + + + NY223076 + Natural Science Foundation of Nanjing University of Posts and Telecommunications + + + + NY222069 + Natural Science Research Start-up Foundation of Recruiting Talents of Nanjing University of Posts and Telecommunications + + + + CSC202308320240 + China Scholarship Council + + + + KYCX23_1091 + Ministry of Education, as well as the Postgraduate Research & Practice Innovation Program of Jiangsu Province + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Adv Sci (Weinh) + 101664569 + 2198-3844 + + IM + + excited‐state dynamics + local polarization + machine learning + non‐adiabatic molecular dynamics + +
+ + + + 2026 + 5 + 19 + + + 2026 + 3 + 6 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 10 + 22 + + + aheadofprint + + 42212964 + 10.1002/advs.75903 + + + + G. E. Eperon, S. D. Stranks, C. Menelaou, M. B. Johnston, L. M. Herz, and H. J. Snaith, “Formamidinium Lead Trihalide: A Broadly Tunable Perovskite for Efficient Planar Heterojunction Solar Cells,” Energy & Environmental Science 7 (2014): 982, https://doi.org/10.1039/c3ee43822h. + + + A. A. Zhumekenov, M. I. Saidaminov, M. A. Haque, et al., “Formamidinium Lead Halide Perovskite Crystals With Unprecedented Long Carrier Dynamics and Diffusion Length,” ACS Energy Letters 1 (2016): 32–37, https://doi.org/10.1021/acsenergylett.6b00002. + + + A. Amat, E. Mosconi, E. Ronca, et al., “Cation‐Induced Band‐Gap Tuning in Organohalide Perovskites: Interplay of Spin–Orbit Coupling and Octahedra Tilting,” Nano Letters 14 (2014): 3608–3616, https://doi.org/10.1021/nl5012992. + + + Y. X. Shen, T. K. Zhang, G. Y. Xu, et al., “Strain Regulation Retards Natural Operation Decay of Perovskite Solar Cells,” Nature 635 (2024): 882–889, https://doi.org/10.1038/s41586‐024‐08161‐x. + + + Y. Zou, W. J. Yu, H. Q. Guo, et al., “A Crystal Capping Layer for Formation of Black‐Phase FAPbI3 Perovskite in Humid Air,” Science 385 (2024): 161–167, https://doi.org/10.1126/science.adn9646. + + + S. W. He, L. X. Qin, Z. Z. Liu, J. W. Kang, J. J. Luo, and J. Du, “Efficient Thermally Evaporated Near‐Infrared Perovskite Light‐Emitting Diodes via Phase Regulation,” Nano‐Micro Letters 17 (2025): 270, https://doi.org/10.1007/s40820‐025‐01776‐3. + + + Q. F. Han, S. H. Bae, P. Y. Sun, et al., “Single Crystal Formamidinium Lead Iodide (FAPbI 3 ): Insight Into the Structural, Optical, and Electrical Properties,” Advanced Materials 28 (2016): 2253–2258, https://doi.org/10.1002/adma.201505002. + + + N. R. E. L, https://www.nrel.gov/pv/cell‐efficiency, 2025. + + + J. H. Tao, C. H. Zhao, Z. J. Wang, et al., “Suppressing Non‐Radiative Recombination for Efficient and Stable Perovskite Solar Cells,” Energy & Environmental Science 18 (2025): 509–544, https://doi.org/10.1039/D4EE02917H. + + + J. A. Christians, P. A. M. Herrera, and P. V. Kamat, “Transformation of the Excited State and Photovoltaic Efficiency of CH3NH3PbI3 Perovskite upon Controlled Exposure to Humidified Air,” Journal of the American Chemical Society 137 (2015): 1530–1538, https://doi.org/10.1021/ja511132a. + + + M. H. Liu, X. Han, H. Chen, Q. Peng, and H. Huang, “A Molecular Descriptor of Intramolecular Noncovalent Interaction for Regulating Optoelectronic Properties of Organic Semiconductors,” Nature Communications 14 (2023): 2500, https://doi.org/10.1038/s41467‐023‐38078‐4. + + + J. Y. Wang, Y. Xie, K. Chen, H. B. Wu, J. M. Hodgkiss, and X. W. Zhan, “Physical Insights into Non‐Fullerene Organic Photovoltaics,” Nature Reviews Physics 6 (2024): 365–381, https://doi.org/10.1038/s42254‐024‐00719‐y. + + + S. Han, R. Deng, Q. Gu, et al., “Lanthanide‐Doped Inorganic Nanoparticles Turn Molecular Triplet Excitons Bright,” Nature 587 (2020): 594–599, https://doi.org/10.1038/s41586‐020‐2932‐2. + + + B. Cai, Y. Ma, B. Yang, et al., “A New Descriptor for Complicated Effects of Electronic Density of States on Ion Migration,” Advanced Functional Materials 33 (2023): 2300445, https://doi.org/10.1002/adfm.202300445. + + + M. Yang, P. Moroz, E. Miller, et al., “Energy Transport in CsPbBr3 Perovskite Nanocrystal Solids,” ACS Photonics 7 (2020): 154–164. + + + H. Huang, M. I. Bodnarchuk, S. V. Kershaw, M. V. Kovalenko, and A. L. Rogach, “Lead Halide Perovskite Nanocrystals in the Research Spotlight: Stability and Defect Tolerance,” ACS Energy Letters 2 (2017): 2071–2083, https://doi.org/10.1021/acsenergylett.7b00547. + + + W. J. Yin, T. T. Shi, and Y. F. Yan, “Unique Properties of Halide Perovskites as Possible Origins of the Superior Solar Cell Performance,” Advanced Materials 26 (2014): 4653–4658, https://doi.org/10.1002/adma.201306281. + + + B. Yang, B. Cai, J. Xia, et al., “Reducing Nonradiative Recombination in Halide Perovskites Through Appropriate Band Gaps and Heavy Atomic Masses,” The Journal of Physical Chemistry Letters 16 (2025): 1253–1260, https://doi.org/10.1021/acs.jpclett.4c03358. + + + W. Chu, W. A. Saidi, J. Zhao, and O. V. Prezhdo, “Soft Lattice and Defect Covalency Rationalize Tolerance of β‐CsPbI 3 Perovskite Solar Cells to Native Defects,” Angewandte Chemie International Edition 59 (2020): 6435–6441, https://doi.org/10.1002/anie.201915702. + + + X. Qiao, R. Zhu, D. Yan, et al., “Multi‐Point Collaborative Passivation of Surface Defects for Efficient and Stable Perovskite Solar Cells,” Advanced Functional Materials 34 (2024): 2409852, https://doi.org/10.1002/adfm.202409852. + + + X. S. Tian and R. Long, “Extending Carrier Lifetimes of Metal Halide Perovskites by Defect Passivation With Alkaline Earth Metals: A Time‐Domain Study,” The Journal of Physical Chemistry Letters 16 (2025): 2438–2444, https://doi.org/10.1021/acs.jpclett.5c00139. + + + R. Long, Q. Fang, A. S. Vasenko, R. Shi, W. H. Fang, and O. V. Prezhdo, “Structural Disorder in Higher‐Temperature Phases Increases Charge Carrier Lifetimes in Metal Halide Perovskites,” Journal of the American Chemical Society 144 (2022): 19137–19149. + + + C. Y. Zhao, Q. Sun, P. Xu, et al., “Highly Diffusive Nonluminescent Carriers in Hybrid Phase Lead Triiodide Perovskite Nanowires,” Angewandte Chemie International Edition 63 (2024): 202411499, https://doi.org/10.1002/anie.202411499. + + + M. K. Panda, D. Acharjee, A. B. Mahato, and S. Ghosh, “Hot Carrier Trapping in Light‐Soaked Mixed Phase CsPbI3 Perovskite Nanocrystals,” Advanced Optical Materials 13 (2025): 2402899, https://doi.org/10.1002/adom.202402899. + + + Y. Wang, Y. Wang, T. A. S. Doherty, S. D. Stranks, F. Gao, and D. R. Yang, “Octahedral Units in Halide Perovskites,” Nature Reviews Chemistry 9 (2025): 261–277, https://doi.org/10.1038/s41570‐025‐00687‐6. + + + Z. F. Xu, H. Y. Tsai, J. Y. Cui, et al., “Optimizing Molecular Passivation in MAPbI3 Perovskites: Impact of Dipole Moments and Structural Parameters,” The Journal of Physical Chemistry Letters 15 (2024): 12017–12024, https://doi.org/10.1021/acs.jpclett.4c02965. + + + M. Menahem, Z. B. Dai, S. Aharon, et al., “Strongly Anharmonic Octahedral Tilting in Two‐Dimensional Hybrid Halide Perovskites,” ACS Nano 15 (2021): 10153–10162, https://doi.org/10.1021/acsnano.1c02022. + + + L. Qiao, W. H. Fang, O. Prezhdo, and R. Long, “Suppressing Oxygen‐Induced Deterioration of Metal Halide Perovskites by Alkaline Earth Metal Doping: A Quantum Dynamics Study,” Journal of the American Chemical Society 144 (2022): 5543–5551, https://doi.org/10.1021/jacs.2c00319. + + + Y. L. Liu, R. Long, and W. H. Fang, “Great Influence of Organic Cation Motion on Charge Carrier Dynamics in Metal Halide Perovskite Unraveled by Unsupervised Machine Learning,” The Journal of Physical Chemistry Letters 13 (2022): 8537–8545, https://doi.org/10.1021/acs.jpclett.2c02515. + + + W. Qin, W. Ali, J. F. Wang, et al., “Suppressing Non‐Radiative Recombination in Metal Halide Perovskite Solar Cells by Synergistic Effect of Ferroelasticity,” Nature Communications 14 (2023): 256, https://doi.org/10.1038/s41467‐023‐35837‐1. + + + A. Grieder, M. C. Andrade, H. Takenaka, T. Ogitsu, L. Z. Tan, and Y. Ping, “Carrier Localization and Spontaneous Formation of Two‐Dimensional Polarization Domain in Halide Perovskites,” Physical Review Letters 136301 (2025): 136301, https://doi.org/10.1103/4kyt‐jj6w. + + + C. Zhang, Y. Zhong, Z. Tao, et al., “Advancing nonadiabatic molecular dynamics simulations in solids With E(3) Equivariant Deep Neural Hamiltonians,” Nature Communications 16 (2025): 2033, https://doi.org/10.1038/s41467‐025‐57328‐1. + + + M. Lin, V. Kochat, A. Krishnamoorthy, et al., “Ultrafast non‐radiative dynamics of atomically thin MoSe2,” Nature Communications 8 (2017): 1745, https://doi.org/10.1038/s41467‐017‐01844‐2. + + + Z. Zheng, Y. Shi, J. J. Zhou, O. V. Prezhdo, Q. Zheng, and J. Zhao, “Ab Initio Real‐Time Quantum Dynamics of Charge Carriers in Momentum Space,” Nature Computational Science 3 (2023): 532–541, https://doi.org/10.1038/s43588‐023‐00456‐9. + + + O. V. Prezhdo, “Modeling Non‐adiabatic Dynamics in Nanoscale and Condensed Matter Systems,” Accounts of Chemical Research 54 (2021): 4239–4249, https://doi.org/10.1021/acs.accounts.1c00525. + + + Y. Liu, R. Long, W. Fang, and O. V. Prezhdo, “Nuclear Quantum Effects Prolong Charge Carrier Lifetimes in Hybrid Organic–Inorganic Perovskites,” Journal of the American Chemical Society 145 (2023): 14112–14123, https://doi.org/10.1021/jacs.3c04412. + + + K. Hyeon‐Deuk and O. V. Prezhdo, “Multiple Exciton Generation and Recombination Dynamics in Small Si and CdSe Quantum Dots: An Ab Initio Time‐Domain Study,” ACS Nano 6 (2012): 1239–1250, https://doi.org/10.1021/nn2038884. + + + H. Zhu, K. Miyata, Y. Fu, et al., “Screening in Crystalline Liquids Protects Energetic Carriers in Hybrid Perovskites,” Science 353 (2016): 1409–1413, https://doi.org/10.1126/science.aaf9570. + + + T. R. Nelson, S. Fernandez‐Alberti, and S. Tretiak, “Modeling excited‐state molecular dynamics Beyond the Born–Oppenheimer regime,” Nature Computational Science 2 (2022): 689–692, https://doi.org/10.1038/s43588‐022‐00357‐3. + + + Z. Ni, S. Xu, H. Jiao, H. Gu, C. Fei, and J. Huang, “High Grain Boundary Recombination Velocity in Polycrystalline Metal Halide Perovskites,” Science Advances 8 (2022): abq8345, https://doi.org/10.1126/sciadv.abq8345. + + + C. M. Wolff, P. Caprioglio, M. Stolterfoht, and D. Neher, “Nonradiative Recombination in Perovskite Solar Cells: The Role of Interfaces,” Advanced Materials 31 (2019): 1902762, https://doi.org/10.1002/adma.201902762. + + + D. Liu, B. Wang, Y. Wu, A. S. Vasenko, and O. V. Prezhdo, “Breaking the Size Limitation of Nonadiabatic Molecular Dynamics in Condensed Matter Systems with Local Descriptor Machine Learning,” Proceedings of the National Academy of Sciences 121 (2024): 2403497121, https://doi.org/10.1073/pnas.2403497121. + + + S. Axelrod, E. Shakhnovich, and R. Gomez‐Bombarelli, “Excited state Non‐Adiabatic Dynamics of Large Photoswitchable Molecules using A Chemically Transferable Machine Learning Potential,” Nature Communications 13 (2022): 3440, https://doi.org/10.1038/s41467‐022‐30999‐w. + + + H. Li, Z. Tang, X. Gong, N. Zou, W. Duan, and Y. Xu, “Deep‐Learning Electronic‐Structure Calculation of Magnetic Superstructures,” Nature Computational Science 3 (2023): 321–327, https://doi.org/10.1038/s43588‐023‐00424‐3. + + + B. Wang, W. Chu, A. Tkatchenko, and O. V. Prezhdo, “Interpolating Nonadiabatic Molecular Dynamics Hamiltonian With Artificial Neural Networks,” The Journal of Physical Chemistry Letters 12 (2021): 6070–6077, https://doi.org/10.1021/acs.jpclett.1c01645. + + + Y. Wu, N. Prezhdo, and W. Chu, “Increasing Efficiency of Nonadiabatic Molecular Dynamics by Hamiltonian Interpolation With Kernel Ridge Regression,” The Journal of Physical Chemistry A 125 (2021): 9191–9200, https://doi.org/10.1021/acs.jpca.1c05105. + + + W. Chu, Q. Zheng, O. V. Prezhdo, J. Zhao, and W. A. Saidi, “Low‐Frequency Lattice Phonons in Halide Perovskites Explain High Defect Tolerance Toward Electron‐Hole Recombination,” Science Advances 6 (2020): aaw7453, https://doi.org/10.1126/sciadv.aaw7453. + + + Q. Zheng, W. Chu, C. Zhao, et al., “Ab Initio Nonadiabatic Molecular Dynamics Investigations on The Excited Carriers in Condensed Matter Systems,” WIREs Computational Molecular Science 9 (2019): 1411, https://doi.org/10.1002/wcms.1411. + + + L. Zhang, Q. Zheng, Y. Xie, et al., “Delocalized Impurity Phonon Induced Electron–Hole Recombination in Doped Semiconductors,” Nano Letters 18 (2018): 1592–1599, https://doi.org/10.1021/acs.nanolett.7b03933. + + + W. Chu, W. A. Saidi, Q. Zheng, et al., “Ultrafast Dynamics of Photongenerated Holes at a CH3OH/TiO2 Rutile Interface,” Journal of the American Chemical Society 138 (2016): 13740–13749, https://doi.org/10.1021/jacs.6b08725. + + + Q. Zheng, W. A. Saidi, Y. Xie, et al., “Phonon‐Assisted Ultrafast Charge Transfer at van der Waals Heterostructure Interface,” Nano Letters 17 (2017): 6435–6442, https://doi.org/10.1021/acs.nanolett.7b03429. + + + L. Breiman, “Random Forests,” Machine learning 45 (2001): 5–32, https://doi.org/10.1023/A:1010933404324. + + + S. B. Kotsiantis, “Decision Trees: A Recent Overview,” Artificial Intelligence Review 39 (2013): 261–283, https://doi.org/10.1007/s10462‐011‐9272‐4. + + + D. E. Rumelhart, G. E. Hinton, and R. J. Williams, “Learning Representations by Back‐Propagating Errors,” Nature 323 (1986): 533–536, https://doi.org/10.1038/323533a0. + + + R. Durbin and D. E. Rumelhart, “Product Units: A Computationally Powerful and Biologically Plausible Extension to Backpropagation Networks,” Neural Computation 1 (1989): 133–142, https://doi.org/10.1162/neco.1989.1.1.133. + + + Z. Zhang, J. Wang, Y. Zhang, J. Xu, and R. Long, “Charge Recombination Dynamics in a Metal Halide Perovskite Simulated by Nonadiabatic Molecular Dynamics Combined With Machine Learning,” The Journal of Physical Chemistry Letters 13 (2022): 10734–10740, https://doi.org/10.1021/acs.jpclett.2c03097. + + + Y. Tu, W. Chu, Y. Shi, W. Zhu, Q. Zheng, and J. Zhao, “High Photoreactivity on a Reconstructed Anatase TiO2 (001) Surface Predicted by Ab Initio Nonadiabatic Molecular Dynamics,” The Journal of Physical Chemistry Letters 13 (2022): 5766–5775, https://doi.org/10.1021/acs.jpclett.2c01417. + + + W. Hui, L. Chao, H. Lu, et al., “Stabilizing Black‐Phase Formamidinium Perovskite Formation At Room Temperature and High Humidity,” Science 371 (2021): 1359–1364, https://doi.org/10.1126/science.abf7652. + + + Z. Wu, H. Cai, T. Wu, et al., “The Tricyclic Alkaloid Catalyzed Crystallization of α‐FAPbI3 For High Performance Antisolvent‐Free Perovskite Solar Cells,” Energy & Environmental Science 17 (2024): 4670–4680, https://doi.org/10.1039/D4EE01008F. + + + G. Chen, Y. Qiu, H. Gao, et al., “Air‐Stable Highly Crystalline Formamidinium Perovskite 1D Structures for Ultrasensitive Photodetectors,” Advanced Functional Materials 30 (2020): 1908894, https://doi.org/10.1002/adfm.201908894. + + + G. Ohad, D. Wing, S. E. Gant, et al., “Band Gaps of Halide Perovskites From a Wannier‐Localized Optimally Tuned Screened Range‐Separated Hybrid Functional,” Physical Review Materials 6 (2022): 104606, https://doi.org/10.1103/PhysRevMaterials.6.104606. + + + R. D. Shannon, “Revised Effective Ionic Radii and Systematic Studies of Interatomic Distances in Halides and Chalcogenides,” Acta Crystallographica Section A 32 (1976): 751–767, https://doi.org/10.1107/S0567739476001551. + + + P. Gratia, G. Grancini, J. N. Audinot, et al., “Intrinsic Halide Segregation at Nanometer Scale Determines the High Efficiency of Mixed Cation/Mixed Halide Perovskite Solar Cells,” Journal of the American Chemical Society 138 (2016): 15821–15824, https://doi.org/10.1021/jacs.6b10049. + + + T. F. Lu, W. B. Chu, S. Agrawal, Z. H. Zhang, and O. V. Prezhdo, “Lattice Distortion and Low‐Frequency Anharmonic Phonons Suppress Charge Recombination in Lead Halide Perovskites upon Pseudohalide Doping: Time‐Domain Ab Initio Analysis,” The Journal of Physical Chemistry Letters 14 (2023): 10685–10692, https://doi.org/10.1021/acs.jpclett.3c02850. + + + X. Li, Y. Li, Y. Feng, et al., “Strain Regulation of Mixed‐Halide Perovskites Enables High‐Performance Wide‐Bandgap Photovoltaics,” Advanced Materials 36 (2024): 2401103, https://doi.org/10.1002/adma.202401103. + + + J. B. Chen, H. Dong, J. R. Li, et al., “Solar Cell Efficiency Exceeding 25% Through Rb‐Based Perovskitoid Scaffold Stabilizing the Buried Perovskite Surface,” ACS Energy Letters 7 (2022): 3685–3694, https://doi.org/10.1021/acsenergylett.2c01661. + + + Q. Ji, Q. L. Fang, X. L. Wei, et al., “Origin and Suppression of Nonradiative Recombination in Inorganic Halide Perovskites,” Nano Letters 25 (2025): 5875–5880, https://doi.org/10.1021/acs.nanolett.5c00849. + + + +
+ + + 42212947 + + 2026 + 05 + 29 + +
+ + 1746-0921 + + + 2026 + May + 29 + + + Future microbiology + Future Microbiol + + AI-microbial hybrid biosensors: the next generation of intelligent detection systems. + + 1 + 21 + 1-21 + + 10.1080/17460913.2026.2678101 + + The convergence of artificial intelligence (AI) and microbial biosensor technology is transforming pathogen detection, environmental surveillance, antimicrobial resistance (AMR) profiling, and precision diagnostics. Microbial biosensors exploit the specificity of living microorganisms, but signal variability, scalability limits, and interpretive challenges have constrained clinical adoption. Integration of machine learning (ML) and deep neural networks (DNNs) now enables adaptive, high-performance sensing systems. Applied to multi-sensor datasets-such as electrochemical impedance, Raman spectroscopy, and hyperspectral microscopy-convolutional neural networks (CNNs) and ensemble models achieve bacterial classification accuracies of 95-99%, while markedly reducing diagnostic turnaround times and enabling continuous surveillance. Despite rapid progress, the field remains fragmented, lacking a unified synthesis of system architectures, computational strategies, translational barriers, and regulatory considerations. This narrative review provides an integrative analysis of AI-microbial hybrid biosensors, covering biorecognition principles, AI integration approaches, system designs, clinical and environmental applications, performance metrics, and key challenges. It also highlights emerging directions, including synthetic biology, CRISPR-enabled sensing, and edge computing. By consolidating these dimensions, this review positions AI-microbial hybrid biosensors as a next-generation platform for real-time pathogen detection and adaptive biosurveillance. Literature was identified through systematic searches of Google Scholar, PubMed, Web of Science, Scopus, and IEEE Xplore (2000-2026), supplemented by manual reference screening. + + + + Hama Soor + Taib A + TA + + Medical Laboratory Department, Technical College of Health and Medical Technology, Sulaimani Polytechnic University, Sulaymaniyah, Kurdistan Region, Iraq. + + + + Mustafa + Ayman M + AM + 0009-0005-4254-4182 + + Medical Laboratory Department, Technical College of Health and Medical Technology, Sulaimani Polytechnic University, Sulaymaniyah, Kurdistan Region, Iraq. + + + Scientific Affairs Department, Smart Health Tower, Sulaymaniyah, Kurdistan Region, Iraq. + + + Medical Laboratory Science Department, College of Health Sciences, University of Human Development, Sulaymaniyah, Kurdistan Region, Iraq. + + + Kscien Organization for Scientific Research (Middle East Office), Sulaymaniyah, Kurdistan Region, Iraq. + + + + Abdulkarim + Meer M + MM + + Scientific Affairs Department, Smart Health Tower, Sulaymaniyah, Kurdistan Region, Iraq. + + + + Abdullah + Hiwa O + HO + + Scientific Affairs Department, Smart Health Tower, Sulaymaniyah, Kurdistan Region, Iraq. + + + Kscien Organization for Scientific Research (Middle East Office), Sulaymaniyah, Kurdistan Region, Iraq. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + England + Future Microbiol + 101278120 + 1746-0913 + + IM + + Artificial intelligence + antimicrobial resistance + deep learning + machine learning + microbial biosensors + pathogen detection + synthetic biology + +
+ + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 10 + 3 + + + aheadofprint + + 42212947 + 10.1080/17460913.2026.2678101 + + +
+
\ No newline at end of file diff --git a/data/raw/pubmed_20260530_112127.xml b/data/raw/pubmed_20260530_112127.xml new file mode 100644 index 0000000..24dcff4 --- /dev/null +++ b/data/raw/pubmed_20260530_112127.xml @@ -0,0 +1,21919 @@ + + + + + 42216193 + + 2026 + 05 + 29 + +
+ + 1742-4755 + + + 2026 + May + 29 + + + Reproductive health + Reprod Health + + Predicting short birth intervals in Bangladesh using stacked machine learning and SHAP explainability: evidence from BDHS 2022. + 10.1186/s12978-026-02367-0 + + Short birth interval (SBI) is a major public health concern, associated with adverse outcomes such as preterm birth, low birth weight, and maternal depletion. Identifying its influential predictors is essential for improving family planning and maternal health interventions. The study aimed to predict SBI and identify its influential predictors using stacked machine learning and SHAP explainability. + This study used data, obtained from the Bangladesh Demographic and Health Survey (BDHS), 2022. The dataset comprised 11,872 respondents, of whom 2,137 experienced SBI (18.0%). Class imbalance problem was addressed by applying class weighting during model training. Boruta and least absolute shrinkage and selection operator-based methods were applied to identify the most important predictors of SBI. Subsequently, multiple machine learning models (including logistic regression, random forest, extreme gradient boosting, categorical boosting, artificial neural network, and stacking ensemble) were used to predict SBI and evaluated their model performances using accuracy, precision, sensitivity, F1-score, and the area under the curve (AUC). Finally, SHAP explainability were employed to identify the most influential predictors of SBI. + The stacking ensemble model achieved the highest predictive performance compared to the individual models, with an accuracy of 65.8%, precision of 42.6%, sensitivity of 72.3%, F1-score of 53.6%, and modest AUC of approximately 0.667. The SHAP analysis showed that no educated respondents, higher parity, and do not intend to use contraceptive method were the most influential predictors of SBI. + Interventions could therefore focus on improving female education, expanding access to contraceptives, and promoting awareness of optimal birth spacing. Policymakers may incorporate SHAP explainability to support data-driven reproductive health strategies to reduce SBI in Bangladesh. + © 2026. The Author(s). + + + + Mia + Mostakim + M + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Akter + Shanti + S + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Sraboni + Takyeatun Nesa + TN + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Islam + Md Merajul + MM + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Tawabunnahar + Mst + M + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Maniruzamman + Md + M + + Statistics Discipline, Khulna University, Khulna, 9208, Bangladesh. + + + + Hossain + Md Golam + MG + + Health Research Group, Department of Statistics, University of Rajshahi, Rajshahi, 6205, Bangladesh. hossain95@yahoo.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Reprod Health + 101224380 + 1742-4755 + + IM + + Birth Spacing + Family Planning + Maternal and Child health + Model Interpretability + Predictive Modeling + + Declarations. Ethics approval and consent to participate: The survey was conducted in accordance with the Declaration of Helsinki, and the protocol for the 2022 BDHS received ethical clearance from both the ICF Institutional Review Board ethics committee and the Bangladesh Medical Research Council (BMRC). Informed written consent was obtained from each participant before commencement of the interview. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. Conflict of interest: The authors declare that they have no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 10 + 14 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 23 + 45 + + + aheadofprint + + 42216193 + 10.1186/s12978-026-02367-0 + 10.1186/s12978-026-02367-0 + + +
+ + + 42216185 + + 2026 + 05 + 29 + +
+ + 1758-2946 + + + 2026 + May + 29 + + + Journal of cheminformatics + J Cheminform + + Towards the design of artificial sensing materials via quantum-informed explainable AI. + 10.1186/s13321-026-01232-3 + + Computational design of sensing materials remains fundamentally challenging due to the vast configurational landscape and the absence of robust property correlations that enable efficient molecular representation. These challenges become particularly critical in healthcare applications, where reliable and interpretable molecular recognition is essential for non-invasive diagnostics. To address these challenges, we developed MORE-ML, a quantum-informed AI framework that combines electronic-structure-derived properties of e-nose molecular building blocks with machine learning (ML) methods to uncover sensing mechanisms and guide the design of new systems. Within this framework, we expanded our previous dataset, MORE-Q, to MORE-QX by sampling a larger conformational space of interactions between body odor volatilomes (BOV) molecules and mucin-derived receptors, both in the gas phase and when deposited on graphene. MORE-QX provides extensive electronic binding features (BFs) computed upon BOV adsorption. Analysis of the property space revealed weak correlations between quantum-mechanical (QM) properties of building blocks and resulting BFs. Leveraging this observation, we defined electronic descriptors of building blocks as inputs for tree-based ML models to predict BFs. Benchmarking showed CatBoost models outperform alternatives, especially in transferability to unseen compounds. Through explainable AI, we reduced the high-dimensional QM property space to a compact and physically interpretable set of descriptors, revealing the properties that most influence BF predictions. Collectively, MORE-ML combines QM insights with ML to provide mechanistic understanding and rational design principles for artificial sensing materials in BOV sensing. This approach establishes a foundation for advancing materials capable of analyzing complex odor mixtures, bridging the gap between molecular-level computations and practical e-nose applications. + © 2026. The Author(s). + + + + Chen + Li + L + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. + + + + Medrano Sandonas + Leonardo + L + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. leonardo.medrano@tu-dresden.de. + + + + Huang + Shirong + S + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. + + + + Croy + Alexander + A + + Institute of Physical Chemistry, Friedrich Schiller University Jena, 07737, Jena, Germany. + + + + Cuniberti + Gianaurelio + G + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Dresden Center for Computational Materials Science (DCMS), TUD Dresden University of Technology, 01062, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Cluster of Excellence CARE, TUD Dresden University of Technology and RWTH Aachen, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Cluster of Excellence CeTI, TUD Dresden University of Technology, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + + eng + + + 101046369 + HORIZON EUROPE European Innovation Council + + + + RTG2767 + Deutsche Forschungsgemeinschaft + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + J Cheminform + 101516718 + 1758-2946 + + + Explainable AI + Healthcare + Molecular sensing + Quantum-informed descriptors + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 17 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 23 + 45 + + + aheadofprint + + 42216185 + 10.1186/s13321-026-01232-3 + 10.1186/s13321-026-01232-3 + + +
+ + + 42216176 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + 26 + 1 + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Correction to: Simultaneous prediction of early and delayed mortality in burn patients: a comparative machine learning analysis of feature importance in a single-center retrospective study. + 194 + 10.1186/s12911-026-03563-5 + + + Motamedi + Mehran + M + + Nanotechnology Engineering, Babol Noshirvani University of Technology, Shariati Avenue, Babol, Mazandaran Province, 47148-71167, Iran. + + + + Moallemkolaei + Najibeh Mohseni + NM + + Health Information Management, Health Information Management Research Center, Kashan University of Medical Sciences, Ravandi Boulevard, Kashan, Isfahan Province, 87159-73449, Iran. + + + + Hesamirostami + Mohammadhossein + M + + Plastic and Reconstructive Surgery, Mazandaran University of Medical Sciences, Daneshgah Boulevard, Sari, Mazandaran Province, 48157-33971, Iran. hesami_plas@yahoo.com. + + + + Ghorbani + Mojtaba + M + + Plastic and Reconstructive Surgery, Mazandaran University of Medical Sciences, Daneshgah Boulevard, Sari, Mazandaran Province, 48157-33971, Iran. + + + + Arani + Leila Shokrizadeh + LS + + Health Information Management, Health Information Management Research Center, Kashan University of Medical Sciences, Ravandi Boulevard, Kashan, Isfahan Province, 87159-73449, Iran. + + + + eng + + Published Erratum + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + + BMC Med Inform Decis Mak. 2025 Dec 5;26(1):7. doi: 10.1186/s12911-025-03311-1. + 41350855 + + +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 44 + + + epublish + + 42216176 + 10.1186/s12911-026-03563-5 + 10.1186/s12911-026-03563-5 + + +
+ + + 42216170 + + 2026 + 05 + 29 + +
+ + 1475-9276 + + + 2026 + May + 29 + + + International journal for equity in health + Int J Equity Health + + Intersection of gender and class in the assessment of self-rated health in the Spanish population: a classification tree study. + 10.1186/s12939-026-02897-w + + This study assesses the influence of various specific health conditions as activity limitations and groups of chronic diseases, in estimating poor self-rated health for the Spanish population aged 30-60, stratified by the intersections of gender and social class. Moving beyond unidimensional social gradients, the research utilises decision tree analysis to identify specific configurations of SRH responses that align with the epidemiological profiles of distinct intersectional strata. + Data were drawn from the 2023 Spanish Health Survey (ESdE), focusing on a sample of 10,210 adults aged 30-60. This age bracket was selected to capture health inequality dynamics during the working life-course. Specific machine learning decision trees (J48 algorithm) were employed to assess the pathways for classifying individuals with poor SRH across six distinct intersectional groups. + Resulting decision trees differ significantly in composition, shape, and length across strata. A clear trend emerged: less skilled groups exhibited higher tree complexity, reflecting a more rapid accumulation of chronic illnesses at earlier ages. + This research contributes to the emerging field of study regarding what truly underlies individuals' general assessment of their health. The resulting decision trees illustrate the social gradient in health in a novel way that enriches the understanding of health inequalities. Instead of simply showing a linear trend across a one-dimensional variable, these trees reveal that as disadvantages accumulate through the intersection between gender and social class, the combination of relevant diseases do not only become more complex, but also distinct, in specific and unique ways for each group, as the intersectional framework predicts. + © 2026. The Author(s). + + + + Gumà-Lao + Jordi + J + + Centre for Demographic Studies, Barcelona, Spain. jguma@ced.uab.es. + + + + Barnils + Núria Pedrós + NP + + Institute for Public Health and Nursing Research, University of Bremen, Bremen, Germany. + + + Department of Epidemiology and Global Health, Umeå University, Umeå, Sweden. + + + + Parra-Casado + Daniel La + D + + Department of Sociology II, University of Alicante, Alicante, Spain. + + + + eng + + + Ramón y Cajal program (RYC2022-037781-I) + Agencia Estatal de Investigación + + + + "Generación de Conocimiento" Project [PID2022-141543OB-I00] + Agencia Estatal de Investigación + + + + 535865195 + Deutsche Forschungsgemenischaft + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Int J Equity Health + 101147692 + 1475-9276 + + IM + + Health inequity + Intersectional framework + Machine learning + Self-rated health + + Declarations. Human ethics and consent to participate: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 3 + + + 2026 + 5 + 14 + + + 2026 + 5 + 29 + 23 + 44 + + + aheadofprint + + 42216170 + 10.1186/s12939-026-02897-w + 10.1186/s12939-026-02897-w + + +
+ + + 42216166 + + 2026 + 05 + 29 + +
+ + 1471-2474 + + + 2026 + May + 29 + + + BMC musculoskeletal disorders + BMC Musculoskelet Disord + + Optimizing preoperative planning for total hip arthroplasty using random forest models to predict stem size and compatibility. + 10.1186/s12891-026-10022-9 + + Preoperative planning is essential for optimal outcomes post-total hip arthroplasty (THA). Appropriate stem size and compatibility with femoral dimensions are essential in THA to prevent distal fixation. Previous studies have proposed deep learning-based models with image recognition for preoperative planning to determine the best-fit stem; however, whether size and compatibility are adequately optimized remains unclear. This study developed methods that may assist surgeons in preoperative planning to estimate the stem size and compatibility using supervised machine learning models. + Two Random Forest (RF) models were developed to estimate the best-fit stem size and stem compatibility with the femoral geometry. Femoral size information measured at 10 locations from computed tomography images of 320 hips was used to train the models. The training data included the sizes and compatibility information as the target variables for supervised learning provided by a simulation software currently used in clinical practice to determine the optimal stem. As part of feature engineering, ratios derived from combinations of the 10 measured values were used as learning data. The size estimation model was designed as a seven-class classification model, whereas the compatibility estimation model was a binary classification model, predicting whether the stem will exclusively fit distally or not. Both models were tested using data from 109 hips of patients who underwent THA. The model performances were assessed using accuracy, F1 score, precision, and recall. Each parameter's impact was determined using feature importance analysis. + The size and compatibility estimation models trained without ratio information showed accuracies of 89.0% (exact-match: 46.8%) and 85.3%, respectively. When it was included, the models' performance improved, with the size and compatibility estimation accuracies increasing to 92.7% (exact-match: 39.4%) and 87.2%, respectively. Feature importance analysis highlighted that distal medullary cavity diameter is key in size estimation, while overall femoral dimensions are vital for compatibility estimation. + This study developed models that estimate the two critical factors in stem selection: size and compatibility. These models may support preoperative planning for THA using the Accolade II stem, although further validation is required to establish applicability to other implant systems. + © 2026. The Author(s). + + + + Kaneoka + Takehiro + T + 0000-0002-2742-4183 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Imagama + Takashi + T + 0000-0001-8509-1850 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Okazaki + Tomoya + T + 0000-0002-6635-3541 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Matsuki + Yuta + Y + 0000-0002-0664-4136 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Kawakami + Takehiro + T + 0000-0001-6363-560X + + Department of Orthopaedic surgery, Yamaguchi Prefectural Grand Medical Centre, Hofu, Yamaguchi, JP, Japan. + + + + Yamazaki + Kazuhiro + K + 0000-0002-1627-7368 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Sasaki + Kei + K + 0009-0003-8535-1589 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Asai + Yoshiyuki + Y + 0000-0001-5519-4306 + + Department of Systems Bioinformatics, Graduate School of Medicine, Yamaguchi University, Yamaguchi, Japan. + + + + Sakai + Takashi + T + 0000-0001-6367-1299 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. cozy@yamaguchi-u.ac.jp. + + + + eng + + + JP22he0122010 + Japan Agency for Medical Research and Development (AMED) + + + + JP 23K10426 + JSPS KAKENHI + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Musculoskelet Disord + 100968565 + 1471-2474 + + IM + + femoral dimensions + machine learning + preoperative planning + random forest + total hip arthroplasty + + Declarations. Ethics approval and consent to participate: This retrospective study’s protocol was approved by the by the Ethics Committee of Yamaguchi University Graduate School of Medicine (approval number: H2021-166-2), and informed consent was obtained from all participants. The ethical standards from the 1964 Helsinki declaration and its later amendments were upheld. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2024 + 12 + 4 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 44 + + + aheadofprint + + 42216166 + 10.1186/s12891-026-10022-9 + 10.1186/s12891-026-10022-9 + + +
+ + + 42216115 + + 2026 + 05 + 29 + +
+ + 1471-2393 + + + 2026 + May + 30 + + + BMC pregnancy and childbirth + BMC Pregnancy Childbirth + + Predicting facility delivery and its determinants among reproductive-age women in Ethiopia using machine learning algorithm: evidence from performance monitoring for action Ethiopia 2019 dataset. + 10.1186/s12884-026-09354-0 + + Facility delivery attended by skilled health professionals is a critical strategy for reducing maternal and neonatal mortality. Despite substantial efforts to expand maternal health services in Ethiopia, a large proportion of births still occur at home. This study aimed to predict facility delivery and identify its associated factors among reproductive-age women in Ethiopia using machine learning approaches. + This study used secondary data from the 2019 Performance Monitoring for Action (PMA) Ethiopia cross-sectional household and female survey. A weighted sample of 5,413 women aged 15-49 years who had a recent birth was included in the analysis. Data extraction and preprocessing were conducted using STATA version 17, while machine learning models were implemented using Python version 3.11.5. Seven supervised machine learning algorithms were developed to predict facility delivery. Model performance was evaluated using accuracy, precision, recall, F1 score, and the area under the receiver operating characteristic curve (AUC). Data preparation included feature engineering, data splitting, handling missing values, addressing class imbalance, and outlier detection. SHapley Additive exPlanations (SHAP) were applied to interpret the contribution of important predictors to model predictions. + Among the evaluated models, the Random Forest algorithm demonstrated the best predictive performance, achieving 74.15% accuracy, 72.58% recall, 76.27% F1-score, and 80.36% precision on test data. The most influential predictors of facility delivery included higher household wealth status, secondary or higher maternal education, television ownership, discussion of delivery location with a partner, partner encouragement for antenatal care attendance, family planning use, maternal age between 20 and 34 years, age at first sexual intercourse of 19 years or older, awareness of emergency contacts, and completion of primary education. + Interpretable machine learning approaches can provide useful insights for identifying factors associated with facility delivery. The findings highlight key socioeconomic and behavioral characteristics that may inform targeted strategies to improve utilization of facility-based delivery services and support efforts to enhance maternal health outcomes in Ethiopia. + © 2026. The Author(s). + + + + Degefa + Siraj Muhidin + SM + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. sirajmuhidin6@gmail.com. + + + + Hailu + Beriso Alemu + BA + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. + + + + Serbessa + Naol Gonfa + NG + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. + + + + Tsehay + Asmamaw Ketemaw + AK + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Sedi + Tigist Tollessa + TT + + Department of Health Informatics, College of Medicine and Health Sciences, Arbaminch University, Arbaminch, Ethiopia. + + + + Woldekidan + Eden Ketema + EK + + Department of Health Informatics, College of Medicine and Health Sciences, Arbaminch University, Arbaminch, Ethiopia. + + + + Ahmed + Mohammedjud Hassen + MH + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Adem + Jibril Bashir + JB + + Department of Public Health, College of medicine and Health sciences, Arsi University, Asella, Ethiopia. + + + + Wale + Agmasie Damtew + AD + + Department of Health Informatics, School of Public Health, Asrat Woldeyes Health Science Campus, Debre Berhan University, Debre Berhan, Ethiopia. + + + + Guadie + Habtamu Alganeh + HA + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Asemahagn + Mulusew Andualem + MA + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + England + BMC Pregnancy Childbirth + 100967799 + 1471-2393 + + IM + + Determinants + Ethiopia + Facility delivery + Women + + Declarations. Ethics approval and consent to participate: For this study, secondary anonymized data were used, and permission to access the dataset was obtained from the Performance Monitoring for Action (PMA) data repository through the official PMA data access portal: PMA Dataset Access Portal. Ethical clearance for this secondary data analysis was obtained from the Institutional Review Board (IRB) of Bahir Dar University, College of Medicine and Health Sciences. The study was conducted in accordance with the Declaration of Helsinki. Since the dataset was fully anonymized and publicly available for research purposes, informed consent from participants was not required for this secondary analysis. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2024 + 11 + 7 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 42 + + + aheadofprint + + 42216115 + 10.1186/s12884-026-09354-0 + 10.1186/s12884-026-09354-0 + + +
+ + + 42216109 + + 2026 + 05 + 29 + +
+ + 2045-3701 + + + 2026 + May + 29 + + + Cell & bioscience + Cell Biosci + + Decoding the role of H19 in cholestatic liver injury using snRNA-seq, spatial transcriptomics, and machine learning-based disease prediction. + 10.1186/s13578-026-01590-3 + + Despite recent advances, Primary Sclerosing Cholangitis (PSC)-a chronic obstructive biliary disease-still lacks effective therapies to prevent disease progression or the need for liver transplantation. Moreover, up to 30% of transplant recipients experience recurrence. Long non-coding RNA H19 (H19) has been implicated in promoting PSC progression, yet the cellular and molecular mechanisms underlying its pathogenic role remain incompletely understood. + Liver tissues from age- and sex-matched wild type (WT), H19 knockout (H19KO), Mdr2 knockout (Mdr2KO), and double-knockout (DKO; Mdr2KO/H19KO) mice were analyzed using single-nucleus RNA sequencing (snRNAseq) and GeoMx spatial transcriptomics to define the cell type and spatially specific effects of H19 deletion in cholestatic liver injury. Machine learning models were built to develop cell-type-specific gene prediction signatures and cross-validated using the human dataset GSE243981. A disease-associated cholangiocyte subcluster that increased in Mdr2KO but was markedly reduced in DKO mice was identified. SPP1 signaling was significantly dysregulated in cholestatic liver injury and mitigated following H19 deletion. Translationally conserved healthy (Clu, Spp1) and diseased (Csmd1, Slco3a1, Cftr) cholangiocyte markers were identified. When validated in a human patient dataset (GSE243981), our machine-learning prediction models achieved AUC values > 0.869. Finally, spatial analyses demonstrated that the mitigation of disease-associated gene expression following H19 deletion was specifically restricted to hepatocytes within the bile duct region. + H19 deletion mitigates cholestatic injury by suppressing pathogenic cholangiocyte states, normalizing Spp1-mediated signaling, and shifting transcriptional programs specifically within the periductal niche. Furthermore, our machine-learning signatures demonstrate robust cross-species translation and may benefit future post-transplant analytics and disease recurrence predictions. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Way + Grayson W + GW + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Jiang + Xixian + X + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Lu + Hongkun + H + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Wu + Nan + N + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Zhao + Derrick + D + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Tai + Yun-Ling + YL + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Bayatpour + Sareh + S + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Wang + Xuan + X + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Zhou + Huiping + H + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. huiping.zhou@vcuhealth.org. + + + Richmond Veterans Affairs Medical Center, Richmond, VA, 23249, USA. huiping.zhou@vcuhealth.org. + + + + eng + + + 5T32AA029975 + GF + NIH HHS + United States + + + DK115377, 2R56DK115377-05A1, 5R01AA030180, R01DK139587, NIH-NCI P01CA275740 + GF + NIH HHS + United States + + + 5I01BX005730,1 IS1 BX004777-01 and 1IS1BX005517-01, IK6BX004477 + U.S. Department of Veterans Affairs + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Cell Biosci + 101561195 + 2045-3701 + + + Cholestasis + H19 + Long non-coding RNA + Machine learning + Primary sclerosing cholangitis + SPP1 + + Declarations. Conflict of interest: Huiping Zhou is the corresponding author and is also an Editor for the journal. Ethics approval and consent to participate: All animal experiments were performed following institutional guidelines for ethical animal studies and approved by the Virginia Commonwealth University and Richmond VA Medical Center Institutional Animal Care and Use Committee, Virginia, USA. All patient samples used followed Richmond VA Medical Center Institutional Review Board guidelines for de-identified consenting patients. Consent for publication: All authors have given their consent for publication. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 11 + + + 2026 + 5 + 7 + + + 2026 + 5 + 29 + 23 + 40 + + + aheadofprint + + 42216109 + 10.1186/s13578-026-01590-3 + 10.1186/s13578-026-01590-3 + + +
+ + + 42216097 + + 2026 + 05 + 29 + +
+ + 1758-9193 + + + 2026 + May + 29 + + + Alzheimer's research & therapy + Alzheimers Res Ther + + EEG biomarkers can predict early-stage Alzheimer's disease and correlate with intracerebral pathology: a multimodal machine learning study. + 10.1186/s13195-026-02096-3 + + Early recognition of Alzheimer's disease (AD) is crucial for timely intervention and delaying disease progression. Electroencephalogram (EEG) technology provides a direct reflection of the brain's dynamic activity. However, the relationship between potential EEG features and cognitive function in early-stage AD patients, as well as cerebrospinal fluid (CSF) pathological biomarkers, remains unclear. + This study included 101 patients with mild cognitive impairment (MCI) and mild AD, alongside 69 healthy controls (HC) matched for gender, age, and educational attainment. Extracting EEG power spectral density (PSD) and microstates analysis features as training features for machine learning (ML), we employed five ML algorithms-Support Vector Machines (SVM), Logistic Regression (LR), Random Forests (RF), XGBoost, and LightGBM-for training and testing. Model performance was assessed using the area under the receiver operating characteristic curve (AUC). SHapley Additive exPlanations (SHAP) plots were employed to elucidate variable importance within the model, and sequential forward selection (SFS) was utilised to identify potential features. Correlation analysis and mediation analysis were conducted to investigate the relationships between EEG features, CSF pathological biomarkers, and cognitive function. + The LR model demonstrated the highest average predictive performance in the training set (mean AUC = 0.859 ± 0.059). The model incorporating PSD and microstates features demonstrated optimal predictive performance in the test set (AUC = 0.949, 95% CI: 0.877-1.000), outperforming any single-feature model. Based on SHAP and SFS analyses, six potential EEG indicators were identified: central region delta frequency band, central region theta frequency band, temporal region beta frequency band, microstate mean duration, microstate C duration, and the transition probability from microstate C to A. Mediation analysis revealed a significant negative correlation between central region theta frequency band and CSF Aβ₁₋₄₂ levels (r = - 0.31, p = 0.015), and the central region theta frequency band mediated the relationship between Aβ₁₋₄₂ levels and Mini-Mental State Examination (MMSE) scores (indirect effect = 0.0007, 95% CI: 0.0001-0.0013). + The combined application of EEG and ML enables efficient classification diagnosis of early-stage AD, and EEG is correlated with intracerebral pathological biomarkers and cognitive impairment. + © 2026. The Author(s). + + + + Geng + Zhi + Z + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Song + Wenqian + W + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Gao + Chen + C + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Zhu + Yun + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Yue + Y + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + Department of Sleep Psychology, The Second Hospital of Anhui Medical University, Anhui Medical University, Hefei, China. + + + + Song + Bo + B + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Guo + Haihua + H + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Jiayun + J + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Fang + Miao + M + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Yan + Yibing + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Zhou + Shanshan + S + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Hu + Panpan + P + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Tian + Yanghua + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Xingqi + X + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. wuxq@fy.ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. wuxq@fy.ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. wuxq@fy.ahmu.edu.cn. + + + + Wang + Kai + K + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. kwang@ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. kwang@ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. kwang@ahmu.edu.cn. + + + Anhui Provincial Institute of Translational Medicine, Anhui Medical University, Hefei, China. kwang@ahmu.edu.cn. + + + + Wei + Ling + L + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. weil@fy.ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. weil@fy.ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. weil@fy.ahmu.edu.cn. + + + + eng + + + 82101498 + National Natural Science Foundation of China + + + + 82371201 + National Natural Science Foundation of China + + + + 82371201 + National Natural Science Foundation of China + + + + 2021kj19 + The 2021 Youth Foundation training program of the First Affliated Hospital of Anhui Medical University + + + + 202204295107020006 + The Anhui Province Clinical Medical ResearchTransformation Special Project + + + + XZZR202402048 + The Natural Science Foundation of theXizang Autonomous Region Group Medical Aid Project to Xizang + + + + 2022zhyx-B11 + Research Fund of Anhui Institute of Translational Medicine + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Alzheimers Res Ther + 101511643 + + IM + + Alzheimer’s disease + CSF biomarkers + EEG microstates + EEG power spectral density + Machine learning + + Declarations. Ethics approval and consent to participate: The studies involving human participants were reviewed and approved by the Research Ethics Committee of the First Affiliated Hospital of Anhui Medical University. The patients/participants provided their written informed consent to participate in this study. Consent for publication: All participants provided consent for the publication of this manuscript. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 12 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 40 + + + aheadofprint + + 42216097 + 10.1186/s13195-026-02096-3 + 10.1186/s13195-026-02096-3 + + +
+ + + 42216034 + + 2026 + 05 + 29 + +
+ + 1475-2867 + + + 2026 + May + 29 + + + Cancer cell international + Cancer Cell Int + + DNA damage response signature-based prognostic genes for intrahepatic cholangiocarcinoma: a combined analysis of machine learning and biological experiments. + 10.1186/s12935-026-04355-7 + + Intrahepatic cholangiocarcinoma (ICC) is a highly aggressive subtype of primary liver cancer with insidious onset, early metastasis, and poor prognosis. DNA damage response (DDR) dysfunction is linked to ICC tumorigenesis, progression, and drug resistance. However, the detailed mechanisms remain underexplored. + DDR activity was quantified by ssGSEA across 6 independent ICC cohorts. DDR risk model was analyzed using 10 machine learning algorithms to construct 101 combined models, and the optimal Lasso + RSF model was adopted by c-index. The core gene SFN was selected for experimental validation. Single‑cell RNA sequencing and spatial transcriptomics were used to explore cellular localization and tissue distribution of signature genes. In vitro assays were performed in ICC cell lines after SFN knockdown to assess cell proliferation and chemosensitivity. + The DDR risk model showed stable prognostic performance in training and external validation cohorts. High‑risk patients exhibited poor prognosis, immunosuppressive microenvironment and reduced sensitivity to multiple chemotherapeutic agents. SFN was specifically enriched in malignant cells. Knockdown of SFN significantly suppressed cell proliferation and colony formation, enhanced sensitivity to cisplatin and gemcitabine, and increased γ‑H2AX expression indicating elevated DNA double‑strand breaks. + We constructed a robust DDR‑based prognostic model for ICC that enables accurate risk stratification and prediction of therapeutic response. SFN serves as a critical driver of chemoresistance and a potential therapeutic target. These results offer novel biomarkers and mechanistic insights to facilitate precision medicine for ICC patients. + © 2026. The Author(s). + + + + Lu + Kai + K + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Li + Hanqi + H + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Wu + Yinying + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Dong + Xuyuan + X + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Dong + Danfeng + D + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Fan + Yangwei + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Li + Enxiao + E + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Sun + Liankang + L + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. sunliankang@xjtu.edu.cn. + + + + Shi + Yu + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. shiyu@xjtu.edu.cn. + + + + eng + + + 2022JQ-846 + Natural Science Basic Research Program of Shaanxi + + + + 2021QN-01,2022QN-15 + Research Foundation of the First Affiliated Hospital of Xi'an Jiaotong University + + + + xzy012022103 + Fundamental Research Funds for the Central Universities + + + + 82303663 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Cancer Cell Int + 101139795 + 1475-2867 + + + DNA damage response + Experimental validation + Intrahepatic cholangiocarcinoma + Machine learning + Prognostic markers + + Declarations. Ethics approval and consent to participate: All data utilized in this study were retrieved from publicly available online databases, as specified in the manuscript. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 8 + 3 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 38 + + + aheadofprint + + 42216034 + 10.1186/s12935-026-04355-7 + 10.1186/s12935-026-04355-7 + + +
+ + + 42216026 + + 2026 + 05 + 29 + +
+ + 1757-6512 + + + 2026 + May + 29 + + + Stem cell research & therapy + Stem Cell Res Ther + + KRT6A derived from mesenchymal stem cells as a potential biomarker and therapeutic target for alopecia areata: insights from multi-omics analysis and experimental evidence. + 10.1186/s13287-026-05077-3 + + Mesenchymal stem cells (MSCs) secretome have shown promise in the treatment of alopecia areata (AA). However, the key therapeutic genes remain unclear. This study aimed to identify potential critical therapeutic molecules using multi-omics approaches. + MSCs extracellular vesicles related genes was retrieved from ExoCarta database, and which integrated with transcriptomic and proteomic sequencing data from AA for cross-analysis to identify AA-related therapeutic genes. Mfuzz clustering, PPI networks, and machine learning algorithms were employed to potential key therapeutic factors. Functional mechanisms were explored through gene expression analysis, immune infiltration, single-cell RNA sequencing (scRNA-seq) and spatial transcriptomics. AA mice were used for experimental validation. + We identified 146 MSCs-derived genes with potential therapeutic relevance for AA. Enrichment analysis suggests that they are involved in skin development and differentiation. Through Mfuzz clustering, 13 machine learning algorithms, and combined with SHAP interpretability analysis, the KRT6A was we further identified as the most critical candidate gene. Validation analyses demonstrated that KRT6A serves as a robust diagnostic marker for AA (AUC = 0.989), a predictor of disease severity (AUC = 0.769), and a protective factor (HR = 0.52, 95%CI: 0.34-0.79). Immune infiltration analysis revealed severe immune dysregulation in AA, and KRT6A was significantly negative correlated with dysregulated immune cells. By exploring the expression source of KRT6A, we found that it was mainly enriched in skin hair follicle tissues, and single-cell subset analysis and spatial transcriptomics further mapped KRT6A to hair follicle stem-like cells from the cellular level, yet KRT6A was significantly downregulated in AA models. Primary human hair follicle mesenchymal stem cells (HFMSCs) further confirmed KRT6A localization. Furthermore, KRT6A-overexpressing HFMSCs exhibited enhanced migration, whereas KRT6A knockdown reduced migration and suppressed WNT pathway activation. Conditioned medium from KRT6A-overexpressing HFMSCs effectively alleviated alopecia and reduced apoptosis in AA mice, whereas KRT6A knockdown reversed these effects. + MSCs-derived KRT6A may serve as a potentia biomarker and therapeutic target for AA, which provide novel insights into AA pathogenesis and may help the development of targeted therapeutic strategies. + © 2026. The Author(s). + + + + Peng + Shixiong + S + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Deng + Jia + J + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Meng + Xiuming + X + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Deng + Shuangjie + S + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Yan + Wenjie + W + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. ywj716@glmu.edu.cn. + + + + Huang + Xi + X + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. professorhuangxi@163.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Stem Cell Res Ther + 101527581 + 1757-6512 + + IM + + Alopecia areata + KRT6A + Machine learning + Mesenchymal stem cells + Multi-omics + + Declarations. Ethics approval and consent to participate: The animal research, entitled “KRT6A from Mesenchymal Stem Cells Exosomes as a Potential Biomarker and Therapeutic Target for Alopecia Areata: Insights from Multi-omics Analysis and Experimental Evidence”, was approved by the Animal Ethics Committee of Guilin Medical University (GLMU-IACUC-20251084) on August 13, 2025, and was performed in accordance with the ARRIVE 2.0 guidelines. The human-related research in this study, which was part of the project entitled “Exosome Multimodal Analysis Reveals the Mechanism by Which Mesenchymal Stem Cell Exosomes Regulate Hair Follicle Regeneration”, was approved by the Ethics Committee of the Affiliated Hospital of Guilin Medical University on February 18, 2025 (No. 2025QTLL-10), and was conducted in compliance with the principles of the Declaration of Helsinki. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 11 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216026 + 10.1186/s13287-026-05077-3 + 10.1186/s13287-026-05077-3 + + +
+ + + 42216024 + + 2026 + 05 + 29 + +
+ + 2050-6511 + + + 2026 + May + 29 + + + BMC pharmacology & toxicology + BMC Pharmacol Toxicol + + Network toxicology and bioinformatics reveal potential molecular links between cadmium exposure and pancreatic cancer. + 10.1186/s40360-026-01156-6 + + Environmental cadmium (Cd) pollution poses a severe threat to human health due to its strong bioaccumulation and high carcinogenicity. Although Cd exposure has been linked to various cancers, its specific role in pancreatic cancer (PC) remains unclear. This study aimed to explore the molecular mechanisms underlying Cd-associated PC and identify potential diagnostic and therapeutic targets. + Transcriptomic data of PC were obtained from the GEO database to screen differentially expressed genes (DEGs), which were then intersected with Cd-related genes retrieved from the Comparative Toxicogenomics Database (CTD). Functional enrichment analyses, including GO and KEGG, were conducted to identify key biological processes and pathways. Multiple machine learning algorithms were used to construct a diagnostic model and identify hub genes. Furthermore, molecular docking and molecular dynamics simulations were performed to evaluate drug-target interactions, and in vitro experiments were used to validate the effects of Cd exposure on PC cell proliferation and invasiveness. + A total of five key genes-FN1, COL5A1, AHR, COL3A1, and TIMP1-were identified as core regulators of Cd-associated PC. Functional analyses indicated that Cd primarily affects the extracellular matrix (ECM) metabolic and collagen remodeling pathways. Experimental results confirmed that Cd exposure significantly enhanced the proliferation and invasiveness of PC cells. Molecular docking and dynamics simulations revealed that the EGFR inhibitor dacomitinib exhibited favorable predicted binding affinity to FN1, suggesting its potential as a therapeutic agent. + This study reveals that Cd may promote the malignant progression of PC by regulating ECM remodeling through key genes such as FN1. Dacomitinib shows promise as an FN1-associated therapy, offering new insights for the precise prevention and treatment of Cd-associated PC. + © 2026. The Author(s). + + + + Liu + Shuyuan + S + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Lu + Xinyan + X + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + + Li + Desheng + D + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + + Ma + Jingyuan + J + + The First Clinical Medical College, Liaoning University of Traditional Chinese Medicine, Shenyang, China. + + + + Zhang + Yunshu + Y + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Li + Junchen + J + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Wan + Xing + X + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. wanx03@dmu.edu.cn. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. wanx03@dmu.edu.cn. + + + + Shang + Dong + D + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + + Zhang + Qingkai + Q + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. zhangqk@dmu.edu.cn. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. zhangqk@dmu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Pharmacol Toxicol + 101590449 + 2050-6511 + + IM + + Cadmium + Machine learning + Molecular dynamic simulation + Network toxicology + Pancreatic cancer + + Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 11 + 11 + + + 2026 + 5 + 20 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216024 + 10.1186/s40360-026-01156-6 + 10.1186/s40360-026-01156-6 + + +
+ + + 42216013 + + 2026 + 05 + 29 + +
+ + 1749-7922 + + + 2026 + May + 29 + + + World journal of emergency surgery : WJES + World J Emerg Surg + + Machine learning models for early mortality prediction in trauma patients using public data: a nationwide retrospective study. + 10.1186/s13017-026-00706-x + + Trauma is a leading cause of morbidity and mortality worldwide, particularly in younger populations. Early identification of high-risk trauma patients is critical for timely interventions and improved outcomes. Although artificial intelligence and machine learning have demonstrated promise in healthcare, their application in trauma mortality prediction has been limited. + This study developed and validated machine learning models to predict mortality in trauma patients using a large public dataset from the National Community-Based Critical Injury Survey (South Korea, 2016-2020). Overall, 207,012 cases were analyzed. Six machine learning algorithms, including logistic regression, k-nearest neighbor, decision tree, random forest (RF), extreme gradient boosting (XGB), and multi-layer perceptron, were trained and evaluated. Their performance was assessed using the areas under the receiver operating characteristic curve (AUROC) and precision-recall curve (AUPRC), and other metrics. Shapley additive explanations (SHAP) scores were used to interpret feature importance. + The XGB model demonstrated the highest performance (AUROC 0.985; AUPRC 0.957), followed closely by the RF model (AUROC 0.984; AUPRC 0.956). Performance remained stable during the COVID-19 period, supporting the model's temporal robustness under systemic disruption. SHAP analysis identified clinically actionable features such as out-of-hospital cardiac arrest, injury severity score, age, and time to transfusion. Unlike many prior studies based on small or single-center datasets, our model was developed using a nationally representative cohort and prioritized interpretability, scalability, and generalizability. + This study presents a high-performing, interpretable machine learning framework for early mortality risk stratification in trauma patients using nationwide registry data. The strong discrimination and temporal robustness of the model support its value as a system-level prediction tool; however, further calibration analyses, external validation, and prospective implementation studies are required before integration into clinical workflows. + © 2026. The Author(s). + + + + Baik + Seung Min + SM + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Lee + Jae Gil + JG + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Shim + Hongjin + H + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Kim + Sujung + S + + Division of Acute Care Surgery, Department of Surgery, Korea University Anam Hospital, Korea University College of Medicine, Goryeodae-ro 73, Seongbuk-gu, Seoul, 02841, Republic of Korea. + + + + Hong + Kyung Sook + KS + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Seoul Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Yi + Heejung + H + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Seoul Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Lee + Kyung Hyun + KH + + Department of Digital Health, SAIHST, Sungkyunkwan University, Seoul, Republic of Korea. + + + + Lee + Jae-Myeong + JM + + Division of Acute Care Surgery, Department of Surgery, Korea University Anam Hospital, Korea University College of Medicine, Goryeodae-ro 73, Seongbuk-gu, Seoul, 02841, Republic of Korea. ljm3225@hanmail.net. + + + + eng + + + RS-2023-00240766 + National Research Foundation of Korea + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + World J Emerg Surg + 101266603 + 1749-7922 + + IM + + Artificial intelligence + Clinical decision-making + Emergency medical services + Injury severity score + + Declarations. Ethics approval and consent to participate: The Ewha Womans University Mokdong Hospital Institutional Review Board deemed this study exempt from ethics review and waived the informed consent requirement. Consent for publication: Not applicable. Competing interests: The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 10 + 20 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216013 + 10.1186/s13017-026-00706-x + 10.1186/s13017-026-00706-x + + +
+ + + 42215973 + + 2026 + 05 + 29 + +
+ + 1472-6963 + + + 2026 + May + 29 + + + BMC health services research + BMC Health Serv Res + + Why are rural hospitals closing in the U.S.? Predictors identified using explainable machine learning. + 10.1186/s12913-026-14810-w + + Rural hospital closures in the U.S. reduce access to essential healthcare services and worsen health and economic outcomes in rural communities. This study uses national longitudinal data and explainable machine learning (XML) to identify and interpret risk factors of rural hospital closures. + We conducted a retrospective longitudinal study of U.S. rural hospitals using national datasets from 2011 to 2022, integrating hospital-level financial, operational, policy, population, and community data. Longitudinal feature engineering and statistical summarization were performed, class imbalance and multicollinearity were addressed using random undersampling and variance inflation factor (VIF) analysis, and an XGBoost classifier was trained using stratified three-fold cross-validation and Optuna for hyperparameter tuning. Model explainability was assessed using SHapley Additive exPlanations (SHAP). + Among 2,683 rural hospitals, 139 (5.2%) closed during the study period. The model achieved a recall of 86%, accuracy of 75%, and an AUC of 89%. The key variables linked to closure risk are sustained financial weakness and volatility (e.g., total margin, variability in return on equity, and current ratio), operational instability (low patient volume and variability in bed-days available), policy context (e.g., years since Medicaid expansion), and community context, including sociodemographic characteristics of the service area (e.g., proportion of Black or African American residents), which may reflect underlying structural and socioeconomic conditions rather than direct predictors or causal drivers of closure. + These findings indicate that the risk of closure of rural hospitals reflects accumulated long-term financial and operational instability, as well as policy and community context, rather than short-term distress, highlighting the value of longitudinal and explainable modeling approaches. + Longitudinal data integrated into XML provides a practical approach for early warning systems that enable proactive monitoring and timely interventions, particularly for hospitals serving historically underserved communities. + Not applicable. + © 2026. The Author(s). + + + + Balakrishnan + Kiruthika + K + + National Center for Rural Health Professions, University of Illinois College of Medicine Rockford, 1601 Parkview Avenue, Rockford, IL, 61107, USA. bkiruthi@uic.edu. + + + AI.Health4All Center, University of Illinois Chicago, 1747 West Roosevelt Road, Chicago, IL, 60608, USA. bkiruthi@uic.edu. + + + + Abuhay + Tesfamariam M + TM + + Department of Medicine, University of Illinois Chicago, 840 S. Wood St., Chicago, IL, 60612, USA. + + + AI.Health4All Center, University of Illinois Chicago, 1747 West Roosevelt Road, Chicago, IL, 60608, USA. + + + + Hinkle + Hana E + HE + + National Center for Rural Health Professions, University of Illinois College of Medicine Rockford, 1601 Parkview Avenue, Rockford, IL, 61107, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Health Serv Res + 101088677 + 1472-6963 + + IM + + Early warning systems + Explainable machine learning + Hospital closure risk factors + Longitudinally derived features + Rural hospital closures + + Declarations. Ethics consent to participate: This study is a retrospective analysis of publicly available data and published literature and did not involve human participants, identifiable private information, or the collection of new data requiring ethical approval or informed consent. Consent for publication: Not applicable Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 10 + + + 2026 + 5 + 15 + + + 2026 + 5 + 29 + 23 + 36 + + + aheadofprint + + 42215973 + 10.1186/s12913-026-14810-w + 10.1186/s12913-026-14810-w + + +
+ + + 42215935 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Explainable machine learning for the prediction of Alzheimer's disease-related cognitive impairment: a consensus feature selection approach. + 10.1186/s12911-026-03585-z + + Early identification of Alzheimer's disease-related cognitive impairment remains challenging, and existing machine learning (ML) models often suffer from feature instability and limited interpretability. This study developed robust and explainable ML models using cerebrospinal fluid (CSF) biomarkers by systematically comparing sparsity-based (LASSO), importance-based (Boruta), and consensus feature selection strategies. + A publicly available cohort of 333 individuals (91 cognitively impaired, 242 cognitively normal) was analyzed. Data were split into training (70%) and independent test (30%) sets. Multiple classifiers, including Elastic Net-regularized logistic regression (LR), support vector machine (SVM), random forest, XGBoost, and Naive Bayes (NB), were trained using repeated 5-fold cross-validation (10 repetitions; 10 × 5-fold cross-validation) with class weighting. Model performance was evaluated using discrimination, calibration, and clinical utility metrics, and interpretability was assessed using SHAP. + All models demonstrated strong discriminative performance on the test set (AUROC 0.861-0.958). LASSO-based models showed high specificity, Boruta-based models achieved higher sensitivity, and consensus-based models provided the most balanced performance. The consensus-LR and -SVM models achieved AUROC values of 0.954 and 0.951, respectively. Beyond discrimination, the consensus-LR model demonstrated good calibration and consistent net clinical benefit in decision curve analysis, analyses that remain relatively underreported in the Alzheimer's disease machine learning literature. SHAP analyses highlighted biologically plausible contributions from key biomarkers, including tau, Aβ42, NT-proBNP, pancreatic polypeptide, and IL-7. + In summary, stable and interpretable ML models for Alzheimer's disease-related cognitive impairment can be developed using CSF-derived biomarkers obtained through lumbar puncture. The proposed consensus-based feature selection framework improves feature stability and model transparency, facilitating the discrimination between cognitively normal and impaired individuals and providing a foundation for future external validation studies. + © 2026. The Author(s). + + + + Cantaş Türkiş + Fulden + F + 0000-0002-7018-7187 + + Division of Biostatistics, Faculty of Medicine, Muğla Sıtkı Koçman University, Muğla, 48000, Turkey. fuldencantas@mu.edu.tr. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + Calibration + Clinical utility + Explainability + Feature selection + Machine learning + + Declarations. Ethics approval and consent to participate: Not applicable. This study is a secondary analysis of publicly available, anonymized data obtained from an open-access repository. Ethical approval and informed consent were obtained in the original study, and no additional ethical approval was required for the present analysis. The study was conducted in accordance with the principles of the Declaration of Helsinki. Consent for publication: Not applicable. The study does not include any individual-level identifiable data. Authors’ information: Fulden Cantaş Türkiş is an Assistant Professor at Muğla Sıtkı Koçman University, Faculty of Medicine, Department of Biostatistics. Her research interests include biostatistics, time-to-event data analysis, machine learning, artificial intelligence in healthcare, explainable artificial intelligence, predictive modeling, and statistical learning using real-world clinical data. She collaborates with multiple interdisciplinary research groups as the lead biostatistician and provides statistical consultancy for clinical and translational research projects. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 22 + + + 2026 + 5 + 20 + + + 2026 + 5 + 29 + 23 + 35 + + + aheadofprint + + 42215935 + 10.1186/s12911-026-03585-z + 10.1186/s12911-026-03585-z + + +
+ + + 42215930 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Beyond prediction: explainable machine learning for ferritin estimation from complete blood count. + 10.1186/s12911-026-03601-2 + + Serum ferritin is a primary marker of body iron stores; however, its diagnostic utility is limited by cost and non-specific elevation during inflammatory states. This study aimed to develop and validate explainable machine learning (ML) models to estimate ferritin status using only widely available and cost-effective complete blood count (CBC) and demographic parameters. + This prospective study analyzed 12,450 adult laboratory records. To ensure ferritin reflected true iron status, cases with inflammation (elevated white blood cell count or erythrocyte sedimentation rate) were excluded. A balanced dataset of 7,200 samples was used to train five supervised ML algorithms, including Logistic Regression, XGBoost, and Artificial Neural Network (ANN), for both binary classification and regression tasks. Model interpretability was assessed using SHapley Additive Explanations (SHAP) to evaluate global feature importance. + The ANN model achieved the best classification performance, with an area under the curve of 0.837 and an F1-score of 0.760 in discriminating low ferritin levels (< 30 ng/mL) from normal values. Although the regression model demonstrated a moderate global R² of 0.32, it showed higher predictive accuracy in lower ferritin ranges critical for diagnosing iron deficiency. SHAP analysis revealed Sex, Mean Corpuscular Hemoglobin, and Red Cell Distribution Width as the most influential predictors, consistent with iron-restricted erythropoiesis. + ML models based solely on routine hemogram data provide a reliable, zero-cost screening approach for iron deficiency. The integration of explainable AI enhances clinical credibility and supports implementation as an accessible decision support tool. + © 2026. The Author(s). + + + + Us + Ramazan Berk + RB + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. berkus62@gmail.com. + + + + Panatli + Oguzhan + O + + Department of Biomedical Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + Department of Computer Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + + Bozkürk + Mine Büşra + MB + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Öztürk + Atakan + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Sağlam + Suadiye + S + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Kösem + Arzu + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Öztürk + Alpaslan + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Bostanci + Gazi Erkan + GE + + Department of Computer Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + Clinical decision support systems + Complete blood count + Explainable artificial intelligence + Ferritin + Iron deficiency + SHAP + + Declarations. Ethics approval and consent to participate: The study protocol was approved by the Ankara Etlik City Hospital Ethics Committee (Approval No: AEŞH-BADEK1-2025-032, Date: 02/07/2025) and was conducted in accordance with the principles of the Declaration of Helsinki. Informed consent was obtained from all participants prior to inclusion in the study. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 6 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 35 + + + aheadofprint + + 42215930 + 10.1186/s12911-026-03601-2 + 10.1186/s12911-026-03601-2 + + +
+ + + 42215875 + + 2026 + 05 + 29 + +
+ + 1480-9222 + + + 2026 + May + 29 + + + Biological procedures online + Biol Proced Online + + A novel prognostic model based on MVIRGs identifies ANGPT2 as a key target driving the malignant progression of HCC. + 10.1186/s12575-026-00347-z + + Hepatocellular carcinoma (HCC) is a highly lethal malignancy with high recurrence and limited therapies. Microvascular invasion (MVI) is a critical prognostic factor, but its molecular mechanisms and precise predictive tools are lacking. This study aimed to identify key MVI-associated genes (MVIRGs), develop a prognostic model, and elucidate the role of ANGPT2 in HCC progression and therapeutic responses. + Machine learning on multi-cohort data (TCGA, ICGC) identified MVIRGs and constructed a prognostic model. ANGPT2, the core oncogenic MVIRG, was validated clinically (IHC) and functionally (in vitro and in vivo). We analyzed its association with the tumor immune microenvironment (TIME), immune checkpoint inhibitors (ICIs), and drug sensitivity. + A powerful six-MVIRG prognostic model was developed, with ANGPT2 identified as the sole oncogenic gene. Clinically, ANGPT2 was significantly overexpressed, correlating strongly with aggressive features like MVI, vascular invasion, and advanced stages, serving as a robust poor prognostic biomarker for OS and PFS. Functionally, ANGPT2 knockdown significantly inhibited HCC cell growth and migration in vitro, and inhibited tumor growth in vivo. Bioinformatics revealed ANGPT2 fosters an immunosuppressive TIME, upregulating immune checkpoints (e.g., PD-L1) to mediate resistance to ICIs. High ANGPT2 expression showed a differential drug response: resistance to targeted therapies (e.g., EGFR-TKIs) but paradoxically increased sensitivity to chemotherapies (e.g., docetaxel, paclitaxel). + This study constructed a powerful MVIRG model and identified ANGPT2 as a core oncogenic molecule. ANGPT2 drives HCC progression, mediates immune resistance, and differentially regulates drug sensitivity, making it a key biomarker for prognosis and treatment guidance. + © 2026. The Author(s). + + + + Li + Xian + X + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Tan + Zhouli + Z + + The Fifth School of Clinical Medicine, Anhui Medical University, Hefei, China. + + + Navy Clinical College, Anhui Medical University, Beijing, China. + + + + Feng + Shanru + S + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Yu + Qiang + Q + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Zhou + Jian + J + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Fan + Jia + J + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Xu + Yang + Y + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. xuyangdoctor@163.com. + + + + eng + + + 82073272 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Biol Proced Online + 100963717 + 1480-9222 + + + ANGPT2 + Hepatocellular carcinoma + MVIRGs + Microvascular invasion + Prognostic model + + Declarations. Ethics approval and consent to participate: Ethical approval was provided by the Ethics Committee of Zhongshan Hospital, and written informed consent was obtained from each patient (Approval number: No. Y2020-374). All animal experiments involved in this study were reviewed and approved by the Ethics Committee of Zhongshan Hospital, Fudan University, Xiamen Hospital (Approval number: No. Y2024-021). We confirm that all experiments were performed in accordance with the approved protocols and all relevant guidelines and regulations for the care and use of laboratory animals. Regarding the tumor burden, the maximum tumor size/burden permitted by our Ethics Committee/IRB is a tumor volume not exceeding 2000 mm3 or a longest tumor diameter not exceeding 2.0 cm. We confirm that this maximum permitted tumor size/burden was not exceeded at any point during the study. Clinical trial number: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 31 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 33 + + + aheadofprint + + 42215875 + 10.1186/s12575-026-00347-z + 10.1186/s12575-026-00347-z + + +
+ + + 42215857 + + 2026 + 05 + 29 + +
+ + 1471-2164 + + + 2026 + May + 30 + + + BMC genomics + BMC Genomics + + PRIME: An evaluation framework for protein representation inference and generalization in viral mutation space. + 10.1186/s12864-026-12976-5 + + Protein language models (PLMs) have revolutionized protein fitness prediction, yet their application to rapidly evolving viral pathogens is often confounded by extreme sequence homology. This homology leads to "data leakage" in standard random validation splits, yielding inflated performance metrics that fail to translate into real-world biosurveillance utility. + We present Protein Representation Inference for Mutation Evaluation (PRIME), a framework that integrates domain-specific fine-tuning with a rigorous position-stratified validation protocol to evaluate viral threats. Using a dataset of 347,432 SARS-CoV-2 receptor binding domain (RBD) sequences, we demonstrate that while random training data split yields deceptive R2 values (> 0.90), they fail to generalize to novel mutational sites. By benchmarking models up to 650 M parameters, we show that domain-specific fine-tuning of the ESM-C 600 M model with correctly stratified data provides an initial demonstration of predictive signal for binding affinity and expression at unseen mutational sites of binding affinity and expression on unseen sites (R2 ~0.23), a significant advancement over base foundation models which exhibit no predictive power (R2 <0). PRIME's embedding-based clustering identified 3.03% of bat coronavirus sequences as candidates for further experimental prioritization based on their functional similarity to human-infective strains in embedding space, offering a perspective complementary to traditional phylogenetic methods. + PRIME establishes a new benchmark for the application of PLMs in pathogen surveillance. Our findings demonstrate that state-of-the-art models and fine-tuning, when paired with stratified validation, provide biologically meaningful insights into pathogen evolution and zoonotic risk. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Gibson + Kaetlyn + K + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Li + Po-E + PE + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Li + Valerie + V + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Dix + Martha + M + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Hung + Li-Wei + LW + + Biochemistry and Biotechnology Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Stelle + George Widgery + GW + + Applied Computer Science Group, Computer, Computational and Statistical Sciences Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Babinski + Michal + M + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Chain + Patrick + P + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Hu + Bin + B + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. bhu@lanl.gov. + + + + eng + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + + Journal Article + + + 2026 + 05 + 30 + +
+ + England + BMC Genomics + 100965258 + 1471-2164 + + IM + + Biosurveillance + Gomology leakage + Host tropism prediction + Machine learning efficiency + Model fine-tuning + Phenotype prediction + Position-stratified validation + Protein language models + + Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 12 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 32 + + + aheadofprint + + 42215857 + 10.1186/s12864-026-12976-5 + 10.1186/s12864-026-12976-5 + + +
+ + + 42215832 + + 2026 + 05 + 29 + +
+ + 1573-6822 + + + 2026 + May + 29 + + + Cell biology and toxicology + Cell Biol Toxicol + + Integrative multi-omics, machine learning, and experimental validation reveal that TPM1 suppresses M2 macrophage polarization and enhances chemosensitivity in acute myeloid leukemia. + 10.1007/s10565-026-10201-3 + + Acute myeloid leukemia (AML) remains a therapeutic challenge due to chemoresistance and immunosuppression. This study aimed to discover novel regulatory mechanisms in AML pathogenesis. + Integrative transcriptomic (GSE30029) and proteomic (PXD008378) analyses with machine learning (LASSO, SVM-RFE, random forest) were performed to identify core AML regulators. Functional validation was conducted in AML cell lines (HL-60, NB4), including cell proliferation and apoptosis assays, cytarabine (Ara-C) sensitivity testing, and a subcutaneous xenograft model. Macrophage polarization was evaluated in co-culture systems. Molecular mechanisms were explored via MeRIP, RIP, and mRNA stability assays. + Tropomyosin 1 (TPM1) was identified as a potential key factor in AML. TPM1 was downregulated in AML tissues and cells. TPM1 overexpression inhibited AML cell proliferation, promoted apoptosis and oxidative stress, and enhanced sensitivity to Ara-C. Furthermore, TPM1 upregulation attenuated M2 macrophage polarization. Mechanistically, the m6A eraser fat mass and obesity-associated protein (FTO) destabilized TPM1 mRNA in an m6A-dependent manner. Downregulation of TPM1 reversed the effects of FTO depletion on AML cell proliferation, Ara-C sensitivity, and M2 macrophage polarization. + This study unveils a novel FTO/m6A/TPM1 axis that coordinately governs AML cell growth, chemosensitivity, and macrophage polarization, highlighting it as a promising therapeutic target. + © 2026. The Author(s). + + + + Li + Yue + Y + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + Wei + Baosheng + B + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + Hu + Liuping + L + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. huhuliuping@163.com. + + + + Du + Yuzhen + Y + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Switzerland + Cell Biol Toxicol + 8506639 + 0742-2091 + + IM + + Acute myeloid leukemia + Chemosensitivity + M6A eraser + Macrophage polarization + Tropomyosin 1 + + Declarations. Ethics approval: The present study was approved by the ethical review committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine with approval No.20250222. Written informed consent was obtained from all enrolled patients. Human study: This study was carried out in strict accordance with the relevant regulations and requirements of the Declaration of Helsinki. Written informed consents were obtained from all participants and this study was permitted by the Ethics Committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine. Animal study: The procedures performed on all animals complied with the standards formulated by the Experimental Animal Ethics Committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine and obtained the approval of the said committee. Conflicts of interest: The authors declare no competing interests. Clinical trial number: Not applicable +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 31 + + + 2026 + 4 + 23 + + + 2026 + 5 + 29 + 23 + 26 + + + aheadofprint + + 42215832 + 10.1007/s10565-026-10201-3 + 10.1007/s10565-026-10201-3 + + +
+ + + 42215825 + + 2026 + 05 + 29 + +
+ + 1618-1905 + + + 2026 + May + 30 + + + International microbiology : the official journal of the Spanish Society for Microbiology + Int Microbiol + + Gut microbial alterations and functional shifts in patients with hypertriglyceridemia: insights from a northwestern Chinese metagenomic study. + 10.1007/s10123-026-00845-w + + Although hypertriglyceridemia (HTG) is a significant contributor to lipid-associated pathologies such as atherosclerotic cardiovascular disease, its regulation by host‒microbiome interactions remain insufficiently characterized. While the gut microbiota (GM) is known to influence cholesterol metabolism, its specific role in systemic triglyceride (TG) homeostasis, particularly in non-Western populations, is poorly defined. This study aimed to identify preliminary robust GM signatures associated with HTG and to assess their translational potential using integrated multiomics and explainable machine learning approaches. In a cross-sectional investigation of 50 well-phenotyped adults from Northwest China, we combined 16S rRNA sequencing, shotgun metagenomics, and ensemble machine learning (LightGBM/XGBoost) to elucidate the associations between the GM and TGs. Microbial features were rigorously linked to serum lipid profiles through dual-algorithm validation and SHAP interpretability analysis, while functional potential was assessed via KEGG pathway mapping. Subjects with HTG exhibited a distinct gut microbial configuration, marked by consistent enrichment of Faecalibacterium and Bacteroides coprocola (positively correlated with serum TG levels) and depletion of Bifidobacterium pseudocatenulatum and Lactobacillus salivarius (inversely correlated). Machine learning converged on five exploratory consensus biomarker taxa, three of which were independently confirmed by LEfSe analysis (Faecalibacterium). Functional profiling further revealed the upregulation of microbial starch and sucrose metabolism pathways in the HTG cohort. Our findings establish a preliminary gut microbial signature for HTG patients and suggest context‑dependent associations of butyrate-producing taxa such as Faecalibacterium. By integrating multiomics with explainable artificial intelligence, this work addresses key challenges in reproducibility and mechanistic inference in microbiome research. These results pave the way for novel microbiota-targeted therapeutic strategies, including precision probiotics and dietary interventions, to modulate lipid metabolism, pending further validation in expanded cohorts and functional studies. + © 2026. The Author(s). + + + + Lv + Jing + J + + Department of Clinical Laboratory, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Wang + Ji-Han + JH + + Yan'an Medical College of Yan'an University, Yan'an, Shaanxi, 716000, China. + + + + Wang + Yang-Yang + YY + + School of Physics and Electronic Information, Yan'an University, Yan'an, Shaanxi, 716000, China. + + + + Huang + Jing + J + + Department of Clinical Pharmacy, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Chen + Fen-Rong + FR + + Department of Gastroenterology, The Second Affiliated Hospital of Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710000, China. + + + + Fang + Sa + S + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Wang + Xiao-Juan + XJ + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Li + Zi-Tong + ZT + + Department of Spine Surgery, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Shi + Yu-Peng + YP + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. xjshiyupeng@163.com. + + + + Guo + Lei + L + + Department of Spine Surgery, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. guolei0711@163.com. + + + + eng + + + 2025JC-YBMS-916 + Shaanxi Natural Science Foundation of China + + + + No. 81702067 and 82560411 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 30 + +
+ + Switzerland + Int Microbiol + 9816585 + 1139-6709 + + IM + + Biomarker + Gut microbiota + Hypertriglyceridemia + Machine learning + Triglyceride + + Declarations. Competing interests: The authors declare no competing interests. Consent to participate: Informed consent was provided by all recruited subjects prior to the study. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 18 + + + 2026 + 5 + 22 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 23 + 26 + + + aheadofprint + + 42215825 + 10.1007/s10123-026-00845-w + 10.1007/s10123-026-00845-w + + + + The Writing Committee Of The Report On Cardiovascular Health And Diseases In China (2022) Key points of Report on Cardiovascular Health and Diseases in China 2021. Chin J Cardiovasc Res, 20(7): 577–596 + + + An HM et al (2011) Antiobesity and lipid-lowering effects of Bifidobacterium spp. in high fat diet-induced obese rats. Lipids Health Dis 10:116 + + 21745411 + 10.1186/1476-511X-10-116 + + + + Association LM et al (2022) China guideline for clinical lipid profile testing. Chin J Lab Med 45(10):1017–1033 + + + Bäckhed F et al (2004) The gut microbiota as an environmental factor that regulates fat storage. Proc Natl Acad Sci USA 101(44):15718–15723 + + 15505215 + 524219 + 10.1073/pnas.0407076101 + + + + Bäckhed F, Manchester JK, Semenkovich CF, Gordon JI (2007) Mechanisms underlying the resistance to diet-induced obesity in germ-free mice. Proc Natl Acad Sci USA 104(3):979–984 + + 17210919 + 1764762 + 10.1073/pnas.0605374104 + + + + Bell JA et al (2021) Sex differences in systemic metabolites at four life stages: cohort study with repeated metabolomics. BMC Med 19(1):58 + + 33622307 + 7903597 + 10.1186/s12916-021-01929-2 + + + + Beserra BT et al (2015) A systematic review and meta-analysis of the prebiotics and synbiotics effects on glycaemia, insulin concentrations and lipid parameters in adult patients with overweight or obesity. Clin Nutr 34(5):845–858 + + 25456608 + 10.1016/j.clnu.2014.10.004 + + + + Bezirtzoglou E, Stavropoulou E (2011) Immunology and probiotic impact of the newborn and young children intestinal microflora. Anaerobe 17(6):369–374 + + 21515397 + 10.1016/j.anaerobe.2011.03.010 + + + + Bishehsari F, Voigt RM, Keshavarzian A (2020) Circadian rhythms and the gut microbiota: from the metabolic syndrome to cancer. Nat Rev Endocrinol 16(12):731–739 + + 33106657 + 8085809 + 10.1038/s41574-020-00427-4 + + + + Bondia-Pons I et al (2014) Metabolome and fecal microbiota in monozygotic twin pairs discordant for weight: a Big Mac challenge. FASEB journal: official publication Federation Am Soc Experimental Biology 28(9):4169–4179 + + 10.1096/fj.14-250167 + + + + Borén J et al (2020) Low-density lipoproteins cause atherosclerotic cardiovascular disease: pathophysiological, genetic, and therapeutic insights: a consensus statement from the European Atherosclerosis Society Consensus Panel. Eur Heart J 41(24):2313–2330 + + 32052833 + 7308544 + 10.1093/eurheartj/ehz962 + + + + Brischetto CS, Connor WE, Connor SL, Matarazzo JD (1983) Plasma lipid and lipoprotein profiles of cigarette smokers from randomly selected families: enhancement of hyperlipidemia and depression of high-density lipoprotein. Am J Cardiol 52(7):675–680 + + 6624657 + 10.1016/0002-9149(83)90396-X + + + + Buck GM, Sever LE, Batt RE, Mendola P (1997) Life-style factors and female infertility. Epidemiology 8(4):435–441 + + 9209860 + 10.1097/00001648-199707000-00015 + + + + Cano PG, Santacruz A, Trejo FM, Sanz Y (2013) Bifidobacterium CECT 7765 improves metabolic and immunological alterations associated with obesity in high-fat diet-fed mice. Obesity 21(11):2310–2321 + + 23418126 + 10.1002/oby.20330 + + + + Castaner O et al (2018a) The Gut Microbiome Profile in Obesity: A Systematic Review. International journal of endocrinology, 2018 + + + Castaner O et al (2018b) The Gut Microbiome Profile in Obesity: A Systematic Review. International journal of endocrinology, 2018: 4095789 + + + Chang CC, Liu TC, Lu CJ, Chiu HC, Lin WN (2023) Machine learning strategy for identifying altered gut microbiomes for diagnostic screening in myasthenia gravis. Front Microbiol 14:1227300 + + 37829445 + 10565662 + 10.3389/fmicb.2023.1227300 + + + + Cheng Z et al (2020) Revealing the Variation and Stability of Bacterial Communities in Tomato Rhizosphere Microbiota. Microorganisms, 8(2) + + + Cole JR et al (2014) Ribosomal Database Project: data and tools for high throughput rRNA analysis. Nucleic Acids Res 42(D1):D633–D642 + + 24288368 + 10.1093/nar/gkt1244 + + + + Comertpay B, Gov E (2025) Multiomics Analysis and Machine Learning-based Identification of Molecular Signatures for Diagnostic Classification in Liver Disease Types Along the Microbiota-gut-liver Axis. J Clin Exp Hepatol 15(5):102552 + + 40292334 + 12019836 + 10.1016/j.jceh.2025.102552 + + + + Cotillard A et al (2013) Dietary intervention impact on gut microbial gene richness. Nature 500(7464):585–588 + + 23985875 + 10.1038/nature12480 + + + + Cui Y, Li S, Yin Y, Li X, Li X (2022) Daytime restricted feeding promotes circadian desynchrony and metabolic disruption with changes in bile acids profiles and gut microbiota in C57BL/6 Male Mice. J Nutr Biochem 109:109121 + + 35940511 + 10.1016/j.jnutbio.2022.109121 + + + + de la Cuesta-Zuluaga J et al (2019) Age- and Sex-Dependent Patterns of Gut Microbial Diversity in Human Adults. mSystems, 4(4) + + + Dominguez-Bello MG, Blaser MJ, Ley RE, Knight R (2011) Development of the Human Gastrointestinal Microbiota and Insights From High-Throughput Sequencing. Gastroenterology 140(6):1713–1719 + + 21530737 + 10924805 + 10.1053/j.gastro.2011.02.011 + + + + Edgar RC (2013) UPARSE: highly accurate OTU sequences from microbial amplicon reads. Nat Methods 10(10):996–998 + + 23955772 + 10.1038/nmeth.2604 + + + + Esan O, Wierzbicki AS (2021) Triglycerides and cardiovascular disease. Curr Opin Cardiol 36(4):469–477 + + 33797418 + 10.1097/HCO.0000000000000862 + + + + Ference BA et al (2019) Association of Triglyceride-Lowering LPL Variants and LDL-C-Lowering LDLR Variants With Risk of Coronary Heart Disease. JAMA 321(4):364–373 + + 30694319 + 6439767 + 10.1001/jama.2018.20045 + + + + Fernandes V, Santos MJ, Perez A (2016) Statin-related myotoxicity. Endocrinol Nutr 63(5):239–249 + + 27005745 + 10.1016/j.endonu.2016.01.001 + + + + Fernández-Friera L et al (2017) Normal LDL-Cholesterol Levels Are Associated With Subclinical Atherosclerosis in the Absence of Risk Factors. J Am Coll Cardiol 70(24):2979–2991 + + 29241485 + 10.1016/j.jacc.2017.10.024 + + + + Franzosa EA et al (2014) Relating the metatranscriptome and metagenome of the human gut. Proc Natl Acad Sci USA 111(22):E2329–E2338 + + 24843156 + 4050606 + 10.1073/pnas.1319284111 + + + + Fu JY et al (2015) The Gut Microbiome Contributes to a Substantial Proportion of the Variation in Blood Lipids. Circul Res 117(9):817–824 + + 10.1161/CIRCRESAHA.115.306807 + + + + Gao NN et al (2016) Dyslipidemia in rural areas of North China: prevalence, characteristics, and predictive value. Lipids Health Dis 15:9 + + 10.1186/s12944-016-0328-y + + + + Garcia-Giustiniani D, Stein R (2016) Genet Dyslipidemia Arq Bras Cardiol 106(5):434–438 + + + Ghazalpour A, Cespedes I, Bennett BJ, Allayee H (2016) Expanding role of gut microbiota in lipid metabolism. Curr Opin Lipidol 27(2):141–147 + + 26855231 + 5125441 + 10.1097/MOL.0000000000000278 + + + + Gorden DL et al (2015) Biomarkers of NAFLD progression: a lipidomics approach to an epidemic. J Lipid Res 56(3):722–736 + + 25598080 + 4340319 + 10.1194/jlr.P056002 + + + + Gordon DJ et al (1987) Seasonal cholesterol cycles: the Lipid Research Clinics Coronary Primary Prevention Trial placebo group. Circulation 76(6):1224–1231 + + 3315294 + 10.1161/01.CIR.76.6.1224 + + + + Guo L et al (2022) Associations of gut microbiota with dyslipidemia based on sex differences in subjects from Northwestern China. World J Gastroenterol 28(27):3455–3475 + + 36158270 + 9346449 + 10.3748/wjg.v28.i27.3455 + + + + Han K et al (2023) Extension Region Domain of Soybean 7S Globulin Contributes to Serum Triglyceride-Lowering Effect via Modulation of Bile Acids Homeostasis. Mol Nutr Food Res 67(17):e2200883 + + 37423975 + 10.1002/mnfr.202200883 + + + + Hendijani F, Akbari V (2018) Probiotic supplementation for management of cardiovascular risk factors in adults with type II diabetes: A systematic review and meta-analysis. Clin Nutr 37(2):532–541 + + 28318686 + 10.1016/j.clnu.2017.02.015 + + + + Huang YJ, Ke W, Hu L, Wei YD, Dong MX (2023) Liquid chromatography-mass spectrometry-based metabolomic profiling reveals sex differences of lipid metabolism among the elderly from Southwest China. BMC Geriatr 23(1):156 + + 36944918 + 10031952 + 10.1186/s12877-023-03897-z + + + + Huang Z et al (2025) The synergistic role of gut microbiota and RNA in metabolic diseases: mechanisms and therapeutic insights. Front Microbiol 16:1504395 + + 39944642 + 11814227 + 10.3389/fmicb.2025.1504395 + + + + Ingelsson E et al (2007) Clinical utility of different lipid measures for prediction of coronary heart disease in men and women. JAMA 298(7):776–785 + + 17699011 + 10.1001/jama.298.7.776 + + + + Jasirwan COM, Lesmana CRA, Hasan I, Sulaiman AS, Gani RA (2019) The role of gut microbiota in non-alcoholic fatty liver disease: pathways of mechanisms. Biosci Microbiota Food Health 38(3):81–88 + + 31384519 + 6663510 + 10.12938/bmfh.18-032 + + + + Jellinger PS, American Association Of Clinical Endocrinologists And American College Of Endocrinology Guidelines For Management Of Dyslipidemia And Prevention Of Cardiovascular Disease - Executive Summary (2017) Endocr practice: official J Am Coll Endocrinol Am Association Clin Endocrinologists 23(4):479–497 + + 10.4158/EP171764.GL + + + + Kakiyama G et al (2013) Modulation of the fecal bile acid profile by gut microbiota in cirrhosis. J Hepatol 58(5):949–955 + + 23333527 + 3936319 + 10.1016/j.jhep.2013.01.003 + + + + Kim S et al (2020a) Akkermansia muciniphila Prevents Fatty Liver Disease, Decreases Serum Triglycerides, and Maintains Gut Homeostasis. Appl Environ Microbiol, 86(7) + + + Kim YS, Unno T, Kim BY, Park MS (2020b) Sex Differences in Gut Microbiota. World J Mens Health 38(1):48–60 + + 30929328 + 10.5534/wjmh.190009 + + + + Kindt A et al (2018) The gut microbiota promotes hepatic fatty acid desaturation and elongation in mice. Nat Commun 9(1):3760 + + 30218046 + 6138742 + 10.1038/s41467-018-05767-4 + + + + Klempfner R et al (2016) Elevated Triglyceride Level Is Independently Associated With Increased All-Cause Mortality in Patients With Established Coronary Heart Disease: Twenty-Two-Year Follow-Up of the Bezafibrate Infarction Prevention Study and Registry. Circ Cardiovasc Qual Outcomes 9(2):100–108 + + 26957517 + 10.1161/CIRCOUTCOMES.115.002104 + + + + Koh A, De Vadder F, Kovatcheva-Datchary P, Bäckhed F (2016) From Dietary Fiber to Host Physiology: Short-Chain Fatty Acids as Key Bacterial Metabolites. Cell 165(6):1332–1345 + + 27259147 + 10.1016/j.cell.2016.05.041 + + + + Kokkinos PF, Fernhall B (1999) Physical activity and high density lipoprotein cholesterol levels: what is the relationship? Sports Med 28(5):307–314 + + 10593643 + 10.2165/00007256-199928050-00002 + + + + Law MR, Wald NJ, Rudnicka AR (2003) Quantifying effect of statins on low density lipoprotein cholesterol, ischaemic heart disease, and stroke: systematic review and meta-analysis. Br Med J 326(7404):1423–1427 + + 10.1136/bmj.326.7404.1423 + + + + Le Chatelier E et al (2013) Richness of human gut microbiome correlates with metabolic markers. Nature 500(7464):541–546 + + 23985870 + 10.1038/nature12506 + + + + Lee H et al (2020) Association of four lipid components with mortality, myocardial infarction, and stroke in statin-naïve young adults: A nationwide cohort study. Eur J Prev Cardiol 27(8):870–881 + + 32013600 + 10.1177/2047487319898571 + + + + Lim GB (2016) Dyslipidaemia: Balancing the benefits and risks of statin therapy. Nat Rev Cardiol 13(11):632–633 + + 27681574 + 10.1038/nrcardio.2016.164 + + + + Liu H et al (2018) Astaxanthin Prevents Alcoholic Fatty Liver Disease by Modulating Mouse Gut Microbiota. Nutrients, 10(9) + + + Lv J et al (2023) Alterations of gut microbiota are associated with blood pressure: a cross-sectional clinical trial in Northwestern China. J translational Med 21(1):429 + + 10.1186/s12967-023-04176-6 + + + + Mach F et al (2020) 2019 ESC/EAS Guidelines for the management of dyslipidaemias: lipid modification to reduce cardiovascular risk. Eur Heart J 41(1):111–188 + + 31504418 + 10.1093/eurheartj/ehz455 + + + + Management JC o.t.C.G.f.L., 2023. Chinese guidelines for lipid management (2023). Chin J Cardiol, 51(3): 221–255 + + + Marques FZ et al (2019) Guidelines for Transparency on Gut Microbiome Studies in Essential and Experimental Hypertension. Hypertension (Dallas, Tex.: 1979), 74(6): 1279–1293 + + + Matey-Hernandez ML et al (2018) Genetic and microbiome influence on lipid metabolism and dyslipidemia. Physiol Genom 50(2):117–126 + + 10.1152/physiolgenomics.00053.2017 + + + + Meikle PJ, Wong G, Barlow CK, Kingwell BA (2014) Lipidomics: potential role in risk prediction and therapeutic monitoring for diabetes and cardiovascular disease. Pharmacol Ther 143(1):12–23 + + 24509229 + 10.1016/j.pharmthera.2014.02.001 + + + + Morales C et al (2022) Characterization of microbial communities from gut microbiota of hypercholesterolemic and control subjects. Front Cell Infect Microbiol 12:943609 + + 36523636 + 9745040 + 10.3389/fcimb.2022.943609 + + + + Moszak M, Szulińska M, Bogdańsk P (2020) You Are What You Eat-The Relationship between Diet, Microbiota, and Metabolic Disorders-A Review. Nutrients 12(4):1096 + + 32326604 + 7230850 + 10.3390/nu12041096 + + + + Nichols GA, Philip S, Reynolds K, Granowitz CB, Fazio S (2018) Increased Cardiovascular Risk in Hypertriglyceridemic Patients With Statin-Controlled LDL Cholesterol. J Clin Endocrinol Metab 103(8):3019–3027 + + 29850861 + 10.1210/jc.2018-00470 + + + + Nogal A, Valdes AM, Menni C (2021) The role of short-chain fatty acids in the interplay between gut microbiota and diet in cardio-metabolic health. Gut Microbes 13(1):1–24 + + 33764858 + 8007165 + 10.1080/19490976.2021.1897212 + + + + Novielli P et al (2024) Explainable artificial intelligence for microbiome data analysis in colorectal cancer biomarker identification. Front Microbiol 15:1348974 + + 38426064 + 10901987 + 10.3389/fmicb.2024.1348974 + + + + O’Doherty AF, Jones HS, Sathyapalan T, Ingle L, Carroll S (2017) The Effects of Acute Interval Exercise and Strawberry Intake on Postprandial Lipemia. Med Sci Sports Exerc 49(11):2315–2323 + + 29045326 + 10.1249/MSS.0000000000001341 + + + + Oliphant K, Allen-Vercoe E (2019) Macronutrient metabolism by the human gut microbiome: major fermentation by-products and their impact on host health. Microbiome 7:15 + + 10.1186/s40168-019-0704-8 + + + + Org E et al (2015) Genetic and environmental control of host-gut microbiota interactions. Genome Res 25(10):1558–1569 + + 26260972 + 4579341 + 10.1101/gr.194118.115 + + + + Organization WH (2025) Obesity and overweight Fact Sheet. Available from: https://www.who.int/news-room/fact-sheets/detail/obesity-and-overweight + + + Pan L et al (2016) The prevalence, awareness, treatment and control of dyslipidemia among adults in China. Atherosclerosis 248:2–9 + + 26978581 + 10.1016/j.atherosclerosis.2016.02.006 + + + + Plaza-Diaz J (2020) Nutrition, Microbiota and Noncommunicable Diseases. Nutrients 12(7):4 + + 10.3390/nu12071971 + + + + Qin JJ et al (2010) A human gut microbial gene catalogue established by metagenomic sequencing. Nature 464(7285):59–65 + + 20203603 + 3779803 + 10.1038/nature08821 + + + + Rabot S et al (2010) Germ-free C57BL/6J mice are resistant to high-fat-diet-induced insulin resistance and have altered cholesterol metabolism. FASEB journal: official publication Federation Am Soc Experimental Biology 24(12):4948–4959 + + + Raposeiras-Roubin S et al (2021) Triglycerides and Residual Atherosclerotic Risk. J Am Coll Cardiol 77(24):3031–3041 + + 34140107 + 8215641 + 10.1016/j.jacc.2021.04.059 + + + + Razavi AC, Potts KS, Kelly TN, Bazzano LA (2019) Sex, gut microbiome, and cardiovascular disease risk. Biol Sex Differ 10:14 + + 10.1186/s13293-019-0240-z + + + + Ridaura VK et al (2013) Gut Microbiota from Twins Discordant for Obesity Modulate Metabolism in Mice. Science 341(6150):1079–U49 + + 10.1126/science.1241214 + + + + Rinninella E et al (2019) What is the Healthy Gut Microbiota Composition? A Changing Ecosystem across Age, Environment, Diet, and Diseases. Microorganisms 7(1):22 + + 10.3390/microorganisms7010014 + + + + Riva A et al (2017) Pediatric obesity is associated with an altered gut microbiota and discordant shifts in Firmicutes populations. Environ Microbiol 19(1):95–105 + + 27450202 + 10.1111/1462-2920.13463 + + + + Rodriguez J, Delzenne NM (2021) Modulation of the gut microbiota-adipose tissue-muscle interactions by prebiotics. J Endocrinol 249(1):R1–R23 + + 33502337 + 10.1530/JOE-20-0499 + + + + Ruscica M et al (2019) Nutraceutical approach for the management of cardiovascular risk - a combination containing the probiotic Bifidobacterium longum BB536 and red yeast rice extract: results from a randomized, double-blind, placebo-controlled study. Nutr J 18(1):13 + + 30795775 + 6387491 + 10.1186/s12937-019-0438-2 + + + + Rynazal R et al (2023) Leveraging explainable AI for gut microbiome-based colorectal cancer classification. Genome Biol 24(1):21 + + 36759888 + 9912568 + 10.1186/s13059-023-02858-4 + + + + Schloissnig S et al (2013) Genomic variation landscape of the human gut microbiome. Nature 493(7430):45–50 + + 23222524 + 10.1038/nature11711 + + + + Schoeler M, Caesar R (2019) Dietary lipids, gut microbiota and lipid metabolism. Rev Endocr Metab Disord 20(4):461–472 + + 31707624 + 6938793 + 10.1007/s11154-019-09512-0 + + + + Seganfredo FB et al (2017) Weight-loss interventions and gut microbiota changes in overweight and obese patients: a systematic review. Obes reviews: official J Int Association Study Obes 18(8):832–851 + + 10.1111/obr.12541 + + + + Shimizu M, Hashiguchi M, Shiga T, Tamura H-o, Mochizuki M (2015) Meta-Analysis: Effects of Probiotic Supplementation on Lipid Profiles in Normal to Mildly Hypercholesterolemic Individuals. PloS one, 10(10) + + + Song D, Yang CS, Zhang X, Wang Y (2021) The relationship between host circadian rhythms and intestinal microbiota: A new cue to improve health by tea polyphenols. Crit Rev Food Sci Nutr 61(1):139–148 + + 31997655 + 10.1080/10408398.2020.1719473 + + + + Song PK et al (2019) Trends in Lipids Level and Dyslipidemia among Chinese Adults, 2002–2015. Biomed Environ Sci: BES 32(8):559–570 + + 31488232 + + + + Taskinen MR et al (1987) Alcohol-induced changes in serum lipoproteins and in their metabolism. Am Heart J 113(2 Pt 2):458–464 + + 3544760 + 10.1016/0002-8703(87)90614-4 + + + + Thompson PD, Panza G, Zaleski A, Taylor B (2016) Statin-Associated Side Effects. J Am Coll Cardiol 67(20):2395–2410 + + 27199064 + 10.1016/j.jacc.2016.02.071 + + + + Tomaro-Duchesneau C et al (2014) Effect of orally administered L. fermentum NCIMB 5221 on markers of metabolic syndrome: an in vivo analysis using ZDF rats. Appl Microbiol Biotechnol 98(1):115–126 + + 24121931 + 10.1007/s00253-013-5252-8 + + + + Turnbaugh PJ et al (2009) A core gut microbiome in obese and lean twins. Nature 457(7228):480–U7 + + 19043404 + 10.1038/nature07540 + + + + Turnbaugh PJ et al (2007) Hum Microbiome Project Nat 449(7164):804–810 + + + Turnbaugh PJ et al (2006) An obesity-associated gut microbiome with increased capacity for energy harvest. Nature 444(7122):1027–1031 + + 17183312 + 10.1038/nature05414 + + + + Uranga AP, Levine J, Jensen M (2005) Isotope tracer measures of meal fatty acid metabolism: reproducibility and effects of the menstrual cycle. Am J Physiol Endocrinol Metab 288(3):E547–E555 + + 15507534 + 10.1152/ajpendo.00340.2004 + + + + Velagapudi VR et al (2010) The gut microbiota modulates host energy and lipid metabolism in mice. J Lipid Res 51(5):1101–1112 + + 20040631 + 10.1194/jlr.M002774 + + + + Vergès B (2015) Pathophysiology of diabetic dyslipidaemia: where are we? Diabetologia 58(5):886–899 + + 25725623 + 4392164 + 10.1007/s00125-015-3525-8 + + + + Vital M, Karch A, Pieper DH (2017) Colonic Butyrate-Producing Communities in Humans: an Overview Using Omics Data. mSystems, 2(6) + + + Vítek L, Haluzík M (2016) The role of bile acids in metabolic regulation. J Endocrinol 228(3):R85–R96 + + 26733603 + 10.1530/JOE-15-0469 + + + + Vojinovic D et al (2019) Relationship between gut microbiota and circulating metabolites in population-based cohorts. Nat Commun 10(1):5813 + + 31862950 + 6925111 + 10.1038/s41467-019-13721-1 + + + + Wang F et al (2018) Perilla Oil Supplementation Improves Hypertriglyceridemia and Gut Dysbiosis in Diabetic KKAy Mice. Mol Nutr Food Res 62(24):e1800299 + + 30358922 + 6646911 + 10.1002/mnfr.201800299 + + + + Wang H et al (2023) Probio-X Relieves Symptoms of Hyperlipidemia by Regulating Patients’ Gut Microbiome, Blood Lipid Metabolism, and Lifestyle Habits. Microbiol Spectr 11(3):e0444022 + + 37022264 + 10269629 + 10.1128/spectrum.04440-22 + + + + Wang LX, Liu K, Gao DW, Hao JK (2013) Protective effects of two Lactobacillus plantarum strains in hyperlipidemic mice. World J Gastroenterol 19(20):3150–3156 + + 23716997 + 3662957 + 10.3748/wjg.v19.i20.3150 + + + + Wu Y, Zhang Q, Ren Y, Ruan Z (2017) Effect of probiotic Lactobacillus on lipid profile: A systematic review and meta-analysis of randomized, controlled trials. PLoS ONE 12(6):e0178868 + + 28594860 + 5464580 + 10.1371/journal.pone.0178868 + + + + Xia M et al (2024) Structural and functional alteration of the gut microbiota in elderly patients with hyperlipidemia. Front Cell Infect Microbiol 14:1333145 + + 38812752 + 11133514 + 10.3389/fcimb.2024.1333145 + + + + Yang DF et al (2023) Acute sleep deprivation exacerbates systemic inflammation and psychiatry disorders through gut microbiota dysbiosis and disruption of circadian rhythms. Microbiol Res 268:127292 + + 36608535 + 10.1016/j.micres.2022.127292 + + + + Yatsunenko T et al (2012) Human gut microbiome viewed across age and geography. Nature 486(7402):222–227 + + 22699611 + 3376388 + 10.1038/nature11053 + + + + Yoo S-R et al (2013) Probiotics L. plantarum and L. curvatus in Combination Alter Hepatic Lipid Metabolism and Suppress Diet-Induced Obesity. Obesity 21(12):2571–2578 + + 23512789 + 10.1002/oby.20428 + + + + Zhao D, Liu J, Wang M, Zhang X, Zhou M (2019) Epidemiology of cardiovascular disease in China: current features and implications. Nat Rev Cardiol 16(4):203–212 + + 30467329 + 10.1038/s41569-018-0119-4 + + + + Zhu Y et al (2025) Machine learning algorithms reveal gut microbiota signatures associated with chronic hepatitis B-related hepatic fibrosis. World J Gastroenterol 31(16):105985 + + 40308807 + 12038523 + 10.3748/wjg.v31.i16.105985 + + + + +
+ + + 42215821 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1550-7416 + + 28 + 4 + + 2026 + May + 29 + + + The AAPS journal + AAPS J + + New Frontiers of Drug Development Through the Use of New Approach Methodologies. + 112 + 10.1208/s12248-026-01263-6 + + On November 2025, AAPS PharmSci 360 convened a symposium that included experts in the application of various types of New Approach Methodologies (NAMs). They shared their experiences and insights on topics that included microphysiological systems (MPS), the use of 3D organoids, and in silico tools. MPS systems were explored from the perspective of their testing and qualification through an academia-industry-government tissue chip testing consortium whose mission is to perform context-of-use-based testing of MPS and conduct comparative evaluations to support the use of MPS systems in safety assessments. 3D organoids were described and insights shared on how and when they may provide an appropriate tool for evaluating drug safety and effectiveness, and their use in supporting personalized medicine. Regarding in silico tools, examples were provided to describe their growing utility in predicting drug toxicity, population variability, and its potential benefits over traditional evidence-based toxicology. These tools include in silico models (e.g., physiologically based pharmacokinetic models), Artificial Intelligence (AI), and Machine Learning (ML) which, unlike other aspects of model informed drug development, reduce reliance on predefined models and allows for the integration of diverse sources of data. Computationally, these tools can generate predictions in hours where it would otherwise have taken weeks or months (and extensive experimentation). Within this meeting report, we highlight the key issues discussed during that symposium and share additional aspects to consider when developing a NAMs-based roadmap for specific contexts of use. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Martinez + M N + MN + 0000-0002-4512-853X + + Food and Drug Administration, Center for Veterinary Medicine, Office of Generic Animal Drugs, CPK1 5001 Campus Drive, College Park, MD, 20740-3835, USA. marilyn.martinez@fda.hhs.gov. + + + + Mochel + J P + JP + 0000-0002-0997-3111 + + Precision One Health Initiative and Biomedical & Translational Sciences Institute (One Health), Diane L. Wynocker Endowed Professor, Athens, GA, USA. + + + + Allenspach + K + K + 0000-0002-2168-5809 + + Precision One Health and Department of Pathology, College of Veterinary Medicine, The University of Georgia, 501 D. W. Brooks Drive, Athens, GA, 30602, USA. + + + + Zdyrski + C + C + 0000-0002-7556-5298 + + Precision One Health and College of Veterinary Medicine, The University of Georgia, 501 D. W. Brooks Drive, Athens, GA, 30602, USA. + + + + Krishna + S + S + 0000-0002-4960-2753 + + Physicians Committee for Responsible Medicine, 5100 Wisconsin Ave., NW, Suite 400, Washington, DC, 20016, USA. + + + + Rusyn + I + I + 0000-0001-9340-7384 + + Department of Veterinary Physiology and Pharmacology, Texas A&M College of Veterinary Medicine & Biomedical Sciences, 4466 TAMU, College Station, TX, 77843, USA. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + United States + AAPS J + 101223209 + 1550-7416 + + IM + + + Drug Development + methods + trends + + + Humans + + + Microphysiological Systems + + + Computer Simulation + + + Organoids + + + Animals + + + Machine Learning + + + Artificial Intelligence + + + + AI + NAMs + PBPK models + organ-on-a-chip + organoid + + Declarations. Disclaimer: The findings and conclusions in this research have not been formally disseminated by the Food and Drug Administration and should not be construed to represent any Agency endorsement, determination, or policy. The mention of commercial products, their sources, or their use in connection with material reported herein is not to be construed as either an actual or implied endorsement of such products by the FDA. Animal Use and Assurances: No animals were used in the writing of this Commentary. A.I. Statement: "No, but part of the graphical abstract had assist from Google AI. This was indicated in the figure.". Conflict of interest: Ivan Rusyn has no conflicts of interest to declare. Jonathan Mochel is a co-founder of 3D Health Solutions Inc., a small biotechnology company specializing in the development of animal-derived organoids for drug testing. Karin Allenspach co-founder of 3D Health Solutions. She serves as a consultant for Ceva Animal Health, Antech Diagnostics, hills, Royal Canin, Purina, and Heel GmbH. Christopher Zdyrski is the Director of Research and Product Development at 3D Health Solutions. Shagun Krishna has no conflicts of interest to declare. Marilyn N. Martinez has no conflicts of interest to declare. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 3 + 12 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 25 + + + epublish + + 42215821 + 10.1208/s12248-026-01263-6 + 10.1208/s12248-026-01263-6 + + + + Avila AM, Bebenek I, Mendrick DL, Peretz J, Yao J, Brown PC. Gaps and challenges in nonclinical assessments of pharmaceuticals: An FDA/CDER perspective on considerations for development of new approach methodologies. Regul Toxicol Pharmacol. 2023;139:105345. https://doi.org/10.1016/j.yrtph.2023.105345 . + + 10.1016/j.yrtph.2023.105345 + 36746323 + + + + Avila AM, Bebenek I, Bonzo JA, Bourcier T, Davis Bruno KL, Carlson DB, et al. An FDA/CDER perspective on nonclinical testing strategies: classical toxicology approaches and new approach methodologies (NAMs). Regul Toxicol Pharmacol. 2020;114:104662. https://doi.org/10.1016/j.yrtph.2020.104662 . + + 10.1016/j.yrtph.2020.104662 + 32325112 + + + + Jia Y, Jackye P, Bebenek I, Avila A, Alapatt T, Lee B, et al. FDA/CDER/OND experience with new approach mthodologies (NAMs). Int J Toxicol. 2025;10915818251384270. https://doi.org/10.1177/10915818251384270 . + + 10.1177/10915818251384270 + + + + Portela JMD, Paul P, Moriarty O, Theunissen P, Beken S, Brendler-Schwaab S, et al. Review on organs-on-chips for medicines safety assessment: a European regulatory perspective. ALTEX. 2026;43:98–112. https://doi.org/10.14573/altex.2502061 . Accessed 24 May 2026. + + + U.S. FDA. Roadmap to reducing animal testing in preclinical safety studies [Internet]. 2025.  https://www.fda.gov/files/newsroom/published/roadmap_to_reducing_animal_testing_in_preclinical_safety_studies.pdf . Accessed 25 May 2026. + + + Krebs CE, Camp C, Constantino H, Courtot L, Kavanagh O, McCarthy J, et al. Author guide for addressing animal methods bias in publishing. Adv Sci. 2023;10:2303226. https://doi.org/10.1002/advs.202303226 . + + 10.1002/advs.202303226 + + + + PCRM. The physicians committee recommends the NIH fund human-based research infrastructure [Internet]. 2025. https://www.pcrm.org/news/good-science-digest/physicians-committee-recommends-nih-fund-human-based-research . Accessed 24 May 2026. + + + Berggren E, Worth AP. Managing change while phasing out animal testing in chemical safety assessments – a collection of stakeholder experiences and expectations. NAM J. 2026;2:100079. https://doi.org/10.1016/j.namjnl.2026.100079 . + + 10.1016/j.namjnl.2026.100079 + + + + Hope L, Bailey J. Breaking down the barriers to animal-free research. Altern Lab Anim. 2025;53:215–31. https://doi.org/10.1177/02611929251349465 . + + 10.1177/02611929251349465 + 40624753 + + + + Oyetade OB, Allen DG, Carder J, Farley-Dawson EA, Reinke EN, Marko S, et al. Ways to broaden the awareness, consideration and adoption of new approach methodologies (NAMs)*. ALTEX. ALTEX Edition; 2025;42:714–26. https://doi.org/10.14573/altex.2505281 . + + + U.S. FDA. Implementing alternative methods: agency-wide efforts for advancing development, qualification, and implementation of new alternative methods for product testing [Internet]. 2025 [cited 2026 Jan 26]. https://www.fda.gov/science-research/advancing-alternative-methods-fda/implementing-alternative-methods . Accessed 26 Jan 2026. + + + Alves VM, Borba J, Capuzzi SJ, Muratov E, Andrade CH, Rusyn I, et al. Oy Vey! A comment on “Machine learning of toxicological big data enables read-across structure activity relationships outperforming animal test reproducibility”. Toxicol Sci [Internet]. 2019;167:3–4. https://doi.org/10.1093/toxsci/kfy286 . + + 10.1093/toxsci/kfy286 + 30500930 + 6317419 + + + + Beilmann M, Adkins K, Boonen HCM, Hewitt P, Hu W, Mader R, et al. Application of new approach methodologies for nonclinical safety assessment of drug candidates. Nat Rev Drug Discov. 2025;24:705–25. https://doi.org/10.1038/s41573-025-01182-9 . + + 10.1038/s41573-025-01182-9 + 40316753 + + + + Dao T, Sadrieh N. A CDER perspective: landscape of New approach methodologies (NAMs) submitted in drug development programs. Regul Toxicol Pharmacol. 2026;165:106007. https://doi.org/10.1016/j.yrtph.2025.106007 . + + 10.1016/j.yrtph.2025.106007 + 41360337 + + + + Yao J, Peretz J, Bebenek I, Avila A, Alapatt T, Lee B, et al. FDA/CDER/OND experience with New approach methodologies (NAMs). Int J Toxicol. 2026;45:136–56. https://doi.org/10.1177/10915818251384270 . + + 10.1177/10915818251384270 + 41231273 + + + + U.S. Food & Drug Administration. CDER/Office of new drugs streamlined nonclinical studies and acceptable New approach methodologies (NAMs) [Internet]. [cited 2026 Apr 25]. https://www.fda.gov/about-fda/center-drug-evaluation-and-research-cder/cderoffice-new-drugs-streamlined-nonclinical-studies-and-acceptable-new-approach-methodologies-nams . Accessed 25 Apr 2026. + + + U.S. Food & Drug Administration. General considerations for the use of new approach methodologies in drug development [Internet]. [cited 2026 Apr 25]. https://www.fda.gov/regulatory-information/search-fda-guidance-documents/general-considerations-use-new-approach-methodologies-drug-development . Accessed 25 Apr 2026. + + + The 3Rs Collaborative. Microphysiological systems technology hub [Internet].  https://3rc.org/microphysiological-systems-companies/ . Accessed 24 May 2026. + + + Marx U, Beken S, Chen Z, Dehne EM, Doherty A, Ewart L, et al. Biology-inspired dynamic microphysiological system approaches to revolutionize basic research, healthcare and animal welfare. ALTEX. ALTEX Edition. 2025. p. 204–23. https://doi.org/10.14573/altex.2410112 . + + + Marx U, Akabane T, Andersson TB, Baker E, Beilmann M, Beken S, et al. Biology-inspired microphysiological systems to advance patient benefit and animal welfare in drug development. ALTEX. ALTEX Edition. 2020;37:365–94. https://doi.org/10.14573/altex.2001241 . + + + Baker TK, Van Vleet TR, Mahalingaiah PK, Grandhi TSP, Evers R, Ekert J, et al. The current status and use of microphysiological systems by the pharmaceutical industry: the international consortium for innovation and quality microphysiological systems affiliate survey and commentary. Drug Metab Dispos. 2024;52:198–209. https://doi.org/10.1124/dmd.123.001510 . + + 10.1124/dmd.123.001510 + 38123948 + + + + Baran SW, Brown PC, Baudy AR, Fitzpatrick SC, Frantz C, Fullerton A, et al. Perspectives on the evaluation and adoption of complex in vitro models in drug development: workshop with the FDA and the pharmaceutical industry (IQ MPS Affiliate). ALTEX. 2022;39:297–314. https://doi.org/10.14573/altex.2112203 . + + 10.14573/altex.2112203 + 35064273 + + + + Tasnim F, Huang X, Lee CZW, Ginhoux F, Yu H. Recent advances in models of immune-mediated drug-induced liver injury. Front Toxicol [Internet]. 2021;3–2021.  https://www.frontiersin.org/journals/toxicology/articles/10.3389/ftox.2021.605392 . Accessed 24 May 2026. + + + Lim AY, Kato Y, Sakolish C, Valdiviezo A, Han G, Bajaj P, et al. Reproducibility and robustness of a liver microphysiological system PhysioMimix LC12 under varying culture conditions and cell type combinations. Bioengineering. 2023. https://doi.org/10.3390/bioengineering10101195 . + + 10.3390/bioengineering10101195 + 38002450 + 10669060 + + + + Kato Y, Lim AY, Sakolish C, Valdiviezo A, Moyer HL, Hewitt P, et al. Analysis of reproducibility and robustness of OrganoPlate® 2-lane 96, a liver microphysiological system for studies of pharmacokinetics and toxicological assessment of drugs. Toxicol In Vitro. 2022;85:105464. https://doi.org/10.1016/j.tiv.2022.105464 . + + 10.1016/j.tiv.2022.105464 + 36057418 + 10015056 + + + + Ewart L, Apostolou A, Briggs SA, Carman CV, Chaff JT, Heng AR, et al. Performance assessment and economic analysis of a human Liver-Chip for predictive toxicology. Commun Med. 2022;2:154. https://doi.org/10.1038/s43856-022-00209-1 . + + 10.1038/s43856-022-00209-1 + 36473994 + 9727064 + + + + Pamies D, Ekert J, Zurich M-G, Frey O, Werner S, Piergiovanni M, et al. Recommendations on fit-for-purpose criteria to establish quality management for microphysiological systems and for monitoring their reproducibility. Stem Cell Rep. 2024;19:604–17. https://doi.org/10.1016/j.stemcr.2024.03.009 . + + 10.1016/j.stemcr.2024.03.009 + + + + Rusyn I, Sakolish C, Kato Y, Stephan C, Vergara L, Hewitt P, et al. Microphysiological systems evaluation: experience of TEX-VAL tissue chip testing consortium. Toxicol Sci. 2022;188:143–52. https://doi.org/10.1093/toxsci/kfac061 . + + 10.1093/toxsci/kfac061 + 35689632 + 9333404 + + + + Sakolish C, Reese CE, Luo Y-S, Valdiviezo A, Schurdak ME, Gough A, et al. Analysis of reproducibility and robustness of a human microfluidic four-cell liver acinus microphysiology system (LAMPS). Toxicology. 2021;448:152651. https://doi.org/10.1016/j.tox.2020.152651 . + + 10.1016/j.tox.2020.152651 + 33307106 + + + + Sakolish C, Luo Y-S, Valdiviezo A, Vernetti LA, Rusyn I, Chiu WA. Prediction of hepatic drug clearance with a human microfluidic four-cell liver acinus microphysiology system. Toxicology. 2021;463:152954. https://doi.org/10.1016/j.tox.2021.152954 . + + 10.1016/j.tox.2021.152954 + 34543702 + 8585690 + + + + Sakolish C, Chen Z, Dalaijamts C, Mitra K, Liu Y, Fulton T, et al. Predicting tubular reabsorption with a human kidney proximal tubule tissue-on-a-chip and physiologically-based modeling. Toxicol In Vitro. 2020;63:104752. https://doi.org/10.1016/j.tiv.2019.104752 . + + 10.1016/j.tiv.2019.104752 + 31857146 + + + + Sakolish C, House JS, Chramiec A, Liu Y, Chen Z, Halligan SP, et al. Tissue-engineered bone tumor as a reproducible human in vitro model for studies of anticancer drugs. Toxicol Sci. 2020;173:65–76. https://doi.org/10.1093/toxsci/kfz220 . + + 10.1093/toxsci/kfz220 + 31626302 + 8204946 + + + + Liu Y, Sakolish C, Chen Z, Phan DTT, Bender RHF, Hughes CCW, et al. Human in vitro vascularized micro-organ and micro-tumor models are reproducible organ-on-a-chip platforms for studies of anticancer drugs. Toxicology. 2020;445:152601. https://doi.org/10.1016/j.tox.2020.152601 . + + 10.1016/j.tox.2020.152601 + 32980478 + 7606810 + + + + Sakolish C, Weber EJ, Kelly EJ, Himmelfarb J, Mouneimne R, Grimm FA, et al. Technology transfer of the microphysiological systems: a case study of the human proximal tubule tissue chip. Sci Rep. 2018;8:14882. https://doi.org/10.1038/s41598-018-33099-2 . + + 10.1038/s41598-018-33099-2 + 30291268 + 6173737 + + + + Sakolish C, Lin H-C, Moyer HL, Ford LC, Christen CH, Wetmore BA, et al. An in vitro-in silico workflow for predicting renal clearance of environmental chemicals and drugs. Toxicology. 2026;519:154336. https://doi.org/10.1016/j.tox.2025.154336 . + + 10.1016/j.tox.2025.154336 + 41224188 + + + + Moyer HL, Vergara L, Stephan C, Sakolish C, Ford LC, Tsai H-H, et al. Comparative analysis of Caco-2 cells and human jejunal and duodenal enteroid-derived cells in gel- and membrane-based barrier models of intestinal permeability. Toxicol Sci. 2025;204:181–97. https://doi.org/10.1093/toxsci/kfaf011 . + + 10.1093/toxsci/kfaf011 + 39886939 + 11939079 + + + + Sakolish C, Tsai HHD, Lin HC, Bajaj P, Villenave R, Ferguson SS, et al. Comparative analysis of proximal tubule cell sources for in vitro studies of renal proximal tubule toxicity. Biomedicines. 2025. https://doi.org/10.3390/biomedicines13030563 . + + 10.3390/biomedicines13030563 + 40149543 + 11940618 + + + + Sakolish C, Moyer HL, Tsai H-H, Ford LC, Dickey AN, Bajaj P, et al. Comparative analysis of the physiological and transport functions of various sources of renal proximal tubule cells under static and fluidic conditions in PhysioMimix T12 platform. Drug Metab Dispos. 2025. https://doi.org/10.1124/dmd.124.001488 . + + 10.1124/dmd.124.001488 + 39884810 + + + + Negi CK, Sakolish C, Tsai H-H, Nitsche K, Gang H, Bajaj P, et al. Comparative analysis of species-specific hepatocyte function and drug effects in a liver microphysiological system PhysioMimix LC12 and 96-well plates. ACS Pharmacol Transl Sci. 2025;8:4138–58. https://doi.org/10.1021/acsptsci.5c00554 . + + 10.1021/acsptsci.5c00554 + 41262563 + 12624441 + + + + Moyer HL, Vergara L, Stephan C, Sakolish C, Lin HC, Chiu WA, et al. Human small intestinal tissue models to assess barrier permeability: comparative analysis of Caco-2 cells, jejunal and duodenal enteroid-derived cells, and EpiIntestinalTM tissues in membrane-based cultures with and without flow. Bioengineering. 2025. https://doi.org/10.3390/bioengineering12080809 . Multidisciplinary Digital Publishing Institute (MDPI). + + 10.3390/bioengineering12080809 + 40868322 + 12384003 + + + + Nitsche KS, Sakolish C, Carmichael PL, Hewitt P, Bajaj P, Ferguson SS, et al. Exploring the potential of liver microphysiological systems of varied configurations to model cholestatic chemical effects. Arch Toxicol. 2025. https://doi.org/10.1007/s00204-025-04263-1 . + + 10.1007/s00204-025-04263-1 + 41361122 + 12967466 + + + + Lin H-C, Sakolish C, Moyer HL, Carmichael PL, Baltazar MT, Ferguson SS, et al. An in vitro-in silico workflow for predicting renal clearance of PFAS. Toxicol Appl Pharmacol. 2024;489:117015. https://doi.org/10.1016/j.taap.2024.117015 . + + 10.1016/j.taap.2024.117015 + 38917890 + 11585971 + + + + Sakolish C, Moyer HL, Tsai H-H, Ford LC, Dickey AN, Wright FA, et al. Analysis of reproducibility and robustness of a renal proximal tubule microphysiological system OrganoPlate 3-lane 40 for in vitro studies of drug transport and toxicity. Toxicol Sci. 2023;196:52–70. https://doi.org/10.1093/toxsci/kfad080 . + + 10.1093/toxsci/kfad080 + 37555834 + 10613961 + + + + Sakolish C, Georgescu A, Huh DD, Rusyn I. A model of human small airway on a chip for studies of subacute effects of inhalation toxicants. Toxicol Sci. 2022;187:267–78. https://doi.org/10.1093/toxsci/kfac036 . + + 10.1093/toxsci/kfac036 + 35357501 + 9154286 + + + + Thenuwara G, Javed B, Singh B, Tian F. Biosensor-enhanced organ-on-a-chip models for investigating Glioblastoma tumor microenvironment dynamics. Sensors Basel. 2024. https://doi.org/10.3390/s24092865 . + + 10.3390/s24092865 + 39338706 + 11435446 + + + + Macko P, Palosaari T, Whelan M. Extrapolating from acute to chronic toxicity in vitro. Toxicol In Vitro. 2021;76:105206. https://doi.org/10.1016/j.tiv.2021.105206 . + + 10.1016/j.tiv.2021.105206 + 34186185 + 8434427 + + + + Sato T, Vries RG, Snippert HJ, van de Wetering M, Barker N, Stange DE, et al. Single Lgr5 stem cells build crypt-villus structures in vitro without a mesenchymal niche. Nature. 2009;459:262–5. https://doi.org/10.1038/nature07935 . + + 10.1038/nature07935 + 19329995 + + + + Sakthivel V, Dharshan SS, Namasivayam SKR, Arockiaraj J. Advances in 3D organoids and organ-on-a-chip systems for biomedical research. J Biomed Mater Res A. 2026;114:e70028. https://doi.org/10.1002/jbma.70028 . + + 10.1002/jbma.70028 + 41481795 + + + + Zhao Z, Chen X, Dowbaj AM, Sljukic A, Bratlie K, Lin L, et al. Organoids. Nat Rev Methods Primers. 2022;2:94. https://doi.org/10.1038/s43586-022-00174-y . + + 10.1038/s43586-022-00174-y + 37325195 + 10270325 + + + + Clevers H. Modeling development and disease with organoids. Cell. 2016;165:1586–97. https://doi.org/10.1016/j.cell.2016.05.082 . + + 10.1016/j.cell.2016.05.082 + 27315476 + + + + Fatehullah A, Tan SH, Barker N. Organoids as an in vitro model of human development and disease. Nat Cell Biol. 2016;18:246–54. https://doi.org/10.1038/ncb3312 . + + 10.1038/ncb3312 + 26911908 + + + + National Institutes of Health. NIH Standardized Organoid Modeling (SOM) Center [Internet]. [cited 2026 Apr 25]. https://www.nih.gov/som . Accessed 25 Apr 2026. + + + Zdyrski C, Gabriel V, Ospina O, Nicholson HF, Catucci M, Melvin BJ, et al. Establishment and transcriptomic characterization of canine organoids from multiple tissues. Front Cell Dev Biol [Internet]. 2025;13–2025. https://www.frontiersin.org/journals/cell-and-developmental-biology/articles/10.3389/fcell.2025.1680376 . Accessed 24 May 2026. + + + Zhu J, Ji L, Chen Y, Li H, Huang M, Dai Z, et al. Organoids and organs-on-chips: insights into predicting the efficacy of systemic treatment in colorectal cancer. Cell Death Discov. 2023;9:72. https://doi.org/10.1038/s41420-023-01354-9 . + + 10.1038/s41420-023-01354-9 + 36813783 + 9947255 + + + + Park SE, Georgescu A, Huh D. Organoids-on-a-chip. Science. 2019;364:960–5. https://doi.org/10.1126/science.aaw7894 . + + 10.1126/science.aaw7894 + 31171693 + 7764943 + + + + Wang H, Ning X, Zhao F, Zhao H, Li D. Human organoids-on-chips for biomedical research and applications. Theranostics. 2024;14:788–818. https://doi.org/10.7150/thno.90492 . + + 10.7150/thno.90492 + 38169573 + 10758054 + + + + Spiró Z, El-Heliebi A, Mair MJ, Pieber TR, Prietl B, Spiegl-Kreinecker S, et al. Ex vivo drug screening on patient-derived tumor material to advance functional precision in oncology: an overview on current approaches and unresolved challenges. Cancer Treat Rev. 2026. https://doi.org/10.1016/j.ctrv.2025.103072 . + + 10.1016/j.ctrv.2025.103072 + 41475298 + + + + Lo Y-H, Karlsson K, Kuo CJ. Applications of organoids for cancer biology and precision medicine. Nat Cancer. 2020;1:761–73. https://doi.org/10.1038/s43018-020-0102-y . + + 10.1038/s43018-020-0102-y + 34142093 + 8208643 + + + + Oh JH, Cho J-Y. Comparative oncology: overcoming human cancer through companion animal studies. Exp Mol Med. 2023;55:725–34. https://doi.org/10.1038/s12276-023-00977-3 . + + 10.1038/s12276-023-00977-3 + 37009802 + 10167357 + + + + Allenspach K, Zavros Y, Elbadawy M, Zdyrski C, Mochel JP. Leveraging the predictive power of 3D organoids in dogs to develop new treatments for man and man’s best friend. BMC Biol. 2023;21:297. https://doi.org/10.1186/s12915-023-01799-5 . + + 10.1186/s12915-023-01799-5 + 38155352 + 10755934 + + + + Fang Z, Li P, Du F, Shang L, Li L. The role of organoids in cancer research. Exp Hematol Oncol. 2023;12:69. https://doi.org/10.1186/s40164-023-00433-y . + + 10.1186/s40164-023-00433-y + 37537666 + 10401879 + + + + Kothadiya S, Cutshaw G, Uthaman S, Hassan N, Sahoo DK, Wickham H, et al. Cisplatin-induced metabolic responses measured with Raman spectroscopy in cancer cells, spheroids, and canine-derived organoids. ACS Appl Mater Interfaces. 2024;16:50267–81. https://doi.org/10.1021/acsami.4c08629 . + + 10.1021/acsami.4c08629 + 39284013 + + + + Peterson HM, Zdyrski C, Allenspach K, Mochel JP, Trepanier LA. Urothelial genotoxicity of household chemicals in healthy canine urinary bladder organoids relative to observed urinary exposures in pet dogs. Front Vet Sci. 2025. https://doi.org/10.3389/fvets.2025.1702980 . + + 10.3389/fvets.2025.1702980 + 41502853 + 12771537 + + + + Elbadawy M, Usui T, Mori T, Tsunedomi R, Hazama S, Nabeta R, et al. Establishment of a novel experimental model for muscle-invasive bladder cancer using a dog bladder cancer organoid culture. Cancer Sci. 2019;110:2806–21. https://doi.org/10.1111/cas.14118 . + + 10.1111/cas.14118 + 31254429 + 6726682 + + + + Ettayebi K, Crawford SE, Murakami K, Broughman JR, Karandikar U, Tenge VR, et al. Replication of human noroviruses in stem cell–derived human enteroids. Science. 2016;353:1387–93. https://doi.org/10.1126/science.aaf5211 . + + 10.1126/science.aaf5211 + 27562956 + 5305121 + + + + Zou WY, Blutt SE, Crawford SE, Ettayebi K, Zeng X-L, Saxena K, et al. Human intestinal enteroids: new models to study gastrointestinal virus infections. In: Turksen K, editor. Organoids: Stem Cells, Structure, and Function [Internet]. New York, NY: Springer New York; 2019. p. 229–47. https://doi.org/10.1007/7651_2017_1 . + + + Nicholson HF, Zdyrski C, Leyson CM, Corbett MP, Kumar N, Catucci M, et al. Development and characterization of chicken lung organoids for in vitro modeling of avian influenza virus-host cell interaction. Sci Rep. 2026;16:1572. https://doi.org/10.1038/s41598-025-30641-x . + + 10.1038/s41598-025-30641-x + 41519874 + 12800103 + + + + Lee SH, Hu W, Matulay JT, Silva MV, Owczarek TB, Kim K, et al. Tumor evolution and drug response in patient-derived organoid models of bladder cancer. Cell. 2018;173:515-528.e17. https://doi.org/10.1016/j.cell.2018.03.017 . + + 10.1016/j.cell.2018.03.017 + 29625057 + 5890941 + + + + Taurin S, Alzahrani R, Aloraibi S, Ashi L, Alharmi R, Hassani N. Patient-derived tumor organoids: a preclinical platform for personalized cancer therapy. Transl Oncol. 2025;51:102226. https://doi.org/10.1016/j.tranon.2024.102226 . + + 10.1016/j.tranon.2024.102226 + 39622151 + + + + Tindle C, Fuller M, Fonseca A, Taheri S, Ibeawuchi S-R, Beutler N, et al. Adult stem cell-derived complete lung organoid models emulate lung disease in COVID-19. Elife. 2021;10:e66417. https://doi.org/10.7554/eLife.66417 . + + 10.7554/eLife.66417 + 34463615 + 8463074 + + + + Giles R, Meijer EM, Maas RGC, van Dijk CGM, Verhaar MC, Cheng C. Animal-free alternatives for Matrigel in human iPSC-derived blood vessel organoid culture. Sci Rep. 2025;15:36042. https://doi.org/10.1038/s41598-025-20091-w . + + 10.1038/s41598-025-20091-w + 41094042 + 12528733 + + + + Fujii M, Matano M, Toshimitsu K, Takano A, Mikami Y, Nishikori S, et al. Human intestinal organoids maintain self-renewal capacity and cellular diversity in niche-inspired culture condition. Cell Stem Cell. 2018;23:787-793.e6. https://doi.org/10.1016/j.stem.2018.11.016 . + + 10.1016/j.stem.2018.11.016 + 30526881 + + + + Chakrabarti J, Koh V, So JBY, Yong WP, Zavros Y. A preclinical human-derived autologous gastric cancer organoid/Immune cell co-culture model to predict the efficacy of targeted therapies. J Vis Exp. 2021.  https://doi.org/10.3791/61443 . + + + Harter MF, Recaldin T, Gjorevski N. Organoids as models of immune-organ interaction. Cell Rep. 2025. https://doi.org/10.1016/j.celrep.2025.116214 . + + 10.1016/j.celrep.2025.116214 + 40906560 + + + + Chandra L, Borcherding DC, Kingsbury D, Atherly T, Ambrosini YM, Bourgois-Mochel A, et al. Derivation of adult canine intestinal organoids for translational research in gastroenterology. BMC Biol. 2019;17:33. https://doi.org/10.1186/s12915-019-0652-6 . + + 10.1186/s12915-019-0652-6 + 30975131 + 6460554 + + + + Ambrosini YM, Park Y, Jergens AE, Shin W, Min S, Atherly T, et al. Recapitulation of the accessible interface of biopsy-derived canine intestinal organoids to study epithelial-luminal interactions. PLoS One. 2020;15:e0231423. https://doi.org/10.1371/journal.pone.0231423 . + + 10.1371/journal.pone.0231423 + 32302323 + 7164685 + + + + Sahoo DK, Martinez MN, Dao K, Gabriel V, Zdyrski C, Jergens AE, et al. Canine intestinal organoids as a novel in vitro model of intestinal drug permeability: a proof-of-concept study. Cells. 2023. https://doi.org/10.3390/cells12091269 . + + 10.3390/cells12091269 + 37998395 + 10670380 + + + + Corbett MP, Gabriel V, Livania V, Díaz-Regañón D, Ralston A, Zdyrski C, et al. A preclinical model to assess intestinal barrier integrity using canine enteroids and colonoids. Biology. 2025. https://doi.org/10.3390/biology14030270 . + + 10.3390/biology14030270 + 40136526 + 11939752 + + + + Martinez MN, Mochel JP, Toutain P-L. Evolving value and validity of animal models in veterinary therapeutic research: impact of scientific progress. Eur J Pharm Sci. 2025;210:107111. https://doi.org/10.1016/j.ejps.2025.107111 . + + 10.1016/j.ejps.2025.107111 + 40286991 + + + + Moshksayan K, Khanna R, Camli B, Yakay ZN, Harihara A, Zdyrski C, et al. A microfluidic platform for culturing and high-content imaging of adult stem cell-derived organoids. Sci Rep [Internet]. 2025;15:40162. https://doi.org/10.1038/s41598-025-23883-2 . + + 10.1038/s41598-025-23883-2 + 41249220 + 12623891 + + + + Moshksayan K, Harihara A, Mondal S, Hegarty E, Atherly T, Sahoo DK, et al. OrganoidChip facilitates hydrogel-free immobilization for fast and blur-free imaging of organoids. Sci Rep. 2023;13:11268. https://doi.org/10.1038/s41598-023-38212-8 . + + 10.1038/s41598-023-38212-8 + 37438409 + 10338466 + + + + U.S. FDA. USFDA Guidance for industry: M15 general principles for model-informed drug development [Internet]. 2024 [cited 2026 Jan 5]. https://www.fda.gov/media/184747/download . Accessed 5 Jan 2026. + + + EMA. Guideline on the reporting of physiologically based pharmacokinetic (PBPK) modelling and simulation [Internet]. 2018 [cited 2026 Jan 5]. https://www.ema.europa.eu/en/documents/scientific-guideline/guideline-reporting-physiologically-based-pharmacokinetic-pbpk-modelling-and-simulation_en.pdf . Accessed 5 Jan 2026. + + + Slankster-Schmierer E. OECD Releases new Test Guidelines for NAMs in 2023 [Internet]. ICAPO. 2023 [cited 2026 Feb 6]. https://www.icapo.org/news/oecd-releases-new-test-guidelines-nams-2023 . Accessed 6 Feb 2026. + + + Rowland Yeo K, Gil Berglund E, Chen Y. Dose optimization informed by PBPK modeling: State-of-the art and future. Clin Pharmacol Ther. 2024;116:563–76. https://doi.org/10.1002/cpt.3289 . + + 10.1002/cpt.3289 + 38686708 + + + + Vasilogianni A-M, Achour B, Scotcher D, Peters SA, Al-Majdoub ZM, Barber J, et al. Hepatic scaling factors for in vitro&#x2013; in vivo extrapolation of metabolic drug clearance in patients with colorectal cancer with liver metastasis. Drug Metab Dispos [Internet]. 2021;49:563–71.  https://doi.org/10.1124/dmd.121.000359 . Elsevier. + + + National Toxicology Program. Integrated Chemical Environment [Internet]. [cited 2026 Jan 5]. https://ice.ntp.niehs.nih.gov/ . Accessed 5 Jan 2026. + + + PCRM. Using NICEATMs Integrated Chemical Environment to support chemical evaluations [Internet]. [cited 2026 Jan 5]. https://pcrm.widencollective.com/portals/ieooh0ol/ICE#5023fe19-5184-452d-95ae-9b9b7b3e29d7 . Accessed 5 Jan 2026. + + + Mao B, Gao Y, Xu C, Macha S, Shao S, Ahamadi M. Evaluating the impact of AI-based model-informed drug development (MIDD): a comparative review. AAPS J. 2025;27:102. https://doi.org/10.1208/s12248-025-01075-0 . + + 10.1208/s12248-025-01075-0 + 40457118 + + + + Li Y, Wang Z, Li Y, Du J, Gao X, Li Y, et al. A combination of machine learning and PBPK modeling approach for pharmacokinetics prediction of small molecules in humans. Pharm Res. 2024;41:1369–79. https://doi.org/10.1007/s11095-024-03725-y . + + 10.1007/s11095-024-03725-y + 38918309 + 11534847 + + + + EMA. European medicines Agency Reflection paper on the use of Artificial Intelligence (AI) in the medicinal product lifecycle [Internet]. 2024 [cited 2026 Jan 5]. https://www.ema.europa.eu/en/documents/scientific-guideline/reflection-paper-use-artificial-intelligence-ai-medicinal-product-lifecycle_en.pdf . Accessed 5 Jan 2026. + + + U.S. FDA. Using artificial intelligence and machine learning in the development of drug and biological products, discussion paper and request for feedback. 2025.  https://www.fda.gov/media/167973/download . Accessed 24 May 2026. + + + Balkhair O, Albalushi H. Artificial intelligence in organoid-based disease modeling: a new frontier in precision medicine. Biomimetics. 2025. https://doi.org/10.3390/biomimetics10120845 . + + 10.3390/biomimetics10120845 + 41439914 + 12730694 + + + + Nazer LH, Zatarah R, Waldrip S, Ke JXC, Moukheiber M, Khanna AK, et al. Bias in artificial intelligence algorithms and recommendations for mitigation. PLoS Digit Health. 2023;2:e0000278. https://doi.org/10.1371/journal.pdig.0000278 . + + 10.1371/journal.pdig.0000278 + 37347721 + 10287014 + + + + Evans H, Snead D. Understanding the errors made by artificial intelligence algorithms in histopathology in terms of patient impact. npj Digit Med. 2024;7:89. https://doi.org/10.1038/s41746-024-01093-w . + + 10.1038/s41746-024-01093-w + 38600151 + 11006652 + + + + Rusyn I. ToxPoint: of hammers and nails—understanding academic challenges with “context of use” and “fit for purpose.” Toxicol Sci. 2025;207:29–30. https://doi.org/10.1093/toxsci/kfaf058 . + + 10.1093/toxsci/kfaf058 + 40300103 + 12448218 + + + + Liu K, Chen X, Fan Z, Ren F, Liu J, Hu B. From organoids to organoids-on-a-chip: current applications and challenges in biomedical research. Chin Med J (Engl). 2025;138:792–807. https://doi.org/10.1097/CM9.0000000000003535 . + + 10.1097/CM9.0000000000003535 + 39994843 + 11970821 + + + + Goldrick C, Guri I, Herrera-Oropeza G, O’Brien-Gore C, Roy E, Wojtynska M, et al. 3D multicellular systems in disease modelling: From organoids to organ-on-chip. Front Cell Dev Biol. 2023. https://doi.org/10.3389/fcell.2023.1083175 . + + 10.3389/fcell.2023.1083175 + 36819106 + 9933985 + + + + +
+ + + 42215809 + + 2026 + 05 + 29 + +
+ + 2730-6011 + + + 2026 + May + 29 + + + Discover oncology + Discov Oncol + + Exercise-related genes predicts overall survival and tumor immune microenvironment, and identifies the biological role of SLC52A2 in breast cancer. + 10.1007/s12672-026-05321-5 + + Breast cancer (BRCA) is the most common malignant tumor in women, with prognoses differing markedly by molecular subtype. Exercise is known to be related to tumor occurrence and progression, yet its role in BRCA remains understudied. This research seeks to explore the prognostic and immunomodulatory functions of exercise-related genes (ERGs) in BRCA, and their links to molecular subtypes, so as to inform targeted and precision treatment. + We obtained BRCA gene expression profiles and clinical data from the TCGA-BRCA project. Using LASSO, random forest, gradient boosting machine (GBM), stepwise Cox regression (Stepcox), and extreme gradient boosting (XGBOOST) algorithms, we screened prognostic signature genes from the intersecting ERGs, determined by differential expression analysis and weighted gene co-expression network analysis (WGCNA), established and validated a novel risk prediction model. We further analyzed biological functions, mutation profiles, immune traits, and molecular subtype associations across different risk groups. Additionally, the prognostic, biological and immunological roles of the core risk biomarker in the exercise-related signature was evaluated. + WGCNA identified 345 differentially expressed ERGs in BRCA, and five machine learning algorithms further screened 6 prognostic genes (SNX22, SLC52A2, TNFRSF18, NFE2, EZR, and EMP1). The low-risk group had significantly higher overall survival rate than the high-risk group, a difference driven by the functional roles of the two groups' differentially expressed genes, which regulated the cell cycle and epithelial-mesenchymal transition (EMT). Additionally, the high- and low-risk groups showed distinct mutation and immunomodulatory features. Consensus clustering of prognosis between the groups linked these differences to BRCA molecular subtypes. As a core candidate factor, SLC52A2 contributed to BRCA progression and poor prognosis in patients by participating in multiple signaling pathways and regulating immune cells. + ERGs-based prognostic signatures could distinguish clinical outcomes of BRCA patients and were correlated with immune regulation and mutation patterns. The ERGs-constructed risk scoring system and molecular subtypes have the potential to serve as preclinical biological and immunological markers, paving the way for clinical management and treatment of BRCA. + © 2026. The Author(s). + + + + Chen + Caiping + C + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Han + Chao + C + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Xue + Li + L + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Lu + Xiang + X + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. 00187649@zjxu.edu.cn. + + + + eng + + + 2023-FC-001 + Jiaxing Key Discipiline of Medcine - -Surgery Med (Mastopathy) + + + + 2023-PYXK-001 + Jiaxing Provinces and Cities Jointly Cultivate Discipline - -General Surgery (Minimally Invasive) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Discov Oncol + 101775142 + 2730-6011 + + + Breast cancer + Exercise + Genetic mutation + Immune response + Molecular cluster + Prognosis + + Declarations. Ethics approval and consent to participate: The cohort data used in this article were all from online databases and therefore did not involve ethics. Consent to participate is not applicable to this study. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 28 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 23 + 25 + + + aheadofprint + + 42215809 + 10.1007/s12672-026-05321-5 + 10.1007/s12672-026-05321-5 + + +
+ + + 42215746 + + 2026 + 05 + 29 + +
+ + 1435-2451 + + + 2026 + May + 30 + + + Langenbeck's archives of surgery + Langenbecks Arch Surg + + Relationship between ileocolic arterial stump length and lymph node yield - a retrospective study using machine learning. + 10.1007/s00423-026-04048-9 + + In right-sided colon cancer surgery, ileocolic artery stump length may reflect the extent of mesenteric resection and lymph node harvest. This study evaluated the association between postoperative stump length measured on CT, lymph node yield, and recurrence or progression within 24 months. + This single-center retrospective study included 64 patients who underwent right or extended right hemicolectomy for right-sided colon adenocarcinoma between 2016 and 2024. Right-sided tumors were defined as those located in the cecum, ascending colon, hepatic flexure, or proximal transverse colon. Only primary surgical cases were included. Ileocolic artery stump length was measured on contrast-enhanced CT scans performed approximately 12 months postoperatively (± 1 month) by two independent radiologists. A Random Forest regression model using stump length as the only predictor variable was developed to estimate lymph node yield. Model performance was assessed using 10-fold cross-validation with R² and mean squared error (MSE). Exploratory recurrence/progression analysis used logistic regression with natural cubic splines. + Mean stump length was 2.03 cm (range 1.0-4.5 cm), and median lymph node yield was 17 (range 10-55). Adequate nodal evaluation (≥ 12 nodes) was achieved in 85.9% of patients. The model demonstrated a consistent inverse relationship between stump length and lymph node yield (R² = 0.78; MSE = 0.16). Exploratory analysis suggested a non-significant trend toward higher recurrence or progression with longer stumps. + Longer ileocolic artery stumps were associated with reduced lymph node yield, suggesting stump length may reflect the extent of mesenteric resection. External validation is required before clinical application. + © 2026. The Author(s). + + + + Zayas-Borquez + Rogelio + R + 0000-0003-1751-4211 + + Universidad Nacional Autónoma de México, Mexico City, Mexico. rogeliozb94@unam.edu. + + + + Arizaga-Ramírez + María Sofía + MS + 0009-0004-2981-0530 + + Department of Radiology and Imaging, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Mexico City, Mexico. + + + + Canto-Losa + Jorge + J + 0000-0003-3768-3688 + + Universidad Nacional Autónoma de México, Mexico City, Mexico. jorge.canto@incmnsz.mx. + + + + Gándara-Lois + Ana C + AC + 0009-0001-0265-1726 + + Department of Radiology and Imaging, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Mexico City, Mexico. + + + + Salgado-Nesme + Noel + N + 0000-0002-3559-5070 + + Department of Colorectal Surgery, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Vasco de Quiroga 15, Belisario Domínguez Seccion 16, Tlalpan, Mexico City, PC 14080, Mexico. + + + + Alvarez-Bautista + Francisco + F + 0000-0003-2645-832X + + Department of General and Endoscopic Surgery, "Dr. Manuel GEA González" General Hospital, Mexico City, Mexico. + + + + Santes + Oscar + O + 0000-0002-6393-4607 + + Department of Colorectal Surgery, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Vasco de Quiroga 15, Belisario Domínguez Seccion 16, Tlalpan, Mexico City, PC 14080, Mexico. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + Germany + Langenbecks Arch Surg + 9808285 + 1435-2443 + + IM + + Central vascular ligation + Complete mesocolic excision + Lymph node retrieval + Machine learning + Right hemicolectomy + + Declarations. Ethics approval: This study was conducted in accordance with the principles of the Declaration of Helsinki. The study protocol was reviewed and approved by the Institutional Review Board of the corresponding institution. Given the retrospective nature of the study and the use of anonymized data, the requirement for informed consent was waived. Informed consent: Informed consent was waived due to the retrospective design of the study and the use of anonymized patient data. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 16 + + + 2026 + 4 + 11 + + + 2026 + 5 + 29 + 23 + 23 + + + aheadofprint + + 42215746 + 10.1007/s00423-026-04048-9 + 10.1007/s00423-026-04048-9 + + +
+ + + 42215700 + + 2026 + 05 + 29 + +
+ + 1437-1596 + + + 2026 + May + 30 + + + International journal of legal medicine + Int J Legal Med + + Proteomic profiling of bone for the estimation of post-mortem interval and post-mortem submersion interval: a systematic review. + 10.1007/s00414-026-03844-8 + + Accurate estimation of the Post-Mortem Interval (PMI) and Post-Mortem Submersion Interval (PMSI) remains a persistent challenge in forensic science, especially when traditional morphological and entomological methods fail due to advanced decomposition or in aquatic environments. Proteomic profiling of bone tissues has recently emerged as a promising approach, leveraging the predictable degradation patterns of bone proteins to estimate time since death more reliably. This systematic review, conducted in accordance with PRISMA guidelines, analyzed 24 peer-reviewed studies focusing on the application of proteomic techniques to bone tissue for PMI and PMSI estimation. The included studies were evaluated based on sample type, analytical techniques used, identified biomarkers, environmental conditions assessed, and the overall reliability and reproducibility of the findings. The review found that specific bone proteins, particularly collagen, osteocalcin, fetuin-A, etc. exhibited consistent degradation patterns that correlated strongly with elapsed post-mortem time. Cortical bone was identified as a more stable and informative matrix compared to trabecular bone. Mass spectrometry, especially LC-MS/MS, emerged as the predominant analytical technique due to its high sensitivity and accuracy in detecting low-abundance proteins over extended PMIs and PMSIs. However, protein degradation rates were significantly influenced by environmental variables such as temperature, humidity, soil pH, and microbial activity. This review also emphasizes the transformative role of bone proteomics in advancing forensic science while identifying key gaps that must be addressed to achieve global standardization and practical implementation in diverse forensic contexts. The integration of proteomics with other emerging technologies, such as machine learning algorithms and computational modeling, may further enhance the precision of PMI and PMSI estimation in future applications. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Dalal + Jyoti + J + 0000-0002-4690-6452 + + School of Forensic Sciences, Amity University Punjab, Mohali, Punjab, India. jyotidalal417@gmail.com. + + + + Kumari + Pallavi + P + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + Department of Forensic Science, University Institute Allied Health Sciences, Chandigarh University, Mohali, Punjab, India. + + + + Gupta + Vinayak + V + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + + Chhikara + Anjali + A + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 30 + +
+ + Germany + Int J Legal Med + 9101456 + 0937-9827 + + IM + + Bone Biomarkers + Forensic Proteomics + Post-Mortem Interval (PMI) + Post-Mortem Submersion Interval (PMSI) + Protein degradation + Proteomic profiling + Systematic review + + Declarations. Competing Interest: None. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 5 + 8 + + + 2026 + 5 + 17 + + + 2026 + 5 + 29 + 23 + 22 + + + aheadofprint + + 42215700 + 10.1007/s00414-026-03844-8 + 10.1007/s00414-026-03844-8 + + + + Amendt J, Richards CS, Campobasso CP, Zehner R, Hall MJ (2011) Forensic entomology: applications and limitations. Forensic science, medicine, and pathology 7(4):379–392. https://doi.org/10.1007/s12024-010-9209-2 + + 10.1007/s12024-010-9209-2 + 21213072 + + + + Barrios M, Wolff M (2011) Initial study of arthropods succession and pig carrion decomposition in two freshwater ecosystems in the Colombian Andes. Forensic Sci Int 212(1–3):164–172. https://doi.org/10.1016/j.forsciint.2011.06.008 + + 10.1016/j.forsciint.2011.06.008 + 21741189 + + + + Becker J, Boulyga S, Becker J, Pickhardt C, Damoc E, Przybylski M (2003) Structural identification and quantification of protein phosphorylations after gel electrophoretic separation using Fourier transform ion cyclotron resonance mass spectrometry and laser ablation inductively coupled plasma mass spectrometry. Int J Mass Spectrom 228:985–997. https://doi.org/10.1016/S1387-3806(03)00266-5 + + 10.1016/S1387-3806(03)00266-5 + + + + Bern M, Kil YJ, Becker C (2012) Byonic: Advanced peptide and protein identification software. Curr Protoc Bioinformatics. https://doi.org/10.1002/0471250953.bi1320s40 + + + Boaks A, Siwek D, Mortazavi F (2014) The temporal degradation of bone collagen: a histochemical approach. Forensic science international 240:104–110. https://doi.org/10.1016/j.forsciint.2014.04.008 + + 10.1016/j.forsciint.2014.04.008 + 24836839 + + + + Bonicelli A, Di Nunzio A, Di Nunzio C, Procopio N (2022) Insights into the differential preservation of bone proteomes in inhumed and entombed cadavers from Italian forensic caseworks. Journal of proteome research 21(5):1285–1298. https://doi.org/10.1021/acs.jproteome.1c00904 + + 10.1021/acs.jproteome.1c00904 + 35316604 + 9087355 + + + + Bonicelli A, Mickleburgh HL, Chighine A, Locci E, Wescott DJ, Procopio N (2022) The “ForensOMICS” approach for postmortem interval estimation from human bone by integrating metabolomics, lipidomics, and proteomics. eLife 11:e83658. https://doi.org/10.7554/eLife.83658 + + 10.7554/eLife.83658 + 36583441 + 9803353 + + + + Buckley M, Collins M, Thomas-Oates J, Wilson JC (2009) Species identification by analysis of bone collagen using matrix-assisted laser desorption/ionisation time-of-flight mass spectrometry. Rapid Communications in Mass Spectrometry 23(23):3843–3854. https://doi.org/10.1002/rcm.4316 + + 10.1002/rcm.4316 + 19899187 + + + + Buekenhout I, Vieira DN, Ferreira MT (2016) Reliability of weathering in the estimation of the post-mortem interval of human remains buried in coffins. Australian J Forensic Sci 50(4):414–427. https://doi.org/10.1080/00450618.2016.1257066 + + 10.1080/00450618.2016.1257066 + + + + Cappellini E, Jensen LJ, Szklarczyk D, Ginolhac A, da Fonseca RA, Stafford TW, Holen SR, Collins MJ, Orlando L, Willerslev E, Gilbert MT, Olsen JV (2012) Proteomic analysis of a pleistocene mammoth femur reveals more than one hundred ancient bone proteins. J Proteome Res 11(2):917–926. https://doi.org/10.1021/pr200721u + + 10.1021/pr200721u + 22103443 + + + + Carter DO, Yellowlees D, Tibbett M (2008) Temperature affects microbial decomposition of cadavers (Rattus rattus) in contrasting soils. Appl Soil Ecol 40(1):129–137. https://doi.org/10.1016/j.apsoil.2008.03.010 + + 10.1016/j.apsoil.2008.03.010 + + + + Carter DO, Yellowlees D, Tibbett M (2007) Cadaver decomposition in terrestrial ecosystems. Die Naturwiss 94(1):12–24. https://doi.org/10.1007/s00114-006-0159-1 + + 10.1007/s00114-006-0159-1 + + + + Carvalho MS, Cabral JMS, da Silva CL, Vashishth D (2021) Bone matrix non-collagenous proteins in tissue engineering: creating new bone by mimicking the extracellular matrix. Polymers (Basel) 13(7):1095. https://doi.org/10.3390/polym13071095 + + 10.3390/polym13071095 + 33808184 + 8036283 + + + + Casper JL (1861) A Handbook of the Practice of Forensic Medicine, Based Upon Personal Experience. New Sydenham Society + + + Chhikara A, Kumari P, Dalal J, Kumari K (2025) Protein degradation patterns as biomarkers for post-mortem interval estimation: a comprehensive review of proteomic approaches in forensic science. J Proteomics 310:105326. https://doi.org/10.1016/j.jprot.2024.105326 + + 10.1016/j.jprot.2024.105326 + 39384102 + + + + Chowdhury MP, Buckley M (2022) Trends in deamidation across archaeological bones, ceramics and dental calculus. Methods (San Diego Calif) 200:67–79. https://doi.org/10.1016/j.ymeth.2021.08.004 + + 10.1016/j.ymeth.2021.08.004 + + + + Chowdhury MP, Choudhury KD, Bouchard GP, Riel-Salvatore J, Negrino F, Benazzi S, Slimak L, Frasier B, Szabo V, Harrison R, Hambrecht G, Kitchener AC, Wogelius RA, Buckley M (2021) Machine learning ATR-FTIR spectroscopy data for the screening of collagen for ZooMS analysis and mtDNA in archaeological bone. J Archaeol Sci Article 105311. https://doi.org/10.1016/j.jas.2020.105311 + + 10.1016/j.jas.2020.105311 + + + + Chubb SA (2012) Measurement of C-terminal telopeptide of type I collagen (CTX) in serum. Clin Biochem 45(12):928–935. https://doi.org/10.1016/j.clinbiochem.2012.03.035 + + 10.1016/j.clinbiochem.2012.03.035 + 22504058 + + + + Clarke B (2008) Normal bone anatomy and physiology. Clin J Am Soc Nephrol 3(Suppl 3):S131–S139. https://doi.org/10.2215/CJN.04151206 + + 10.2215/CJN.04151206 + 18988698 + 3152283 + + + + Cleland TP, Schroeter ER, Schweitzer MH (2015) Biologically and diagenetically derived peptide modifications in Moa collagens. Proc R Soc B Biol Sci (1808):20150015. https://doi.org/10.1098/rspb.2015.0015 + + 10.1098/rspb.2015.0015 + + + + Coe JI (1989) Vitreous potassium as a measure of the postmortem interval: an historical review and critical evaluation. Forensic Sci Int 42(3):201–213. https://doi.org/10.1016/0379-0738(89)90087-x + + 10.1016/0379-0738(89)90087-x + 2676789 + + + + Collins MJ, Nielsen-Marsh CM, Hiller J, Smith CI, Roberts JP, Prigodich RV, Wess TJ, Csapò J, Millard AR, Turner-Walker G (2002) The survival of organic matter in bone: A review. Archaeometry 44(3):383–394. https://doi.org/10.1111/1475-4754.t01-1-00071 + + 10.1111/1475-4754.t01-1-00071 + + + + Collins MJ, Riley MS, Child AM, Turner-Walker G (1995) A basic mathematical simulation of the chemical degradation of ancient collagen. J Archaeol Sci 22(2):175–183. https://doi.org/10.1006/jasc.1995.0019 + + 10.1006/jasc.1995.0019 + + + + Cook GT, MacKenzie AB (2014) Radioactive isotope analyses of skeletal materials in forensic science: a review of uses and potential uses. Int J Legal Med 128(4):685–698. https://doi.org/10.1007/s00414-014-0970-8 + + 10.1007/s00414-014-0970-8 + 24553729 + + + + Cordeiro C, Ordóñez-Mayán L, Lendoiro E, Febrero-Bande M, Vieira DN, Muñoz-Barús JI (2019) A reliable method for estimating the postmortem interval from the biochemistry of the vitreous humor, temperature and body weight. Forensic Sci Int 295:157–168. https://doi.org/10.1016/j.forsciint.2018.12.007 + + 10.1016/j.forsciint.2018.12.007 + 30611119 + + + + Cox J, Mann M (2008) MaxQuant enables high peptide identification rates, individualized p.p.b.-range mass accuracies and proteome-wide protein quantification. Nat Biotechnol 26(12):1367–1372. https://doi.org/10.1038/nbt.1511 + + 10.1038/nbt.1511 + 19029910 + + + + Dalal J, Sharma S, Bhardwaj T, Dhattarwal SK (2023) Assessment of post-mortem submersion interval using total aquatic decomposition scores of drowned human cadavers. J Forensic Sci 68(2):549–557. https://doi.org/10.1111/1556-4029.15220 + + 10.1111/1556-4029.15220 + 36789865 + + + + Dickson GC, Poulter RT, Maas EW, Probert PK, Kieser JA (2011) Marine bacterial succession as a potential indicator of postmortem submersion interval. Forensic Sci Int 209(1–3):1–10. https://doi.org/10.1016/j.forsciint.2010.10.016 + + 10.1016/j.forsciint.2010.10.016 + 21074955 + + + + Donno AD, Campobasso CP, Santoro V, Leonardi S, Tafuri S, Introna F (2014) Bodies in sequestered and non-sequestered aquatic environments: a comparative taphonomic study using decompositional scoring system. Sci justice: J Forensic Sci Soc 54(6):439–446. https://doi.org/10.1016/j.scijus.2014.10.003 + + 10.1016/j.scijus.2014.10.003 + + + + Dunn MJ (1993) Gel electrophoresis : proteins. Bios Scientific Publishers in association with the Biochemical Society + + + Duong V-A, Park J-M, Lim H-J, Lee H (2021) Proteomics in forensic analysis: applications for human samples. Appl Sci 11(8):3393. https://doi.org/10.3390/app11083393 + + 10.3390/app11083393 + + + + Ferreira MT, Cunha E (2013) Can we infer post mortem interval on the basis of decomposition rate? A case from a Portuguese cemetery. Forensic Sci Int (1–3):298.e1–298.e2986. https://doi.org/10.1016/j.forsciint.2013.01.006 + + 10.1016/j.forsciint.2013.01.006 + 23357229 + + + + Forbes SL, Wilson ME, Stuart BH (2011) Examination of adipocere formation in a cold water environment. Int J Legal Med 125(5):643–650. https://doi.org/10.1007/s00414-010-0460-6 + + 10.1007/s00414-010-0460-6 + 20437052 + + + + Franceschetti L, Amadasi A, Bugelli V, Bolsi G, Tsokos M (2023) Estimation of late postmortem interval: where do we stand? A literature review. Biology (Basel) 12(6):783. https://doi.org/10.3390/biology12060783 + + 10.3390/biology12060783 + 37372068 + 10295266 + + + + Garcés-Parra C, Saldivia P, Hernández M et al (2024) Enhancing late postmortem interval prediction: a pilot study integrating proteomics and machine learning to distinguish human bone remains over 15 years. Biol Res 57:75. https://doi.org/10.1186/s40659-024-00552-8 + + 10.1186/s40659-024-00552-8 + 39444040 + 11515459 + + + + Gent L, Chiappetta ME, Hesketh S, Palmowski P, Porter A, Bonicelli A, Schwalbe EC, Procopio N (2024) Bone Proteomics Method Optimization for Forensic Investigations. J Proteome Res 23(5):1844–1858. https://doi.org/10.1021/acs.jproteome.4c00151 + + 10.1021/acs.jproteome.4c00151 + 38621258 + 11077585 + + + + Gillet LC, Navarro P, Tate S, Röst H, Selevsek N, Reiter L, Bonner R, Aebersold R (2012) Targeted data extraction of the MS/MS spectra generated by data-independent acquisition: A new concept for consistent and accurate proteome analysis. Mol Cell Proteomics (6):O111.016717. https://doi.org/10.1074/mcp.O111.016717 + + 10.1074/mcp.O111.016717 + 22261725 + 3433915 + + + + Goff LM (2009) Early post-mortem changes and stages of decomposition in exposed cadavers. Exp Appl Acarol 49(1–2):21–36. https://doi.org/10.1007/s10493-009-9284-9 + + 10.1007/s10493-009-9284-9 + + + + Grassberger M, Friedrich E, Reiter C (2003) The blowfly Chrysomya albiceps (Wiedemann) (Diptera: Calliphoridae) as a new forensic indicator in Central Europe. Int J Legal Med 117:75–81. https://doi.org/10.1007/s00414-002-0323-x + + 10.1007/s00414-002-0323-x + 12690503 + + + + Grupe G (1995) Preservation of collagen in bone from dry, sandy soil. J Archaeol Sci 22:193–199. https://doi.org/10.1006/jasc.1995.0021 + + 10.1006/jasc.1995.0021 + + + + Guareschi EE, Pember L, Magni PA (2024) The degradation of collagen in submerged bones, analysed by ImageJ® and Orbit®, for the estimation of the post-mortem interval (PMI) and the post-mortem submersion interval (PMSI). Aust J Forensic Sci 56(S1):55–57. https://doi.org/10.1080/00450618.2024.2324734 + + 10.1080/00450618.2024.2324734 + + + + Heaton V, Lagden A, Moffatt C, Simmons T (2010) Predicting the postmortem submersion interval for human remains recovered from U.K. waterways. J Forensic Sci 55(2):302–307. https://doi.org/10.1111/j.1556-4029.2009.01291.x + + 10.1111/j.1556-4029.2009.01291.x + 20102465 + + + + Hedges REM (2002) Bone diagenesis: An overview of processes. Archaeometry 44(3):319–328. https://doi.org/10.1111/1475-4754.00064 + + 10.1111/1475-4754.00064 + + + + Henssge C, Madea B (2007) Estimation of the time since death. Forensic Sci Int 165(2–3):182–184. https://doi.org/10.1016/j.forsciint.2006.05.017 + + 10.1016/j.forsciint.2006.05.017 + 16797901 + + + + Hill RC, Wither MJ, Nemkov T, Barrett A, D’Alessandro A, Dzieciatkowska M, Hansen KC (2015) Preserved Proteins from Extinct Bison latifrons Identified by Tandem Mass Spectrometry; Hydroxylysine Glycosides are a Common Feature of Ancient Collagen. Mol Cell proteomics: MCP 14(7):1946–1958. https://doi.org/10.1074/mcp.M114.047787 + + 10.1074/mcp.M114.047787 + 25948757 + 4587324 + + + + Humphreys MK, Panacek E, Green W, Albers E (2013) Comparison of protocols for measuring and calculating postmortem submersion intervals for human analogs in fresh water. J Forensic Sci 58(2):513–517. https://doi.org/10.1111/1556-4029.12033 + + 10.1111/1556-4029.12033 + 23278272 + + + + Iqbal M, Ueland M, Forbes S (2020) Recent advances in the estimation of post-mortem interval in forensic taphonomy. Australian J Forensic Sci 52:107–123. https://doi.org/10.1080/00450618.2018.1459840 + + 10.1080/00450618.2018.1459840 + + + + Jeffreys AJ, Wilson V, Thein SL (1985) Individual-specific ‘fingerprints’ of human DNA. Nature 316(6023):76–79. https://doi.org/10.1038/316076a0 + + 10.1038/316076a0 + 2989708 + + + + Jellinghaus K, Hachmann C, Hoeland K, Bohnert M, Wittwer-Backofen U (2018) Collagen degradation as a possibility to determine the post-mortem interval (PMI) of animal bones: a validation study referring to an original study of Boaks et al. (2014). Int J Legal Med 132(3):753–763. https://doi.org/10.1007/s00414-017-1747-7 + + 10.1007/s00414-017-1747-7 + 29177807 + + + + Jellinghaus K, Urban PK, Hachmann C, Bohnert M, Hotz G, Rosendahl W, Wittwer-Backofen U (2019) Collagen degradation as a possibility to determine the post-mortem interval (PMI) of human bones in a forensic context - a survey. Legal medicine (Tokyo, Japan) 36:96–102. https://doi.org/10.1016/j.legalmed.2018.11.009 + + 10.1016/j.legalmed.2018.11.009 + 30500672 + + + + Jopp E, Augustin C, Busse B, Fuhrmann A, Hahn M, Tsokos M, Verhoff M, Schulz F (2016) The assessment of adipocere to estimate the post-mortem interval - a skeleton from the tidelands. Anthropol Anz 73:1–13. https://doi.org/10.1127/anthranz/2016/0615 + + 10.1127/anthranz/2016/0615 + + + + Kaiser C, Bachmeier B, Conrad C, Nerlich A, Bratzke H, Eisenmenger W, Peschel O (2008) Molecular study of time dependent changes in DNA stability in soil buried skeletal residues. Forensic Sci Int 177(1):32–36. https://doi.org/10.1016/j.forsciint.2007.10.005 + + 10.1016/j.forsciint.2007.10.005 + 18063334 + + + + Kemp BM, Smith DG (2005) Use of bleach to eliminate contaminating DNA from the surface of bones and teeth. Forensic Sci Int 154(1):53–61. https://doi.org/10.1016/j.forsciint.2004.11.017 + + 10.1016/j.forsciint.2004.11.017 + 16182949 + + + + Longato S, Wöss C, Hatzer-Grubwieser P, Bauer C, Parson W, Unterberger SH, Kuhn V, Pemberger N, Pallua AK, Recheis W, Lackner R, Stalder R, Pallua JD (2015) Post-mortem interval estimation of human skeletal remains by micro-computed tomography, mid-infrared microscopic imaging and energy dispersive X-ray mapping. Anal Methods 7(7):2917–2927. https://doi.org/10.1039/c4ay02943g + + 10.1039/c4ay02943g + 25878731 + 4383336 + + + + Madea B (2016) Methods for determining time of death. Forensic Sci Med Pathol 12(4):451–485. https://doi.org/10.1007/s12024-016-9776-y + + 10.1007/s12024-016-9776-y + 27259559 + + + + Marrone A, La Russa D, Barberio L, Murfuni MS, Gaspari M, Pellegrino D (2023) Forensic proteomics for the discovery of new post mortem interval biomarkers: a preliminary study. Int J Mol Sci 24(19):14627. https://doi.org/10.3390/ijms241914627 + + 10.3390/ijms241914627 + 37834074 + 10572818 + + + + Mello RB, Silva MR, Alves MT, Evison MP, Guimarães MA, Francisco RA, Astolphi RD, Iwamura ES (2017) Tissue microarray analysis applied to bone diagenesis. Sci Rep 7:39987. https://doi.org/10.1038/srep39987 + + 10.1038/srep39987 + 28051148 + 5209720 + + + + Merkley ED, Wunschel DS, Wahl KL, Jarman KH (2019) Applications and challenges of forensic proteomics. Forensic Sci Int 297:350–363. https://doi.org/10.1016/j.forsciint.2019.01.022 + + 10.1016/j.forsciint.2019.01.022 + 30929674 + + + + Mickleburgh HL, Schwalbe EC, Bonicelli A, Mizukami H, Sellitto F, Starace S, Wescott DJ, Carter DO, Procopio N (2021) Human Bone Proteomes before and after Decomposition: Investigating the Effects of Biological Variation and Taphonomic Alteration on Bone Protein Profiles and the Implications for Forensic Proteomics. J Proteome Res 20(5):2533–2546. https://doi.org/10.1021/acs.jproteome.0c00992 + + 10.1021/acs.jproteome.0c00992 + 33683123 + 8155572 + + + + Milroy CM (1999) Forensic taphonomy: the postmortem fate of human remains. BMJ (Clinical research ed.) 319(7207):458. https://doi.org/10.1136/bmj.319.7207.458 + + 10.1136/bmj.319.7207.458 + 10445946 + 1127062 + + + + Mizukami H, Hathway B, Procopio N (2020) Aquatic Decomposition of Mammalian Corpses: A Forensic Proteomic Approach. J Proteome Res 19(5):2122–2135. https://doi.org/10.1021/acs.jproteome.0c00060 + + 10.1021/acs.jproteome.0c00060 + 32242669 + + + + Mohamed AM (2008) An overview of bone cells and their regulating factors of differentiation. Malaysian J Med sciences: MJMS 15(1):4–12 + + + Nelson EL (2000) Estimation of short-term postmortem interval utilizing core body temperature: a new algorithm. Forensic Sci Int 109(1):31–38. https://doi.org/10.1016/s0379-0738(99)00216-9 + + 10.1016/s0379-0738(99)00216-9 + 10759069 + + + + Nielsen-Marsh CM, Smith CI, Jans MM, Nord A, Kars H, Collins MJ (2009) Bone diagenesis in the European Holocene II: taphonomic and environmental considerations. J Archaeol Sci 36(7):1524–1531. https://doi.org/10.1016/j.jas.2006.11.012 + + 10.1016/j.jas.2006.11.012 + + + + Ntasi G, Palomo IR, Marino G et al (2022) Molecular signatures written in bone proteins of 79 AD victims from Herculaneum and Pompeii. Sci Rep 12:8401. https://doi.org/10.1038/s41598-022-12042-6 + + 10.1038/s41598-022-12042-6 + 35624181 + 9142588 + + + + O’Brien TG, Kuehner AC (2007) Waxing grave about adipocere: soft tissue change in an aquatic context. J Forensic Sci 52(2):294–301. https://doi.org/10.1111/j.1556-4029.2006.00362.x + + 10.1111/j.1556-4029.2006.00362.x + 17316224 + + + + Ostrom PH, Gandhi H, Strahler JR, Walker AK, Andrews PC, Leykam J (2006) Unraveling the sequence and structure of the protein osteocalcin from a 42 ka fossil horse bone. Geochim Cosmochim Acta 70(8):2035–2044. https://doi.org/10.1016/j.gca.2006.01.004 + + 10.1016/j.gca.2006.01.004 + + + + Page, M. J., McKenzie, J. E., Bossuyt, P. M., Boutron, I., Hoffmann, T. C., Mulrow,C. D., … Moher, D. (2021). The PRISMA 2020 statement: an updated guideline for reporting systematic reviews.BMJ, n71. https://doi.org/10.1136/bmj.n71 + + + Palazzo C, Pelletti G, Fais P, Berto RB, Fersini F, Gaudio RM, Pelotti S (2019) Postmortem Submersion Interval in human bodies recovered from fresh water in an area of Mediterranean climate. Application and comparison of preexisting models. Forensic Sci Int 110051. https://doi.org/10.1016/j.forsciint.2019.110051 + + + Pérez-Martínez C, Pérez-Cárceles MD, Legaz I, Prieto-Bonete G, Luna A (2017) Quantification of nitrogenous bases, DNA and Collagen type I for the estimation of the postmortem interval in bone remains. Forensic Sci Int 281:106–112. https://doi.org/10.1016/j.forsciint.2017.10.039 + + 10.1016/j.forsciint.2017.10.039 + 29125988 + + + + Perkins DN, Pappin DJ, Creasy DM, Cottrell JS (1999) Probability-based protein identification by searching sequence databases using mass spectrometry data. Electrophoresis 20(18):3551–3567. https://doi.org/10.1002/(SICI)1522-2683(19991201)20:18<3551::AID-ELPS3551>3.0.CO;2-2 + + 10.1002/(SICI)1522-2683(19991201)20:18<3551::AID-ELPS3551>3.0.CO;2-2 + 10612281 + + + + Pittner S, Monticelli FC, Pfisterer A, Zissler A, Sänger AM, Stoiber W, Steinbacher P (2016) Postmortem degradation of skeletal muscle proteins: a novel approach to determine the time since death. Int J Legal Med 130(2):421–431. https://doi.org/10.1007/s00414-015-1210-6 + + 10.1007/s00414-015-1210-6 + 26041514 + + + + Prieto-Bonete G, Pérez-Cárceles MD, Maurandi-López A, Pérez-Martínez C, Luna A (2019) Association between protein profile and postmortem interval in human bone remains. J Proteom 192:54–63. https://doi.org/10.1016/j.jprot.2018.08.008 + + 10.1016/j.jprot.2018.08.008 + + + + Procopio N, Bonicelli A (2024) From flesh to bones: multi-omics approaches in forensic science. Proteomics 24(12–13):e2200335. https://doi.org/10.1002/pmic.202200335 + + 10.1002/pmic.202200335 + 38683823 + + + + Procopio N, Buckley M (2017) Minimizing laboratory-induced decay in bone proteomics. J Proteome Res 16(2):447–458. https://doi.org/10.1021/acs.jproteome.6b00564 + + 10.1021/acs.jproteome.6b00564 + 28152590 + + + + Procopio N, Chamberlain AT, Buckley M (2017) Intra- and interskeletal proteome variations in fresh and buried bones. J Proteome Res 16(5):2016–2029. https://doi.org/10.1021/acs.jproteome.6b01070 + + 10.1021/acs.jproteome.6b01070 + 28436665 + + + + Procopio N, Hopkins RJA, Harvey VL, Buckley M (2021) Proteome Variation with Collagen Yield in Ancient Bone. J Proteome Res 20(3):1754–1769. https://doi.org/10.1021/acs.jproteome.0c01014 + + 10.1021/acs.jproteome.0c01014 + 33529527 + 7944572 + + + + Procopio N, Mein CA, Starace S, Bonicelli A, Williams A (2021) Bone Diagenesis in Short Timescales: Insights from an Exploratory Proteomic Analysis. Biology 10(6):460. https://doi.org/10.3390/biology10060460 + + 10.3390/biology10060460 + 34071025 + 8224596 + + + + Procopio N, Williams A, Chamberlain AT, Buckley M (2018) Forensic proteomics for the evaluation of the post-mortem decay in bones. J Proteomics 177:21–30. https://doi.org/10.1016/j.jprot.2018.01.016 + + 10.1016/j.jprot.2018.01.016 + 29407476 + + + + Ramsthaler F, Ebach SC, Birngruber CG, Verhoff MA (2011) Postmortem interval of skeletal remains through the detection of intraosseal hemin traces. A comparison of UV-fluorescence, luminol, Hexagon-OBTI®, and Combur® tests. Forensic Sci Int 209(1–3):59–63. https://doi.org/10.1016/j.forsciint.2010.12.011 + + 10.1016/j.forsciint.2010.12.011 + 21237592 + + + + Reijnen G, Gelderman HT, Oude Grotebevelsborg BFL, Reijnders UJL, Duijst WLJM (2018) The correlation between the aquatic decomposition score (ADS) and the post-mortem submersion interval measured in accumulated degree days (ADD) in bodies recovered from fresh water. Forensic Sci Med Pathol 14(3):301–306. https://doi.org/10.1007/s12024-018-9987-5 + + 10.1007/s12024-018-9987-5 + 29799098 + + + + Romina C, Alessandro F, Emilio P, Stefano M, Saverio P, Gian M (2018) Overview on the estimation of post mortem interval in forensic anthropology: Review of the literature and practical experience. Rom J Leg Med 26:403–411. https://doi.org/10.4323/rjlm.2018.403 + + 10.4323/rjlm.2018.403 + + + + López RJL, Navadijo PM (2025) Estimation of the post-mortem interval: A review. Forensic Sci Int 369:112412. https://doi.org/10.1016/j.forsciint.2025.112412 + + 10.1016/j.forsciint.2025.112412 + + + + Saukko P, Knight B (2015) Knight’s Forensic Pathology, 4th ed. CRC Press. https://doi.org/10.1201/b13266 + + 10.1201/b13266 + + + + Sawafuji R, Cappellini E, Nagaoka T, Fotakis AK, Jersie-Christensen RR, Olsen JV, Hirata K, Ueda S (2017) Proteomic profiling of archaeological human bone. R Soc Open Sci 4(6):161004. https://doi.org/10.1098/rsos.161004 + + 10.1098/rsos.161004 + 28680659 + 5493901 + + + + Schweitzer MH, Avci R, Collier T, Goodwin MB (2007) Soft tissue and cellular preservation in vertebrate skeletal elements from the Cretaceous to the present. Proc Royal Soc B: Biol Sci 274(1607):183–197. https://doi.org/10.1098/rspb.2006.3705 + + 10.1098/rspb.2006.3705 + + + + Secco L, Palumbi S, Padalino P, Grosso E, Perilli M, Casonato M, Cecchetto G, Viel G (2025) “Omics” and postmortem interval estimation: A systematic review. Int J Mol Sci 26(3):1034. https://doi.org/10.3390/ijms26031034 + + 10.3390/ijms26031034 + 39940802 + 11817326 + + + + Simmons T (2017) Post-Mortem Interval Estimation: an Overview of Techniques. Taphon Hum Remains: Forensic Anal Dead Depositional Environ 134–142. https://doi.org/10.1002/9781118953358.ch10 + + + UniProt Consortium (2021) UniProt: The universal protein knowledgebase in 2021. Nucleic Acids Res 49(D1):D480–D489. https://doi.org/10.1093/nar/gkaa1100 + + 10.1093/nar/gkaa1100 + + + + van Daalen MA, de Kat DS, Oude Grotebevelsborg BF, de Leeuwe R, Warnaar J, Oostra RJ, Duijst-Heesters MWL (2017) An aquatic decomposition scoring method to potentially predict the postmortem submersion interval of bodies recovered from the North Sea. J Forensic Sci 62(2):369–373. https://doi.org/10.1111/1556-4029.13258 + + 10.1111/1556-4029.13258 + 28247448 + + + + van Doorn NL, Wilson J, Hollund H, Soressi M, Collins MJ (2012) Site-specific deamidation of glutamine: a new marker of bone collagen deterioration. Rapid Commun mass spectrometry: RCM 26(19):2319–2327. https://doi.org/10.1002/rcm.6351 + + 10.1002/rcm.6351 + 22956324 + + + + Wadsworth C, Buckley M (2014) Proteome degradation in fossils: Investigating the longevity of protein survival in ancient bone. Rapid Commun Mass Spectrom 28(6):605–615. https://doi.org/10.1002/rcm.6821 + + 10.1002/rcm.6821 + 24519823 + 4282581 + + + + Wadsworth C, Procopio N, Anderung C, Carretero JM, Iriarte E, Valdiosera C, Elburg R, Penkman K, Buckley M (2017) Comparing ancient DNA survival and proteome content in 69 archaeological cattle tooth and bone samples from multiple European sites. J Proteom 158:1–8. https://doi.org/10.1016/j.jprot.2017.01.004 + + 10.1016/j.jprot.2017.01.004 + + + + Widya M, Moffatt C, Simmons T (2012) The formation of early stage adipocere in submerged remains: a preliminary experimental study. J Forensic Sci 57(2):328–333. https://doi.org/10.1111/j.1556-4029.2011.01980.x + + 10.1111/j.1556-4029.2011.01980.x + 22150268 + + + + Woess C, Unterberger SH, Roider C, Ritsch-Marte M, Pemberger N, Cemper-Kiesslich J, Hatzer-Grubwieser P, Parson W, Pallua JD (2017) Assessing various infrared (IR) microscopic imaging techniques for post-mortem interval evaluation of human skeletal remains. PLoS One 12(3):e0174552. https://doi.org/10.1371/journal.pone.0174552 + + 10.1371/journal.pone.0174552 + 28334006 + 5363948 + + + + Zapico SC, Adserias-Garriga J (2022) Postmortem Interval Estimation: New Approaches by the Analysis of Human Tissues and Microbial Communities’ Changes. Forensic Sci 2(1):163–174. https://doi.org/10.3390/forensicsci2010013 + + 10.3390/forensicsci2010013 + + + + Zeng WF, Zhou XX, Willems S et al (2022) AlphaPeptDeep: a modular deep learning framework to predict peptide properties for proteomics. Nat Commun 13:7238. https://doi.org/10.1038/s41467-022-34904-3 + + 10.1038/s41467-022-34904-3 + 36433986 + 9700817 + + + + Zerbino, D. R., Achuthan, P., Akanni, W., Amode, M. R., Barrell, D., Bhai, J., Billis,K., Cummins, C., Gall, A., Girón, C. G., Gil, L., Gordon, L., Haggerty, L., Haskell,E., Hourlier, T., Izuogu, O. G., Janacek, S. H., Juettemann, T., To, J. K., Laird,M. R., … Flicek, P. (2018). Ensembl 2018. Nucleic acids research, 46(D1), D754–D761. https://doi.org/10.1093/nar/gkx1098 + + + Zhang J, Xin L, Shan B, Chen W, Xie M, Yuen D, Zhang W, Zhang Z, Lajoie GA, Ma B (2012) PEAKS DB: de novo sequencing assisted database search for sensitive and accurate peptide identification. Mol Cell proteomics: MCP 11(4) M111.010587. https://doi.org/10.1074/mcp.M111.010587 + + + Zhang M, Su Q, Lu Y, Zhao M, Niu B (2017) Application of Machine Learning Approaches for Protein-protein Interactions Prediction. Medicinal chemistry (Shariqah (United Arab Emirates)), 13(6), 506–514. https://doi.org/10.2174/1573406413666170522150940 + + + Zissler A, Stoiber W, Steinbacher P, Geissenberger J, Monticelli FC, Pittner S (2020) Postmortem protein degradation as a tool to estimate the PMI: a systematic review. Diagnostics (Basel Switzerland) 10(12):1014. https://doi.org/10.3390/diagnostics10121014 + + 10.3390/diagnostics10121014 + 33256203 + 7760775 + + + + +
+ + + 42215696 + + 2026 + 05 + 29 + +
+ + 1546-170X + + + 2026 + May + 29 + + + Nature medicine + Nat Med + + From donor lungs to digital twins. + 10.1038/d41591-026-00029-z + + + O'Leary + Karen + K + + + eng + + News + + + 2026 + 05 + 29 + +
+ + United States + Nat Med + 9502015 + 1078-8956 + + IM + + Machine Learning + Technology + Translational research + +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 22 + + + aheadofprint + + 42215696 + 10.1038/d41591-026-00029-z + 10.1038/d41591-026-00029-z + + +
+ + + 42215691 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + O²RDL-net for joint risk classification and delay forecasting in logistics systems using interaction amplified deep. + 10.1038/s41598-026-55703-6 + + Transportation and logistics systems face frequent delays and operational risks due to congestion, human factors, and rapidly changing conditions. Predicting delays and identifying risk levels in advance is therefore essential for reliable logistics planning. Most existing methods handle delay forecasting and risk classification separately and often fail to capture complex temporal and interaction-driven patterns. To overcome these limitations, this study proposes O²RDL-Net, a load-aware and interaction-amplified deep learning framework for joint risk classification and delay forecasting. The proposed model integrates higher-order operational indicators, including the Risk Accumulation Index, Delay Sensitivity Indicator, Human-Operational Interaction Score, and Logistics System Representation, to capture cumulative risk, short-term sensitivity, and system-level interactions. A spatio-temporal attention encoder with risk regime modulation is used to improve learning stability and generalization. Experimental results show that O²RDL-Net achieves superior performance compared to baseline models, with a mean absolute error of 2.05, RMSE of 3.01, and R² of 0.91 for delay forecasting. For risk classification, the model reaches an accuracy of 92%, precision of 91%, recall of 92%, and F1-score of 91%. Interpretability analysis using SHAP and local explanations confirms that the model relies on meaningful and domain-consistent features. Overall, O²RDL-Net provides an accurate, stable, and interpretable solution for real-world logistics risk and delay management. + © 2026. The Author(s). + + + + Yang + Xiao + X + + Low-altitude Management and Digital Economy College, XIHANG UNIVERSITY, Xi'an, 710077, China. jonah-y@xaau.edu.cn. + + + + eng + + + Grant No. 2025YB0214 + Research on the Coupled and Coordinated Development of Transportation and Modern Industrial System in Shaanxi Province + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Artificial intelligence + Deep Learning + Feature Construction + Forecasting + Logistics Network + Machine Learning + Risk Prediction + Supply Chain + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 9 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215691 + 10.1038/s41598-026-55703-6 + 10.1038/s41598-026-55703-6 + + +
+ + + 42215678 + + 2026 + 05 + 29 + +
+ + 2398-6352 + + + 2026 + May + 29 + + + NPJ digital medicine + NPJ Digit Med + + Detecting dataset bias in medical AI using a generalized and modality agnostic auditing approach. + 10.1038/s41746-026-02807-y + + Despite many success stories along the path of Artificial Intelligence's (AI) rise in healthcare, there are comparably many reports of significant shortcomings and unexpected behavior of AI in deployment. A major risk is AI's reliance on association-based learning, where non-representative machine learning datasets can amplify latent bias during training and hide it during testing. To unlock new tools capable of detecting such AI bias issues, we present Generalized Attribute Utility and Detectability-Induced bias Testing (G-AUDIT). G-AUDIT is a data modality-agnostic dataset auditing approach that automatically quantifies shortcut learning risks by examining the interplay between task-level annotations, sensor-level measurements, and patient, environmental, and acquisition characteristics. We demonstrate the broad applicability of this method by analyzing a range of medical datasets across three distinct modalities (images, text, and tabular data) and machine learning tasks, successfully identifying potential shortcuts commonly overlooked by traditional qualitative methods. + © 2026. The Author(s). + + + + Drenkow + Nathan + N + + The Johns Hopkins University, Baltimore, MD, USA. nathan.drenkow@jhuapl.edu. + + + The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA. nathan.drenkow@jhuapl.edu. + + + + Pavlak + Mitchell + M + + The Johns Hopkins University, Baltimore, MD, USA. + + + + Harrigian + Keith + K + + The Johns Hopkins University, Baltimore, MD, USA. + + + + Zirikly + Ayah + A + + The Johns Hopkins University, Baltimore, MD, USA. + + + Department of Computer Science, School of Engineering and Applied Science, George Washington University, Washington, DC, USA. + + + + Subbaswamy + Adarsh + A + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Farhangi + Mohammad Mehdi + MM + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Petrick + Nicholas + N + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Unberath + Mathias + M + + The Johns Hopkins University, Baltimore, MD, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Digit Med + 101731738 + 2398-6352 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 6 + 3 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215678 + 10.1038/s41746-026-02807-y + 10.1038/s41746-026-02807-y + + +
+ + + 42215677 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Stacked multi-fusion CNN: an adaptive attention model for privacy preserving deepfake forensics. + 10.1038/s41598-026-55325-y + + The emergence of Generative Artificial Intelligence (Gen-AI) and Generative Adversarial Network (GAN)-based deepfakes poses significant security risks in sociocultural and sociopolitical domains. This necessitates the development of advanced and effective detection methods to prevent vulnerability in social networks. Classical Machine Learning (ML) algorithms have their limitations, especially in classifying the deepfakes. To address these issues, this paper suggests a privacy-preserving Stacked Multi-Fusion (SMF) Convolutional Neural Network (CNN) approach to classify deepfakes. An improved CNN model is proposed, integrating an adaptive multi-scale attention framework with enhanced residual blocks and a Squeeze-and-Excitation (SE) mechanism. The selection of these components is backed with an ablation study to report the individual contribution to the overall optimal architecture. A hybrid lossless multilayer cryptosystem based on a chaos-based approach, Deoxyribonucleic Acid (DNA)-based computing, etc., is developed to secure images in cloud storage. The efficacy of the proposed SMF model is validated using the 140K Real and Fake Faces (RFF) image dataset. The proposed approach was found to achieve stable performance with minimal variation in various tests. It achieved a test accuracy and ROC-AUC of 97.80 and 99.79, respectively. This paper provides comprehensive relevant factors for building effective synthetic media detection systems. + © 2026. The Author(s). + + + + Rout + Jayanti + J + + P. G. Department of Computer Science, Fakir Mohan University, Balasore, 756019, Odisha, India. + + + + Mishra + Minati + M + + P. G. Department of Computer Science, Fakir Mohan University, Balasore, 756019, Odisha, India. + + + + Barik + Ram Chandra + RC + + Department of CSE, C. V. Raman Global University, Bhubaneswar, 752054, Odisha, India. + + + + Yadav + Devendra Kumar + DK + + School of Computer Science and Engineering, XIM University, Bhubaneswar, 752050, Odisha, India. devendra@xim.edu.in. + + + + Prasad + Dilip K + DK + + Department of Computer Science, UiT The Arctic University of Norway, Tromsø, 9037, Norway. + + + + Sekh + Arif Ahmed + AA + + Department of Computer Science, UiT The Arctic University of Norway, Tromsø, 9037, Norway. arif.a.sekh@uit.no. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Convolutional neural network + Deepfake detection + Squeeze-and-excitation attention + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 25 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215677 + 10.1038/s41598-026-55325-y + 10.1038/s41598-026-55325-y + + +
+ + + 42215670 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + A hybrid AI vision model for single-camera tracking of rehabilitation exercises: a proof of concept in clinical settings. + 10.1038/s41598-026-55431-x + + Accurate measurement of range of motion (ROM) during physical rehabilitation is traditionally achieved using goniometers or multi-camera, marker-based motion capture systems. The latter, while highly accurate, require specialised laboratory infrastructure, are costly, and are unsuitable for home-based use. There is growing interest in markerless, camera-based alternatives that leverage artificial intelligence (AI) for joint angle estimation. This study presents a preliminary proof-of-concept evaluation of a hybrid AI vision system, combining the MediaPipe Pose framework (version 0.8.9.1, Full model variant) with a Mamdani-type fuzzy inference system, for joint angle estimation and exercise repetition counting using a single consumer-grade camera. Fourteen healthy adult rehabilitation staff members performed three exercises (elbow flexion, knee extension, and hip external rotation) simultaneously recorded by the proposed AI system and by a reference optical motion capture system (C-Motion Visual3D™, 14 calibrated infrared cameras, 53 retro-reflective markers). Reliability was assessed using two-way mixed-effects intraclass correlation coefficients (ICC[Formula: see text]) with absolute agreement. Individual-measure ICC values ranged from poor to good across joints and conditions (range: 0.005-0.68). The highest reliability was observed for the right hip external rotation ROM (individual ICC [Formula: see text]; average ICC [Formula: see text], 95% CI: 0.63-0.89). Several measures showed poor reliability, including the right elbow flexion ROM (individual ICC [Formula: see text]) and the minimum angle of the left hip external rotation (individual ICC [Formula: see text]). Confidence intervals were wide throughout. This proof of concept demonstrates that a single-camera AI system can capture general trends in joint angles during simple rehabilitation exercises in healthy adults under controlled conditions. However, reliability is inconsistent and frequently poor, and the system has not been evaluated in patient populations with pathological movement patterns. These findings do not support clinical deployment at this stage. Substantial further development and validation in patient cohorts are required before clinical or home-based use can be considered. + © 2026. The Author(s). + + + + Das + Utpal Chandra + UC + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + School of Clinical Sciences, Faculty of Health, Queensland University of Technology, Kelvin Grove, Brisbane, QLD, 4059, Australia. + + + Centre for Biomedical Technologies (CBT), Queensland University of Technology, Brisbane, QLD, 4000, Australia. + + + + Le + Ngoc Thien + NT + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Vitoonpong + Timporn + T + + Department of Rehabilitation Medicine, Faculty of Medicine, Chulalongkorn University, Bangkok, 10330, Thailand. timporn.v@chula.ac.th. + + + Department of Rehabilitation Medicine, King Chulalongkorn Memorial Hospital & The Thai Red Cross Society, Bangkok, 10330, Thailand. timporn.v@chula.ac.th. + + + + Pongmala + Chatkaew + C + + Department of Radiology, University of Michigan, Ann Arbor, 48104, MI, USA. + + + Department of Neurology, University of Michigan, Ann Arbor, 48104, MI, USA. + + + + Prapinpairoj + Chalermdej + C + + Department of Rehabilitation Medicine, King Chulalongkorn Memorial Hospital & The Thai Red Cross Society, Bangkok, 10330, Thailand. + + + + Anannub + Kawee + K + + Health Service Center, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Kaewplung + Pasu + P + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Chaitusaney + Surachai + S + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. surachai.c@chula.ac.th. + + + + Benjapolakul + Watit + W + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. watit.b@chula.ac.th. + + + + eng + + + B04G640068 + National Science, Research and Innovation Fund (NSRF) via the Program Management Unit for Human Resources & Institutional Development, Research and Innovation + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + Competing interests: The authors declare no competing interests. Ethical approval: The research conducted with healthy human participants at Chulalongkorn University in Thailand complied with the Regulations Governing Life Science and Medical Research Involving Human Subjects. Approval was secured from the Institutional Review Board of the Faculty of Medicine, Chulalongkorn University, Thailand (COA No. 0495-2022; IRB No. 846-64), in accordance with the Declaration of Helsinki, The Belmont Report, CIOMS Guidelines, and ICH-GCP. Informed consent: All study participants provided written informed consent for participation and for the publication of identifiable information and images. Participants were fully informed of the study objectives, dissemination plans, and potential risks and benefits prior to enrolment. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 9 + 20 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215670 + 10.1038/s41598-026-55431-x + 10.1038/s41598-026-55431-x + + +
+ + + 42215668 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Autism spectrum disorder identification using machine learning models on MRI data. + 10.1038/s41598-026-55163-y + + Autism Spectrum Disorder (ASD) is a neurodevelopmental condition that affects sensory processing, speech, behavior and identifying the condition at an early stage is necessary to provide the treatment. The existing diagnostic methods are mainly based on personalized subjective and time consuming. This study introduces an objective diagnostic method by analyzing technical noise signature producing the Quality Vector which is extracted from multimodal MRI data. This work leverages Machine Learning (ML) and Deep Learning (DL) techniques on this Quality vector for improving ASD detection. The methodology leveraged technical Quality Assessment Protocol (QAP) metrics from the ABIDE II repository, integrating structural (sMRI), functional (fMRI), and diffusion (DTI) modalities. The methodology utilized Density-Based Spatial Clustering of Applications with Noise (DBSCAN) for outlier removal and Principal Component Analysis (PCA) for dimensionality reduction. A classification pipeline was implemented using a 1D-Residual Network (1D-ResNet), Convolutional Neural Network(CNN), SVM, kNN and a proposed Voting Ensemble (SVM, KNN, and XGBoost), validated through stratified 10-fold cross-validation. In this work, the proposed ensemble emerged as the superior model, achieving a diagnostic accuracy of 95.84%. These findings indicate that technical biomarkers derived from imaging quality metrics are highly useful for ASD detection. This research demonstrates that technical quality metrics, often dismissed as noise, contain significant diagnostic value. The Quality Vector framework provides a computationally efficient and objective tool for ASD identification. The high classification performance suggests that the biomarkers obtained from MRI have a potential future scope in research on early ASD diagnosis and detection. + © 2026. The Author(s). + + + + V + Milner Paul + MP + + Department of Electrical Engineering, National Institute of Technology Manipur (NITM), Manipur, India. vithayathilmilner@gmail.com. + + + Department of Electrical and Electronics Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. vithayathilmilner@gmail.com. + + + + Babu + Caren + C + + Department of Electronics and Communication Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. + + + + Jose + Suni + S + + Department of Computer Science and Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. + + + + Adhikari + Shuma + S + + Department of Electrical Engineering, National Institute of Technology Manipur (NITM), Manipur, India. + + + + Singh + Loitongbam Surajkumar + LS + + Department of Electronics and Communication Engineering, National Institute of Technology Manipur (NITM), Manipur, India. + + + + Francis + Jijo + J + + Department of Zoology, Christ College (Autonomous), 680125, Irinjalakuda, India. + + + + Parekkattil + Adarsh V + AV + + Department of Electronics and Communication, Indian Institute of Technology Roorkee (IITR), Roorkee, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Autism spectrum disorder + Convolutional neural network (CNN) + Early detection + Machine learning + Magnetic resonance imaging + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 7 + 8 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215668 + 10.1038/s41598-026-55163-y + 10.1038/s41598-026-55163-y + + +
+ + + 42215666 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Blockchain-driven machine learning-enabled intrusion-resilient authenticated key agreement protocol for edge-centric IoT systems. + 10.1038/s41598-026-55266-6 + + The edge computing-based Internet of Things (IoT) system minimizes latency by processing data locally, reducing the distance it needs to travel. Processing data in proximity to its source enables rapid decision-making and real-time reactions. The edge-based IoT has several possible uses, including smart cities, smart healthcare, industrial automation & processing, smart farming, and many more. In this paper, we propose a blockchain-driven machine learning-enabled intrusion-resilient authenticated key agreement scheme for edge-centric IoT systems (in short, BMAS-EIoT), which is equipped with the features of authentication, key management, and machine learning-based intrusion detection. In BMAS-EIoT, we provide the network and threat models to enhance comprehension of the organization and deployment of devices and systems, as well as the potential threats to the system. BMAS-EIoT has been observed to possess protection against a variety of potential attacks during the security investigation. Moreover, it has been observed that BMAS-EIoT outperforms other present schemes in terms of performance comparison. A practical implementation of BMAS-EIoT is provided to evaluate the effectiveness of its key components, including intrusion detection and blockchain implementation. Furthermore, BMAS-EIoT possesses supplementary noteworthy capabilities and enhanced security attributes. + © 2026. The Author(s). + + + + Karnatak + Vijay + V + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Tripathi + Neha + N + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Wazid + Mohammad + M + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Mittal + Saksham + S + + Department of Computer Science and Engineering, Graphic Era Hill University, Dehradun, 248002, Uttarakhand, India. + + + + Das + Ashok Kumar + AK + + Center for Security, Theory and Algorithmic Research, International Institute of Information Technology, Hyderabad, 500032, India. ashok.das@iiit.ac.in. + + + Department of Computer Science and Engineering, College of Informatics, Korea University, 145 Anam-ro, Seongbuk-gu, 02841, Seoul, South Korea. ashok.das@iiit.ac.in. + + + + K + Vivekananda Bhat + VB + + Manipal Institute of Technology, Manipal Academy of Higher Education, Manipal, Karnataka, 576104, India. kv.bhat@manipal.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Authentication + Blockchain + Edge computing + Internet of things + Intrusion detection + Security + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 3 + 23 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215666 + 10.1038/s41598-026-55266-6 + 10.1038/s41598-026-55266-6 + + +
+ + + 42215649 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Machine learning based approaches for structure activity relationship analysis of heparanase inhibitors. + 10.1038/s41598-026-55098-4 + + Human Heparanase (HPSE), the only mammalian endo-β-D-glucuronidase, plays an important role in extracellular matrix remodeling and the release of heparin-bound growth factors. Its overexpression is strongly correlated with increased tumor growth, angiogenesis, metastasis, and inflammation, highlighting HPSE as a compelling therapeutic target for oncology and inflammatory diseases. This study aimed to develop and validate a robust computational workflow for predicting the activity class of potential HPSE inhibitors using curated data from the ChEMBL database. Bioactivity data ([Formula: see text]) for known HPSE inhibitors were extracted and put through a meticulous data curation process, which included chemical structure standardization, molecular weight filtering, and final deduplication based on standardized isomeric SMILES to ensure structural uniqueness. Continuous [Formula: see text] values (nM) were converted to [Formula: see text] and subsequently categorized into three activity classes: A ([Formula: see text] and [Formula: see text]), B ([Formula: see text] and [Formula: see text]), and C ([Formula: see text] and [Formula: see text]) for multi-class classification. Molecular representations included two-dimensional physicochemical descriptors, Morgan fingerprints, and three-dimensional descriptors derived from optimized low-energy conformers generated using ETKDGv3 and MMFF94s. Multiple machine learning classifiers were evaluated using pipelines incorporating imputation, scaling, optional Principal Component Analysis (PCA) dimensionality reduction applied to the combined feature sets, and SMOTE (Synthetic Minority Over-sampling Technique) to address class imbalance. Models were trained and optimized using randomized search cross-validation on an 80% training split, maximizing balanced accuracy. The best-performing model pipeline (RF_B, a Random Forest with PCA on 2D+Morgan Fingerprints+3D features) achieved approximately 80% accuracy and 78.5% balanced accuracy on the held-out 20% test set. The final validated model was successfully utilized to predict the activity classes of new, unseen compounds. This comprehensive pipeline provides a validated tool for classifying HPSE inhibitors derived from ChEMBL data, potentially aiding virtual screening efforts and guiding hit prioritization in drug discovery campaigns targeting HPSE. + © 2026. The Author(s). + + + + Shanbhogue + Rachana V + RV + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. shanbhoguerachana@gmail.com. + + + + Gandhi + Neha S + NS + + Department of Biotechnology and Chemical Engineering, Manipal University Jaipur, 303007, Rajasthan, India. neha.gandhi@jaipur.manipal.edu. + + + School of Biomedical Sciences, Queensland University of Technology, Kelvin Grove, Queensland, Brisbane, Australia. neha.gandhi@jaipur.manipal.edu. + + + + B + Shanthi P + SP + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. shanthi.moorkoth@manipal.edu. + + + + Navada + Sandhyalaxmi G + SG + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. sandhya.girish@manipal.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 10 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 20 + + + aheadofprint + + 42215649 + 10.1038/s41598-026-55098-4 + 10.1038/s41598-026-55098-4 + + +
+ + + 42215613 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + A temporal adaptive dictionary-constrained LDA and Bi-calibrated dual granularity DTM framework for dynamic topic evolution analysis in academic papers. + 10.1038/s41598-026-54348-9 + + With the explosive growth of academic achievements in artificial intelligence (AI), accurately capturing the dynamic evolution of research topics is crucial for research topic selection, policy-making, and industrial innovation. To address the limitation that traditional topic models struggle to balance static topic recognition accuracy and dynamic evolution tracking capability, this study proposes a unified framework: Temporal Adaptive Dictionary-Constrained Latent Dirichlet Allocation (LDA) combined with Bi-calibrated Dual Granularity Dynamic Topic Model (DTM). We conduct a systematic empirical analysis of dynamic topic evolution in the AI field using English AI papers retrieved from the Web of Science (WOS) Core Collection (2014-2023). Specifically, we first optimize the topic initialization process of LDA using a domain-specific dictionary to enhance the accuracy of static topic clustering. Second, we take the core topics identified by the optimized LDA as prior knowledge and input them into DTM, while optimizing the traditional single temporal granularity to an "annual + quarterly" dual granularity to accurately track the changes in topic strength, keyword composition, and cross-topic association relationships over time. Finally, we verify the performance of the proposed model using perplexity and topic coherence indicators, and reveal the coupling characteristics between different topics through correlation analysis. Results indicate that six core topic clusters have emerged in the AI field, with "generative AI", "large language models", and "multimodal learning" evolving into explosive topics after 2021, traditional machine learning shows a declining trend, with its core focus shifting toward "few-shot learning" and "edge computing adaptation". The top three topic couplings are "generative AI-large language models", "computer vision-multimodal learning" and "reinforcement learning-robotics". The proposed combined model outperforms single models, achieving a 17.3% reduction in perplexity and a 23.5% decrease in topic drift rate, thereby providing valuable decision support for researchers seeking to grasp field frontiers and management departments for optimizing resource allocation. + © 2026. The Author(s). + + + + Yin + Xueqi + X + + School of International Studies, Tianjin University of Commerce, Tianjin, 300134, China. yinxq@tjcu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Academic paper analysis + Artificial intelligence + Dynamic topic model + Latent dirichlet allocation + Text mining + Topic evolution + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 30 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215613 + 10.1038/s41598-026-54348-9 + 10.1038/s41598-026-54348-9 + + +
+ + + 42215604 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Development and validation of a noninvasive machine learning model using urinary extracellular vesicle physical parameters for prostate cancer diagnosis. + 10.1038/s41598-026-54920-3 + + Urinary extracellular vesicles (uEVs) are promising biomarkers for prostate cancer (PCa). Although novel uEV-based biomarkers have advanced early diagnosis, their detection processes remain cumbersome and cost-prohibitive. The physical parameters of uEVs offer untapped predictive potential for PCa, providing a more convenient, rapid, and cost-effective diagnostic approach. This study aims to construct a predictive model integrating uEV physical parameters with machine learning (ML) algorithms to enhance the early diagnosis of PCa. Urine samples were collected from 222 eligible participants. uEVs were isolated using a commercial kit, and their concentration and size parameters were quantified via nanoparticle tracking analysis (NTA). Utilizing these physical parameters, five ML algorithms were trained and evaluated to identify the optimal diagnostic model for PCa. Model performance was systematically assessed using the area under the receiver operating characteristic curve (AUC), learning curves, calibration curves, and decision curve analysis (DCA). Additionally, SHapley Additive exPlanations (SHAP) were employed to visualize the contributions of key predictors. Analysis of uEV physical parameters revealed that, compared to benign controls, PCa patients exhibited a significantly higher proportion of 30-150 nm uEVs and a smaller overall particle size (p < 0.001). Among the evaluated algorithms, the eXtreme Gradient Boosting (XGBoost) model demonstrated superior performance. For discriminating PCa from benign prostatic hyperplasia (BPH), the XGBoost model achieved AUC values of 0.934 and 0.864 in the training and testing cohorts, respectively. DCA demonstrated that the XGBoost model yielded a higher clinical net benefit across a threshold probability range of 0-60%. Overall, the diagnostic efficacy and clinical utility of the XGBoost model significantly outperformed routine clinical parameters, including prostate-specific antigen (PSA) and prostate-specific antigen density (PSAD). This study successfully developed and validated a noninvasive ML-based diagnostic model utilizing the physical parameters of uEVs. This approach serves as a preliminary adjunctive tool to assist clinicians in accurately identifying prostate cancer, thereby potentially reducing the incidence of unnecessary prostate biopsies. + © 2026. The Author(s). + + + + Jiang + Kangxian + K + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + Department of Surgical Critical Care Medicine, Beijing Shijitan Hospital, Capital Medical University, No.10, Tieyi Road, Beijing, 100038, China. + + + + Pan + Dongwei + D + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Yu + Jiayin + J + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Cai + Wenbing + W + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Zhang + Bingfeng + B + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Zuheng + Z + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Lu + Yuqing + Y + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Wang + Dianyu + D + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + + Li + Xiao + X + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Zheng + Deyong + D + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Mingda + M + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Fubo + F + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + + Chen + Junyi + J + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. chenjunyidoctor@163.com. + + + + eng + + + 82372828, + National Natural Science Foundation of China + + + + 2023GXNSFFA026003 + Science Foundation for Distinguished Young Scholars of Guangxi + + + + AA22096030 + Science and Technology Major Project of Guangxi + + + + 2021015 + Yongjiang Program of Nanning + + + + 2021GGA038 + the Science and Technology Plan Project of Fujian Provincial Health Commission + + + + 2022C035R + High-level Talents Innovation and Entrepreneurship Project of Quanzhou Science and Technology Plan + + + + 2022J01277 + Natural Science Foundation of Fujian Province + + + + 2025CXB023 + Fujian Provincial Health Commission + + + + 2026J001703 + Fujian Provincial Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Diagnosis + Machine learning + NTA + Prostate cancer + Urinary extracellular vesicles + + Declarations. Competing interests: The authors declare no competing interests. Ethics approval and consent to participate: The studies involving human participants were reviewed and approved by the Ethics Committee of Shanghai Changhai Hospital, the Ethics Committee of Taizhou People’s Hospital, and the Ethics Committee of Zhongda Hospital. (Approval No. CHEC2013-115).Clinical trial number: not applicable. This study strictly adhered to the ethical principles outlined in the Declaration of Helsinki, ensuring that all data were derived from actual clinical cases. Informed consent: Informed consent was obtained from each patient or their legal representative before sample collection. Consent for publication: Not applicable. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 14 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215604 + 10.1038/s41598-026-54920-3 + 10.1038/s41598-026-54920-3 + + +
+ + + 42215600 + + 2026 + 05 + 29 + +
+ + 2399-3669 + + + 2026 + May + 29 + + + Communications chemistry + Commun Chem + + CholBindNet as an interpretable neural network for cholesterol-binding site classification. + 10.1038/s42004-026-02064-w + + Cholesterol is a key modulator of membrane protein structure and function, yet predicting cholesterol-binding sites remains challenging due to its non-druglike physicochemical properties. Here, we curated more than 800 high-resolution transmembrane protein structures containing cholesterol, and developed an interpretable, atom-based graph neural network, called CholBindNet. A positive-unlabeled (PU) training strategy was employed to address the scarcity of negative samples due to the promiscuous nature of cholesterol binding. We show that CholBindNet substantially outperforms existing machine learning models trained on general ligand-binding datasets, including AlphaFold3, P2Rank, and DiffDock. The performance and generalizability of the model on unseen membrane proteins were further demonstrated by rapidly assessing cholesterol-binding sites in the PIEZO2 ion channel against all-atom molecular dynamics (MD) simulations conducted on Anton3 supercomputer. Additionally, strong model interpretability was achieved for CholBindNet through atom-level feature encoding, Grad-CAM visualization, and attention-based scoring analysis. Overall, CholBindNet provides an efficient and scalable approach for classifying and ranking cholesterol-binding sites on membrane proteins, achieving performance comparable to computationally expensive MD simulations while offering rich biophysical insights into the atomic-level spatial patterns beyond amino-acid sequence. This work lays the foundation for future deep-learning models targeting membrane protein drug-binding sites and cholesterol-modulated therapeutics. + © 2026. The Author(s). + + + + Hernandez + Alexis + A + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. + + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Bhatt + Aashish + A + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Revilla + Ivan + I + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Levine + Jacob Ede + JE + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. + + + + Kosaraju + Sai Chandra + SC + 0000-0002-4332-6217 + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. skosaraju@cpp.edu. + + + + Luo + Yun Lyna + YL + 0000-0003-3581-754X + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. luoy@westernu.edu. + + + + eng + + + GM130834 + U.S. Department of Health & Human Services | NIH | National Institute of General Medical Sciences (NIGMS) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Commun Chem + 101725670 + 2399-3669 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 1 + + + 2026 + 5 + 4 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215600 + 10.1038/s42004-026-02064-w + 10.1038/s42004-026-02064-w + + +
+ + + 42215593 + + 2026 + 05 + 29 + +
+ + 2397-768X + + + 2026 + May + 29 + + + NPJ precision oncology + NPJ Precis Oncol + + Early detection of gastric cancer: a novel circulating microbiome DNA based liquid biopsy assay. + 10.1038/s41698-026-01532-9 + + Microorganisms play significant roles in gastric cancer (GC) progression. However, it is unknown whether circulating microbiome DNA (cmDNA) possesses GC specific features and could serve as diagnostic biomarker for GC detection. In this study, one cohort of 586 participants from Zhejiang Cancer Hospital were divided randomly into the training and testing datasets. Another cohort of 299 participants enrolled from three hospitals was used as an independent validation cohort. The cmDNA from plasma samples were analyzed by sequencing and various tools. The significant features of cmDNA were used as inputs to establish a machine learning diagnostic model (cmDNA-MLM). The cmDNA-MLM achieved the area under receiver operating characteristic curve (AUC) of 0.831 for GC across all stages in the testing cohort and 0.914 in the independent validation cohort. Notably, this model demonstrated strong performance in detecting early-stage GC, achieving an AUC of 0.792 for stage I GC in the validation cohort and exhibited favorable sensitivities across various molecular subtypes. The stage shift analysis showed a notable increase in the number of patients diagnosed at stage I. This cmDNA-MLM exhibited promising performance in early GC detection, which could be used as a clinical liquid biopsy methodology after more clinical validation studies. + © 2026. The Author(s). + + + + Chen + Yongyi + Y + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + School of Laboratory Medicine and Life Sciences, Wenzhou Medical University, Wenzhou, China. + + + + Han + Xinhong + X + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Luo + Miao + M + + Department of Clinical Laboratory, Chongqing Yubei District People's Hospital, Chongqing, China. + + + + Luo + Liulin + L + + Department of Clinical Laboratory, Shanghai Yangpu Hospital, Tongji University School of Medicine, Shanghai, China. + + + + Wang + Tingzhang + T + + Key Laboratory of Microbial Technology and Bioinformatics of Zhejiang Province, Hangzhou, China. + + + + Kong + Congcong + C + + Key Laboratory of Microbial Technology and Bioinformatics of Zhejiang Province, Hangzhou, China. + + + + Ye + Liuqing + L + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Jin + Jiangang + J + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Hou + Dingding + D + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Liao + Haiqi + H + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Wang + Zhonglin + Z + + OmixScience Laboratory, OmixScience Co. Ltd., Hangzhou, China. + + + + Xue + Wei + W + + OmixScience Laboratory, OmixScience Co. Ltd., Hangzhou, China. + + + + Lin + Ziao + Z + + OmixScience Research Institute, OmixScience Co. Ltd., Shenzhen, China. + + + Liangzhu Laboratory, Zhejiang University, Hangzhou, China. + + + + Xu + Songxiao + S + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. xusx@zjcc.org.cn. + + + School of Laboratory Medicine and Life Sciences, Wenzhou Medical University, Wenzhou, China. xusx@zjcc.org.cn. + + + + eng + + + 82302622 + National Natural Science Foundation of China + + + + 2022KY675 + Zhejiang Province Medical and Health Technology Project + + + + 2024KY862 + Zhejiang Province Medical and Health Technology Project + + + + 2024C03050 + "Pioneer" and "Leading Goose" R&D Program of Zhejiang + + + + 2022C03002 + "Pioneer" and "Leading Goose" R&D Program of Zhejiang + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Precis Oncol + 101708166 + 2397-768X + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 9 + 16 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215593 + 10.1038/s41698-026-01532-9 + 10.1038/s41698-026-01532-9 + + +
+ + + 42215588 + + 2026 + 05 + 29 + +
+ + 2398-6352 + + + 2026 + May + 29 + + + NPJ digital medicine + NPJ Digit Med + + Development and validation of a machine learning-based diagnostic system for 22 pediatric respiratory pathogens: a large-scale multicenter study. + 10.1038/s41746-026-02818-9 + + Respiratory tract infections (RTIs) are a significant cause of morbidity in children, caused by a wide range of pathogens. As treatment strategies depend on the causative pathogen, early and accurate diagnosis is crucial. We developed and validated an interpretable Pathogen Diagnostic System for Pediatric Respiratory Infections (Pathog-PDx), conducting a multicenter study involving 134,500 hospitalized children across three clinical centers and two databases. The model integrated 42 clinical and laboratory features from electronic health records (EHR) to enable early pathogen identification. Prospective validation was carried out on an independent cohort of 1338 children to assess the real-world applicability of the model. Pathog-PDx accurately distinguished 22 pathogen subtypes and outperformed conventional models in identifying both single and mixed infections. The model achieved high classification performance for key pathogens, such as influenza virus (AUC = 0.95; Sn: 0.88; Sp: 0.86), with mean AUCs of 0.88 for various pathogens of RTIs. The model has been deployed as a web-based decision support system, which is freely accessible at https://pathogpdx.zzu.edu.cn. Altogether, Pathog-PDx represents a potential tool for the early identification of respiratory tract pathogens in pediatric patients, which can provide actionable predictions ahead of conventional test results to guide timely and targeted therapy. + © 2026. The Author(s). + + + + Su + Dubin + D + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Qun + Q + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Xiamen Cell Therapy Research Center, The First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, China. + + + + Xu + Ruizhi + R + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Qihong + Q + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Ma + Chiyuan + C + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Xi + X + + Department of Clinical Laboratory, Children's Hospital of Fudan University (Xiamen Branch), Xiamen Children's Hospital, Xiamen, Fujian, China. + + + + Yang + Yunyun + Y + + Department of Laboratory Medicine, Xiamen Key Laboratory of Genetic Testing, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + + Qin + Feibo + F + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. + + + + Zhou + Ziwei + Z + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. + + + + Li + Sixian + S + + Department of Functional Neurology, Shenzhen Second People's Hospital, Shenzhen, Guangdong, China. + + + + Peng + Jie + J + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Ge + Dandan + D + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Fan + Jiajun + J + + Siebel School of Computing and Data Science, University of Illinois Urbana-Champaign, Urbana, Champaign, IL, USA. + + + + Li + Xingyu + X + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + + Wang + Yanbo + Y + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Yang + Yungang + Y + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. xmyyg@sina.com. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. xmyyg@sina.com. + + + + Guo + Yaping + Y + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. guoyaping@zzu.edu.cn. + + + + Yang + Jingjing + J + + Department of Pulmonary and Critical Care Medicine, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. Jingjingyang_xmu@126.com. + + + + Ning + Wanshan + W + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. ningwanshan@xmu.edu.cn. + + + + eng + + + 3502Z20214001 + Project of Xiamen Cell Therapy Research Center + + + + 32570802 + National Natural Science Foundation of China + + + + 32400532 + National Natural Science Foundation of China + + + + 3502Z20254ZD1032 + the Guided Project of Medical and Health Care in Xiamen + + + + 3502Z20254ZD1004 + the Guided Project of Medical and Health Care in Xiamen + + + + 2021ZD0201300 + National Key R&D Program of China + + + + 2024GGB18 + Fujian Provincial Health Technology Project + + + + 2025D022 + Fujian Science and Technology Program Guiding Project + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Digit Med + 101731738 + 2398-6352 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 8 + 19 + + + 2026 + 5 + 15 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215588 + 10.1038/s41746-026-02818-9 + 10.1038/s41746-026-02818-9 + + +
+ + + 42215586 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Ethnicity-specific molecular subtypes and a machine-learning risk model in Asian patients with non-muscle-invasive bladder cancer. + 10.1038/s41598-026-55438-4 + + Non-muscle-invasive bladder cancer (NMIBC) has high rates of recurrence and progression, yet its molecular landscape across different ethnicities remains poorly defined. We assembled a meta-cohort of 202 Asian NMIBC transcriptomes and identified three novel molecular subtypes (AC0, AC1, AC2) using non-negative matrix factorization clustering. These subtypes, each associated with distinct biological pathways and clinical outcomes, were externally validated across 22 datasets. Subtype-specific biomarkers (RABL6, MYBL2, RAD54L, and FAM64A) were confirmed by immunohistochemistry in an independent Asian cohort (n = 210), enabling the development of a machine-learning-based risk stratification model. AC1, characterized by aggressive features and enrichment of cell cycle and oncogenic signaling pathways, exhibited the poorest prognosis. Notably, after adjustment for T-stage and grade, the combined risk model was independently prognostic in Asian cohorts but not in European cohorts, underscoring ethnic differences in NMIBC biology. Our findings delineate distinct molecular subtypes and introduce a clinically applicable, ethnicity-specific prognostic model for Asian patients with NMIBC. This study emphasizes the importance of incorporating ethnic diversity into precision oncology frameworks and provides a foundation for personalized therapeutic and surveillance strategies in underrepresented populations. + © 2026. The Author(s). + + + + Jung + Minsun + M + + Department of Pathology, Yonsei University College of Medicine, Seoul, Republic of Korea. + + + + Park + Sangyong + S + + Department of Statistics, Seoul National University, Seoul, Republic of Korea. + + + + Jang + Insoon + I + + Biomedical Research Institute, Seoul National University Hospital, Seoul, Republic of Korea. + + + Blood Transfusion Research Institute, Korean Red Cross, Wonju, Gangwon-do, Republic of Korea. + + + + Han + Dohyun + D + + Department of Transdisciplinary Medicine, Institute of Convergence Medicine with Innovative Technology, Seoul National University Hospital, Seoul, Republic of Korea. + + + Proteomics Core Facility, Biomedical Research Institute, Seoul National University Hospital, Seoul, Republic of Korea. + + + + Cho + Yong Mee + YM + + Department of Pathology, Asan Medical Center, University of Ulsan College of Medicine, Seoul, Republic of Korea. + + + + Kim + Kwangsoo + K + + Department of Transdisciplinary Medicine, Institute of Convergence Medicine with Innovative Technology, Seoul National University Hospital, Seoul, Republic of Korea. kksoo716@gmail.com. + + + Department of Medicine, Seoul National University, Seoul, Republic of Korea. kksoo716@gmail.com. + + + + Moon + Kyung Chul + KC + + Department of Pathology, Seoul National University College of Medicine, Seoul, Republic of Korea. blue7270@snu.ac.kr. + + + Kidney Research Institute, Medical Research Center, Seoul National University College of Medicine, Seoul, Republic of Korea. blue7270@snu.ac.kr. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Cluster Analysis + Ethnicity + Machine Learning + Non-Muscle Invasive Bladder Neoplasms + Tumor Biomarkers + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 5 + 13 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215586 + 10.1038/s41598-026-55438-4 + 10.1038/s41598-026-55438-4 + + +
+ + + 42215583 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Wireless charging ferrite core design with improved material efficiency for mobile devices by enhancing outer-region flux density. + 10.1038/s41598-026-55270-w + + Wireless power transfer (WPT) systems integrated with machine learning (ML) techniques have emerged as promising solutions for enhancing performance and efficiency. Material efficiency, which involves achieving high performance with minimal material use, is crucial for mobile devices to enhance user satisfaction. This paper proposes a core structure design methodology for WPT systems that enhances mutual inductance (MI) by segmenting and assembling the ferrite core, thereby improving material efficiency within limited space constraints. For genetic algorithm (GA)-based optimization, an ML estimator is implemented to replace iterative finite element method simulations during the GA optimization loop, reducing the average computation time from 203s to 86μs and significantly accelerating the GA optimization process. Furthermore, the designed core structure exhibits improved uniformity of magnetic flux density by enhancing the outer-region magnetic flux density between the coils, thereby contributing to higher MI. Experimental results show that the proposed core structure achieves a 17.44% higher normalized MI compared to conventional structures, using less material through an asymmetrical configuration, which also reduces weight and cost. Furthermore, the optimized asymmetrical structure demonstrates robustness under lateral misalignment conditions ([Formula: see text] mm), consistently maintaining higher material efficiency than the full-piece reference even under spatial offsets. These findings demonstrate the potential of ML-driven approaches for developing high-performance, computationally efficient, and cost-effective WPT systems. + © 2026. The Author(s). + + + + Park + Yohan + Y + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Shah + Syed Ahson Ali + SAA + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Cho + Woo-Young + WY + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Park + Hyojun + H + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Lee + Hyunwoong + H + + Oceansbio, Seoul, 04303, South Korea. + + + + Kim + Yun-Su + YS + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. yunsukim@gist.ac.kr. + + + Research Institute for Solar and Sustainable Energies, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. yunsukim@gist.ac.kr. + + + + eng + + + No. RS-2026-25533249 + Korea Institute of Energy Technology Evaluation and Planning + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Ferromagnetic cores design + Genetic algorithm + Inductive power transfer + Mutual inductance + Wireless power transfer + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 3 + + + 2026 + 5 + 23 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215583 + 10.1038/s41598-026-55270-w + 10.1038/s41598-026-55270-w + + +
+ + + 42215579 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Machine learning based detection of subacute ruminal acidosis in early lactation dairy cows using multi-sensor behavioral, physiological, and milk production data. + 10.1038/s41598-026-55162-z + + Subacute ruminal acidosis (SARA) is a common metabolic disorder in early lactation dairy cows that negatively affects rumen function, milk production, and animal welfare. Early identification remains challenging because clinical signs are often subtle and transient. The aim of this study was to evaluate whether multi sensor behavioral, physiological, and milk-production data could be used to identify cows experiencing SARA using machine-learning approaches. The study included early-lactation Holstein cows during the first 100 days in milk. The final dataset comprised 636 cow-day observations, including 134 SARA cases and 502 clinically healthy controls. Cow identification numbers were additionally used as grouping variables during cross-validation to ensure complete separation of individual animals between training and validation subsets. SARA was defined based on continuous ruminal pH measurements, where cows were classified as SARA when ruminal pH remained between 5.2 and 5.8 for at least 180 min per day. Sensor derived variables included rumination time, activity, water intake, reticulorumen temperature, milk yield, and milk composition obtained from intraruminal boluses and an in-line milk analyzer. Six supervised machine learning classifiers were developed to classify SARA status based on combined sensor data. Among the evaluated models, SVM demonstrated the highest discriminatory performance, which achieved an area under the curve (AUC) of 0.97, accuracy of 0.95, sensitivity of 0.86, and specificity of 0.98 under repeated cow-level grouped cross-validation. Random forest showed similar performance (AUC = 0.97; accuracy = 0.93 and 0.98, respectively). Across all models, specificity was consistently higher than sensitivity, indicating that healthy cows were classified more accurately than SARA cases. These results demonstrate that integrated behavioral, physiological, and milk production data obtained from automated sensor systems can support classification of cows experiencing SARA under commercial farm conditions. The findings support the potential of multi sensor monitoring systems combined with machine learning classifiers as a tool for automated detection of rumen health disturbances in precision dairy farming. + © 2026. The Author(s). + + + + Grigė + Samanta + S + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. Samanta.grige1@lsmu.lt. + + + + Girdauskaitė + Akvilė + A + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Grigas + Ovidijus + O + + Faculty of Informatics, Kaunas University of Technology, 50254, Kaunas, Lithuania. + + + + Japertas + Sigitas + S + + Practical Training and Research Center, Lithuanian University of Health Sciences, Topolių g. 6, 54310, Kaunas, Lithuania. + + + + Malašauskienė + Dovilė + D + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Televičius + Mindaugas + M + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Urbutis + Mingaudas + M + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Džermeikaitė + Karina + K + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Krištolaitytė + Justina + J + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Antanaitis + Ramūnas + R + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Biosensors + Dairy cattle + Innovations + Machine learning + + Declarations. Competing interests: The authors declare no competing interests. Ethics approval: All animal procedures were reviewed and approved by the Institutional Animal Care and Use Committee of the Lithuanian University of Health Sciences (Protocol No. G2-227, approved on 7 March 2025). +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 2 + + + 2026 + 5 + 22 + + + 2026 + 5 + 29 + 23 + 18 + + + aheadofprint + + 42215579 + 10.1038/s41598-026-55162-z + 10.1038/s41598-026-55162-z + + +
+ + + 42215538 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Transition of blue space in the urban area of khulna city corporation using geospatial and machine learning techniques. + 10.1038/s41598-026-52656-8 + + Urban blue-space loss and grey-space expansion have significantly altered the surface water systems of the Khulna City Corporation, increasing the environmental degradation and hydrological vulnerability of this climate-sensitive coastal city. This study used multi-temporal Landsat imagery, including Landsat 5 TM data from 1994 to 2004 and Landsat 8 OLI data from 2014 to 2024. The analysis integrated the Normalized Difference Vegetation Index, Normalized Difference Built-up Index, and Normalized Difference Water Index with Random Forest classification and post-classification change detection to quantify long-term land-use/land-cover transitions and urban blue-space transformation. Post-classification comparison generated directional transition matrices documenting conversion pathways among land-cover categories. The results show that surface water bodies have decreased from 4.20 km2 in 1994 to 2.27 km2 in 2024, while the built-up area has increased from 25.9 to 53.3% of the area studied. The accuracy assessment resulted in an overall accuracy of 84.5 to 89.3%, with Kappa coefficients ranging from 0.78 to 0.86. Water body classifications have remained reliable throughout all periods, which has supported the use of classifiable maps for long-term migration analysis. Temporal analysis revealed two main phases: an early phase characterized by mixed land reclamation and later phases dominated by conversion of water bodies into built-up areas. Spatial analysis identified critical hotspots of canal infill, wetland loss, and riverbank modification, mainly in central and southern municipal zones. These findings highlight the need to treat urban blue spaces as critical infrastructure and to promote integrated management, natural drainage solutions and regular remote sensing monitoring. The study frames the loss of blue space as a process of urban transformation and advocates better monitoring of urban water systems in coastal secondary coastal cities. + © 2026. The Author(s). + + + + Hossan + Md Refath + MR + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. + + + + Hossain + Mohammad Ismail + MI + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. ihossain@idm.kuet.ac.bd. + + + + Islam + Md Wahidul + MW + + Department of Chemistry, Gopalganj Science and Technology University, Gopalganj, 8100, Bangladesh. + + + + Shaon + Zahid Hassan + ZH + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + GIS analysis + Land cover change + Remote sensing + Surface water decline + Urban expansion + + Declarations. Competing interests: The authors declare no competing interests. Consent to participate: This study did not involve any human participants, animal subjects, or personally identifiable. data, and therefore did not require ethical approval. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 4 + 6 + + + 2026 + 5 + 6 + + + 2026 + 5 + 29 + 23 + 17 + + + aheadofprint + + 42215538 + 10.1038/s41598-026-52656-8 + 10.1038/s41598-026-52656-8 + + +
+ + + 42215534 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + An explainable spatio-temporal deep learning framework for crop yield prediction and recommendation. + 10.1038/s41598-026-54439-7 + + Agriculture plays a critical role in ensuring global food security, yet crop yield variability driven by climate change, soil heterogeneity, and environmental fluctuations poses persistent challenges. Accurate yield forecasting and intelligent crop recommendation are essential for sustainable and efficient farm management. This study proposes a novel AI-driven framework for precise crop yield prediction and data-driven crop selection. The framework integrates systematic data preprocessing, hybrid feature selection, deep learning, and attention-based modeling to capture complex nonlinear relationships within agricultural datasets. Raw data, including soil properties, topography, climatic variables, and historical yield records, are processed using median-based imputation, normalization, and Z-score outlier detection to enhance reliability. A multi-stage hybrid feature selection approach combining Minimum Redundancy Maximum Weight, Sequential Forward Subset Selection, and Recursive Fisher Score identifies the most informative features while reducing redundancy. Yield prediction is performed using an attention-enhanced hybrid kernel Extreme Learning Machine (ELM). Crop recommendation is achieved through a Spatio-Temporal Explainable Group-Enhanced Transformer Network (STX-GTNET) optimized with the PantheraCobra metaheuristic. Model interpretability is ensured using Grad-CAM and Integrated Gradients. Experimental results demonstrate strong performance, achieving an RMSE of 281.6 and R² of 0.94 for yield prediction, and 98.4% accuracy with a 0.991 ROC-AUC for crop recommendation. + © 2026. The Author(s). + + + + Piyar S + Nifasath + N + + Department of Computer Science and Engineering, Anna University, Chennai, 600 025, India. nifasathpiyar@gmail.com. + + + + S + Dr Baulkani + DB + + Department of Electronics and Communication Engineering, Government College of Engineering, Bodinayakkanur, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Crop recommendation system + Crop yield prediction + Explainable artificial intelligence and precision agriculture + Spatio-temporal deep learning + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 24 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 23 + 17 + + + aheadofprint + + 42215534 + 10.1038/s41598-026-54439-7 + 10.1038/s41598-026-54439-7 + + +
+ + + 42215508 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + The role of biopsychosocial factors in classifying pain intensity across various chronic pain conditions. + 10.1038/s41598-026-46612-9 + + Chronic pain is a multifaceted condition shaped by biological, psychological, and social factors, which challenges its diagnosis and treatment. While prior research largely focused on sensory profiles to distinguish pain mechanisms, this study adopted a biopsychosocial perspective with the key addition of experimental pain paradigms to identify factors explaining variance in chronic pain severity across diverse etiologies. The dataset comprised 101 individuals with chronic pain and 63 pain-free controls. Participants were classified into three groups (no pain, mild-to-moderate pain, and severe pain) using three models: a sensory-profile-based model including quantitative sensory testing (QST model), a biopsychosocial model incorporating QST alongside psychological and social variables (biopsychosocial model), and a model using the same biopsychosocial data but excluding QST measures (noQST model). The QST model achieved an accuracy of 0.51 and an F1-score of 0.48. In contrast, the biopsychosocial model performed best, with both accuracy and F1-score of 0.71, while the noQST model reached 0.60 for both metrics. Key predictors in the best-performing model included quality of life, loss of sensation, depressive mood, pain catastrophizing, anxiety, fatigue, and general health. Overall, biopsychosocial factors enhanced chronic pain severity classification beyond sensory profiles alone across heterogeneous pain etiologies. + © 2026. The Author(s). + + + + De Schoenmacker + Iara + I + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. deschoeia@gmail.com. + + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. deschoeia@gmail.com. + + + Biomedical Data Science Lab, Swiss Federal Institute of Technology (ETH), Lengghalde 2, 8008, Zurich, Switzerland. deschoeia@gmail.com. + + + + Monzon + Maria + M + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. + + + + Sirucek + Laura + L + + Neuroscience Center Zurich, University of Zurich, Zurich, Switzerland. + + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + Center for Neuroplasticity and Pain (CNAP), Department of Health Science and Technology, Aalborg University, Aalborg, Denmark. + + + + Scheuren + Paulina S + PS + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + International Collaboration on Repair Discoveries, University of British Columbia, Vancouver, BC, Canada. + + + Department of Anesthesiology, Pharmacology and Therapeutics, Faculty of Medicine, University of British Columbia, Vancouver, BC, Canada. + + + + Lütolf + Robin + R + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Gorrell + Lindsay M + LM + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Brunner + Florian + F + + Physical Medicine and Rheumatology, Balgrist University Hospital, Zurich, Switzerland. + + + + Curt + Armin + A + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Rosner + Jan + J + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + Danish Pain Research Center, Department of Clinical Medicine, Aarhus University, Aarhus, Denmark. + + + + Schweinhardt + Petra + P + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Hubli + Michèle + M + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Jutzeler + Catherine R + CR + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. + + + Swiss Institute of Bioinformatics (SIB), Lausanne, Switzerland. + + + + eng + + + PF198F + International Foundation for Research in Paraplegia + + + + P500PB_214416 + Schweizerischer Nationalfonds zur Förderung der Wissenschaftlichen Forschung + + + + PZ00P3_186101 + Schweizerischer Nationalfonds zur Förderung der Wissenschaftlichen Forschung + + + + RT-2023-3173 + Michael Smith Health Research BC + + + + R359-2020-2620 + Lundbeck Foundation + + + + 380 + Strategic Focus Area "Personalized Health and Related Technologies (PHRT)" of the Swiss Federal Institutes of Technology + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Biopsychosocial model + Chronic pain + Machine learning + Pain classification + Quantitative sensory testing + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 5 + 21 + + + 2026 + 3 + 26 + + + 2026 + 5 + 29 + 23 + 16 + + + aheadofprint + + 42215508 + 10.1038/s41598-026-46612-9 + 10.1038/s41598-026-46612-9 + + +
+ + + 42215501 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Predictive analysis on mechanical properties, material flow and thermal analysis of friction stir welded dissimilar AA2014/AA7075 Al-alloy joints using machine learning. + 10.1038/s41598-026-48688-9 + + Aluminum alloys are the most ideal materials for aerospace applications, and joining of a light weighted materials with an eco-friendly method is encouraging ongoing research into the green welding technique. In the current work solid-state joints of 10 mm thick AA2014/AA7075 Al-alloys dissimilar material joints with hybrid pin profiles were fabricated by using Friction Stir Welding (FSW) technique. The microstructure and mechanical properties of weld joints, temperature analysis of the welds processed under various conditions is investigated. An Artificial Neural Network (ANN) model is used to predict the mechanical properties of the welded joints fabricated at different conditions. The weld joints processed with hybrid pentagonal pin profile exhibits the highest UTS and YS measuring as 294 and 267 MPa respectively. The ANN showed strong prediction using a dataset of 27 experimentally obtained results providing a reliable data-driven method for forecasting UTS and optimizing FSW parameters. The weld joints processed at 900 rpm 31. 5 mm/min 2° tilt angle 0 mm tool offset and pentagonal pin profile revealed 62% of joint efficiency, which is suitable for the suggested AWS requirements for aerospace applications must be met by 60%. ANN model provided a good agreement with experimental results (R² = 0.93). However, due to the relatively small dataset (L27 design). + © 2026. The Author(s). + + + + Rao + R Venkateswara + RV + + Department of Mechanical Engineering, Vignana Bharathi Institute of Technology, Telangana, 501301, India. + + + + Kumar + M Senthil + MS + + School of Mechanical Engineering, Vellore Institute of Technology, Chennai, 600127, India. msv305@yahoo.co.in. + + + + Vanmathi + M + M + + Department of Electronics and Communication Engineering, B S Abdurrahman Crescent Institute of Science and Technology, Chennai, 60048, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Dissimilar Materials + FSW Process + Mechanical Properties + Process Parameters + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 10 + 10 + + + 2026 + 4 + 9 + + + 2026 + 5 + 29 + 23 + 16 + + + aheadofprint + + 42215501 + 10.1038/s41598-026-48688-9 + 10.1038/s41598-026-48688-9 + + +
+ + + 42215494 + + 2026 + 05 + 29 + +
+ + 2396-8370 + + + 2026 + May + 29 + + + NPJ science of food + NPJ Sci Food + + Novel insights into the binding mechanisms of selected aldehydes during heat-induced protein unfolding. + 10.1038/s41538-026-00874-9 + + This investigation aimed to clarify the binding mechanisms between six aldehydes and myofibrillar proteins (MPs), with a structural explanation in response to stage-heating treatments. The conformational intermediates of MPs, which form during heat processing, were systematically characterized to elucidate their role in aldehyde binding and flavor retention. Machine learning results suggested that high-temperature boiling promoted extensive protein denaturation and aggregation, while subsequent low-temperature stewing induced partial rearrangement. Thermodynamic parameters indicated that hexanal-MPs formation was primarily driven by hydrogen bonding, whereas other longer-chain and unsaturated aldehydes penetrated hydrophobic pockets. Proteomics revealed that saturated aldehydes predominantly formed Schiff bases with the lysine ε-amino group. Unsaturated aldehydes, especially (E, E)-2,4-decadienal, undergo both Schiff base reactions and Michael addition with cysteine, histidine, and tryptophan residues. The retention/release behavior of aldehydes during processing is determined by covalent and non-covalent interactions. These results provide a scientific basis for precisely controlling flavor quality in meat products. + © 2026. The Author(s). + + + + Wang + Jingfan + J + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + Laboratory of Chemistry of Natural Molecules, Gembloux Agro-Bio Tech, University of Liege, Gembloux, Belgium. + + + Laboratory of Analytical Chemistry, Gembloux Agro-Bio Tech, University of Liège, Gembloux, Belgium. + + + + Wang + Tianze + T + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + + Yang + Ping + P + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + + Han + Dong + D + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. orange_1101@126.com. + + + + Zhang + Chunhui + C + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. dr_zch@163.com. + + + + Jia + Wei + W + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + Jiangsu Chaoyue Agricultural Development Co. Ltd, Taizhou, China. + + + + Purcaro + Giorgia + G + + Laboratory of Analytical Chemistry, Gembloux Agro-Bio Tech, University of Liège, Gembloux, Belgium. + + + + Fauconnier + Marie-Laure + ML + + Laboratory of Chemistry of Natural Molecules, Gembloux Agro-Bio Tech, University of Liege, Gembloux, Belgium. + + + + eng + + + No. 32472392 + the National Natural Science Foundation of China + + + + ASTIP-Y2025QC29 + the Agricultural Science and Technology Innovation Program + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Sci Food + 101739627 + 2396-8370 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 25 + + + 2026 + 4 + 28 + + + 2026 + 5 + 29 + 23 + 15 + + + aheadofprint + + 42215494 + 10.1038/s41538-026-00874-9 + 10.1038/s41538-026-00874-9 + + +
+ + + 42215477 + + 2026 + 05 + 29 + +
+ + 2731-6068 + + + 2026 + May + 29 + + + npj aging + NPJ Aging + + Latent biochemical phenotypes delineate divergent health trajectories in older adults. + 10.1038/s41514-026-00415-4 + + Ageing heterogeneity hampers prevention and care. We used routine biochemical panels and unsupervised learning to identify latent phenotypes in community-dwelling older adults. In 1491 participants from the Toledo Study for Healthy Ageing (TSHA) with ~10-11 years of follow-up, 39 blood biomarkers were dimension-reduced and clustered, yielding three phenotypes: Healthy, Metabolic (subclinical dysmetabolism), and Haematological (low erythroid/renal profile). Phenotypes differed in functional capacity, frailty, and independence at baseline (all p < 0.05 after age/sex adjustment) and predicted long-term mortality (Metabolic women HR = 1.49, p = 0.016). Sex-specific analyses revealed distinct disease-trajectory patterns (e.g., hypertension in Metabolic women HR = 1.30, p = 0.005; thrombosis in Haematological men HR = 7.20, p = 0.018; syncope in Haematological women HR = 1.88, p = 0.009). Findings are partially replicated in a cohort of physically active older adults (EXERNET), supporting the generalizability of the Metabolic phenotype. Standard laboratory data, integrated through machine learning, capture ageing-relevant biology and stratify future risk without specialised assays, enabling low-cost, scalable precision prevention. + © 2026. The Author(s). + + + + González-Martos + Raquel + R + + Centro de Tecnología Biomédica (CTB), Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Nageru S.L, Madrid, Spain. + + + + Rodríguez-Gómez + Irene + I + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + Geriatrics Department, Hospital Universitario de Toledo, Toledo, Spain. + + + + Galeano + Javier + J + + Grupo de Sistemas Complejos, Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + Grupo Interdisciplinar de Sistemas Complejos (GISC), Madrid, Spain. + + + + Ara + Ignacio + I + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + + Alegre + Luis M + LM + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + + Rodríguez-Mañas + Leocadio + L + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Geriatrics Department, Getafe University Hospital, Getafe, Spain. + + + + Garcia-Garcia + Francisco J + FJ + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + Geriatrics Department, Hospital Universitario de Toledo, Toledo, Spain. + + + + Ramírez-Castillejo + Carmen + C + + Centro de Tecnología Biomédica (CTB), Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + Departamento de Oncología, Instituto de Investigación Sanitaria San Carlos (IdISSC), Madrid, Spain. + + + + Guadalupe-Grau + Amelia + A + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. amelia.guadalupe@uclm.es. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. amelia.guadalupe@uclm.es. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. amelia.guadalupe@uclm.es. + + + + eng + + + IND2022/BMD-23595 + Comunidad de Madrid + + + + CD23/00236 + Instituto de Salud Carlos III + + + + PI10/01532, PI031558 + Instituto de Salud Carlos III + + + + PI2010/020 + Junta de Comunidades de Castilla-La Mancha + + + + 03031-00 + Consejería de Sanidad de Castilla-La Mancha + + + + CB16/10/00456 + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable + + + + CB16/10/00477 + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Aging + 9918402285106676 + 2731-6068 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 25 + + + 2026 + 5 + 18 + + + 2026 + 5 + 29 + 23 + 15 + + + aheadofprint + + 42215477 + 10.1038/s41514-026-00415-4 + 10.1038/s41514-026-00415-4 + + +
+ + + 42215447 + + 2026 + 05 + 29 + +
+ + 2041-1723 + + + 2026 + May + 29 + + + Nature communications + Nat Commun + + Multifactorial sheltering in peristromal niches shapes in vivo responses of lung cancers to targeted therapies. + 10.1038/s41467-026-73454-w + + Targeted therapies induce strong clinical responses but fail to eliminate advanced cancers, as a subset of tumor cells survives within residual disease and eventually develops resistance. While numerous cell-intrinsic and microenvironmental mechanisms have been implicated in this survival, their relative contributions remain poorly defined. Using spatial histological inferences from ALK + NSCLC models, we show that peristromal niches protect tumor cells from elimination, enabling in vivo persistence. This spatially restricted sheltering provides an ecological rescue mechanism that sustains residual populations, enabling their eventual evolutionary escape. Mechanistically, this protective effect reflects an integrated action of multiple juxtacrine and paracrine signals. This complexity limits the utility of targeting individual mechanisms of protection, favoring a shift towards exploiting orthogonal collateral sensitivities of residual disease. We find that adaptive HER2 upregulation, associated with both cell-intrinsic and stroma-mediated persistence, can be exploited by the antibody-drug conjugate T-DXd to dramatically enhance therapeutic responses and suppress tumor relapse. + © 2026. The Author(s). + + + + Desai + Bina + B + 0000-0003-0454-7583 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Cancer Biology Ph.D. Program, University of South Florida, Tampa, FL, USA. + + + + Miti + Tatiana + T + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Prabhakaran + Sandhya + S + 0000-0002-9537-507X + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Miroshnychenko + Daria + D + 0000-0001-6425-5000 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Kumar + Pragya + P + 0000-0002-5691-7016 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Henry + Menkara + M + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Marusyk + Viktoriya + V + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Siqueira + Natalia Souza Nunes + NSN + 0000-0002-7877-2655 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Gatenbee + Chandler + C + 0000-0002-9730-5964 + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Ozakinci + Hilal + H + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Bui + Marilyn + M + 0000-0003-4963-2255 + + Department of Machine Learning, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Pathology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Boyle + Theresa A + TA + 0000-0001-5950-3970 + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Machine Learning, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Scott + Jacob + J + 0000-0003-2971-7673 + + Department of Translational Hematology and Oncology Research, Cleveland Clinic, Cleveland, OH, USA. + + + + Altrock + Philipp M + PM + 0000-0001-7731-3345 + + Department of Hematology and Oncology, University Hospital Schleswig-Holstein, Kiel University, Kiel, Germany. + + + + Pellini + Bruna + B + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Thoracic Oncology, Miami Cancer Institute, Baptist Health South Florida, Miami, FL, USA. + + + + Haura + Eric + E + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Anderson + Alexander R A + ARA + 0000-0002-2536-4383 + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Basanta + David + D + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Marusyk + Andriy + A + 0000-0002-0087-9575 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. andriy.marusyk@moffitt.org. + + + Department of Molecular Medicine, University of South Florida, Tampa, FL, USA. andriy.marusyk@moffitt.org. + + + + eng + + + NIH U54 CA274507 + U.S. Department of Health & Human Services | NIH | National Cancer Institute (NCI) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Nat Commun + 101528555 + 2041-1723 + + IM + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 4 + 2 + + + 2026 + 5 + 8 + + + 2026 + 5 + 29 + 23 + 14 + + + aheadofprint + + 42215447 + 10.1038/s41467-026-73454-w + 10.1038/s41467-026-73454-w + + +
+ + + 42215401 + + 2026 + 05 + 29 + +
+ + 1879-2022 + + + 2026 + May + 13 + + + ISA transactions + ISA Trans + + Interpretable physical-informed machine learning for dynamic characteristics prediction of air spring with limited measurement information. + S0019-0578(26)00247-8 + 10.1016/j.isatra.2026.05.010 + + Pipe-type air spring with auxiliary airbag (ASAA) are important vibration isolation component due to its tunable volume and adjustable dynamic characteristics. However, its dynamic modeling is challenging because airbag expansion work, rubber bladder viscoelasticity, and turbulence-dominated throttle dynamics are strongly coupled under large-amplitude excitations. Traditional data-driven models often require large datasets and lack interpretability. To address this issue, this study proposes an interpretable physics-informed machine learning (PIML) framework for ASAA dynamic prediction. A reduced-order physical model is first developed to provide baseline predictions of stiffness and lag angle, and the discrepancies between physical predictions and experimental measurements are then used to construct residual datasets. An interpretable Kolmogorov-Arnold Network (KAN) is employed to learn these residuals through adaptive B-spline activation functions and derive explicit symbolic correction terms. Experimental validation shows that the proposed hybrid model improves prediction accuracy while retaining physical interpretability, outperforming pure data-driven, advanced physics-data and physical models. + Copyright © 2026 ISA. Published by Elsevier Ltd. All rights reserved. + + + + Qin + Wu + W + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: qw@ecjtu.edu.cn. + + + + Liao + Xundong + X + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: 2023038080200027@ecjtu.edu.cn. + + + + Qi + Junyu + J + + State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou 510006, China; Reutlingen University, Alteburgstraße 150, Reutlingen 72762, Germany. Electronic address: junyu.qi@reutlingen-university.de. + + + + He + Yi + Y + + School of Mechanical Engineering, South China University of Technology, China. Electronic address: 202111080705@mail.scut.edu.cn. + + + + Liu + Feifei + F + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: 2971@ecjtu.edu.cn. + + + + Chen + Zhuyun + Z + + State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou 510006, China. Electronic address: mezychen@gdut.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + United States + ISA Trans + 0374750 + 0019-0578 + + IM + + Air spring + Data-driven + Dynamic characteristic predictions + Physics-informed Machine Learning + + Declaration of Competing Interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 9 + 12 + + + 2026 + 5 + 10 + + + 2026 + 5 + 10 + + + 2026 + 5 + 29 + 21 + 58 + + + aheadofprint + + 42215401 + 10.1016/j.isatra.2026.05.010 + S0019-0578(26)00247-8 + + +
+ + + 42215359 + + 2026 + 05 + 29 + +
+ + 1879-0828 + + + 2026 + May + 29 + + + European journal of internal medicine + Eur J Intern Med + + Artificial intelligence in cardiovascular care for internal medicine: from promising algorithms to useful clinical services. + + 106944 + 106944 + + 10.1016/j.ejim.2026.106944 + S0953-6205(26)00249-9 + + Artificial intelligence is expanding rapidly in cardiovascular medicine, but its value in internal medicine depends less on raw model performance than on whether it improves triage, risk targeting, and coordination of care within real-world workflows. Rather than cataloguing applications, this review focuses on three use cases with near-term relevance in internal medicine: AI-augmented electrocardiography, risk prediction for targeted prevention, and AI-enabled clinical decision support, including selected applications of large language models. Across these domains, evaluation should extend beyond discrimination to calibration, positive predictive value at action thresholds, net benefit, alert burden, override rates, and downstream testing. Cardiovascular AI should not be judged as an autonomous decision-maker, but as a supervised component of care delivery. Its usefulness depends on predefined confirmation pathways, integration into existing information systems, actionable outputs, user training, and post-deployment monitoring for drift, safety, and equity. We propose a practical implementation lens - Train, Explain, Integrate, Accompany (TEIA) - to structure deployment in routine care, and summarize governance issues relevant to European practice, including intended use, interoperability, traceability, cybersecurity, and lifecycle oversight. The central question is not whether an AI tool can classify or predict, but whether its use in routine care supports better decisions with acceptable workload, safer pathways, and measurable clinical value. + Copyright © 2026 European Federation of Internal Medicine. Published by Elsevier B.V. All rights reserved. + + + + Desroche + Louis-Marie + LM + + Department of Cardiology, North Site, CHU de La Réunion, Allée des Topazes, Saint-Denis, La Réunion 97400, France; CIC-EC INSERM 1410, CHU de La Réunion, Saint-Denis, France. Electronic address: louis-marie.desroche@chu-reunion.fr. + + + + Trimaille + Antonin + A + + Department of Cardiology, Strasbourg University Hospital, Strasbourg, France; UR3074, Translational Cardiovascular Medicine, University of Strasbourg, Strasbourg, France; GERCA (Groupe pour l'Enseignement et la Recherche Cardiologique en Alsace), Strasbourg, France. + + + + Lequeux + Benoît + B + + Department of Cardiology, Poitiers University Hospital, Poitiers, France. + + + + Homehr + Nicolas + N + + Primary Care Practice, Lherm, France; CPTS du Sud Toulousain, Haute-Garonne, France. + + + + Girerd + Nicolas + N + + CHRU de Nancy, Centre d'Investigations Cliniques Plurithématique 1433, INSERM, Université de Lorraine, INSERM U1116 - DCAC, and F-CRIN INI-CRCT(Cardiovascular and Renal Clinical Trialists), Nancy, France. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + Netherlands + Eur J Intern Med + 9003220 + 0953-6205 + + IM + + Artificial intelligence + Cardiovascular disease + Clinical decision support + Electrocardiography + Governance + Implementation + Internal medicine + Machine learning + Risk prediction + + Declaration of competing interest AT has received a fellowship grant from Edwards Lifescience. NG declares honoraria from Alnylam, AstraZeneca, Bayer, Boehringer, Cardiostory, Lilly, Echosens, GSK, NP medical, Novartis, Novo Nordisk, Roche diagnostics. The other authors declare no conflict of interest. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 4 + 29 + + + 2026 + 5 + 12 + + + 2026 + 5 + 29 + 21 + 57 + + + aheadofprint + + 42215359 + 10.1016/j.ejim.2026.106944 + S0953-6205(26)00249-9 + + +
+ + + 42215334 + + 2026 + 05 + 29 + +
+ + 2588-9311 + + + 2026 + May + 29 + + + European urology oncology + Eur Urol Oncol + + AI-MIRACLE: Artificial Intelligence and MultIpaRAmetric MRI Predict CLinical OutcomEs to Neoadjuvant Immunotherapy in Patients with Muscle-invasive Bladder Cancer Undergoing Radical Cystectomy. + S2588-9311(26)00133-1 + 10.1016/j.euo.2026.05.006 + + Neoadjuvant immune-checkpoint inhibitors (ICIs) in muscle-invasive bladder cancer (MIBC) were tested in patient's ineligible for cisplatin-based chemotherapy. The PURE-01 trial (NCT02736266) evaluated three courses of pembrolizumab before radical cystectomy (RC). We developed AI-MIRACLE, an international study assessing artificial intelligence (AI) and multiparametric magnetic resonance imaging (mpMRI) for predicting treatment response. + This multi-institutional study included data acquisition in Italy, and centralized analysis in the United States. Among 112 PURE-01 patients, pre- and post-ICI MRIs were analyzed. T2-weighted signal intensities were standardized for radiomics (Image Biomarker Standardization Initiative-compatible Python-based Computational Environment for Radiological Research (pyCERR)) and deep feature extraction (AI-BLADE toolbox using VGG19). Diffusion-weighted (DW) and dynamic contrast-enhanced (DCE) MRI data underwent model-based analysis. Supervised machine learning algorithms (elastic net, random forest) were trained and cross-validated to predict pathological major response (pMR:ypT<2N0 residual disease) and pathological complete response (pCR: ypT0) pathological response. + The predictive models using post-ICI mpMRI with either a combination of radiomics and DCE-derived features or radiomics alone achieved the same high accuracy, with an area under the receiver operating characteristic curve (AUC) of 0.96 for pMR. A shape-based radiomic model achieved an AUC of 0.86 for predicting pCR. These models outperformed benchmark models based on clinical predictors. + Shape-based radiomics, DCE-derived features, and deep features may serve as noninvasive imaging biomarkers for predicting response to neoadjuvant pembrolizumab in MIBC. This imaging-based approach provides a non-invasive assessment of treatment response following neoadjuvant immunotherapy, which may help inform bladder-preserving management decisions prior to definitive surgery. + Copyright © 2026 The Author(s). Published by Elsevier B.V. All rights reserved. + + + + Necchi + Andrea + A + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy; Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy. Electronic address: necchi.andrea@hsr.it. + + + + Brembilla + Giorgio + G + + Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy; Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Whiting + Karissa + K + + Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Arita + Yuki + Y + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Akin + Oguz + O + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Apte + Aditya + A + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Awais + Muhammad + M + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Lema-Dopico + Alfonso + A + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Paudyal + Ramesh + R + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Cosenza + Michele + M + + Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Maiorano + Brigida Anna + BA + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Tateo + Valentina + V + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Cigliola + Antonio + A + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Mercinelli + Chiara + C + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + De Cobelli + Francesco + F + + Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy; Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Capanu + Marinela + M + + Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Shukla-Dave + Amita + A + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA; Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. Electronic address: davea@mskcc.org. + + + + Schwartz + Lawrence H + LH + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + Eur Urol Oncol + 101724904 + 2588-9311 + + IM + + Bladder cancer + Deep feature + MRI + Radiomics + +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 12 + 18 + + + 2026 + 4 + 28 + + + 2026 + 5 + 6 + + + 2026 + 5 + 29 + 21 + 56 + + + aheadofprint + + 42215334 + 10.1016/j.euo.2026.05.006 + S2588-9311(26)00133-1 + + +
+ + + 42215211 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1095-9998 + + 139 + + 2026 + Oct + + + Food microbiology + Food Microbiol + + Single-cell Raman spectroscopy-machine learning combination: Rapid and accurate strain-level identification of Bifidobacterium animalis subsp. lactis J12. + + 105131 + 105131 + + 10.1016/j.fm.2026.105131 + S0740-0020(26)00095-X + + Rapid and accurate strain-level identification of Bifidobacterium animalis is critical for probiotic quality control and intellectual property protection in the food industry. In this study, a novel identification method for Bifidobacterium animalis subsp. lactis J12 was established by integrating single-cell Raman spectroscopy (SCRS) with machine learning (ML) algorithms. A total of 500-1000 valid single-cell Raman spectra were collected for each of five Bifidobacterium animalis subsp. lactis strains and seven heterologous lactic acid bacterial strains. The SCRS data were processed and optimized using t-distributed stochastic neighbor embedding (t-SNE), linear discriminant analysis (LDA), and support vector machine (SVM) algorithms. Results showed that stationary-phase cells exhibited the most distinctive chemical fingerprints, enabling the SVM model to identify J12 among the five target strains with an accuracy of over 99%. The established method displayed high robustness: classification accuracy and recall for lyophilized bacterial powders both exceeded 99.8%; the predicted proportions of strains in artificial mixed samples were highly consistent with theoretical values, with a mean absolute error (MAE) of <0.5% and a correlation coefficient (R2) of >0.998; and the identification accuracy for J12 isolates from commercial yogurt remained above 99%. Comparative genomics analysis confirmed that the unique Raman phenotypic characteristics of J12 were correlated with its specific genomic features, verifying the method's reliability at the genetic level. This label-free and pure culture-free SCRS-ML approach provides a rapid and high-precision tool for strain-specific identification in the probiotic industry, and fills the technical gap in rapid detection of highly homologous B. animalis strains. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Jiang + Yixuan + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: 15245133725@163.com. + + + + Deng + Yu + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: 18184400300@163.com. + + + + Feng + Bing + B + + Qingdao Singlecell Biotechnology Co., Ltd., Qingdao, 266000, China. Electronic address: fengbing@singlecellbiotech.com. + + + + Zhang + Hongxing + H + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: hxzhang511@163.com. + + + + Xie + Yuanhong + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: xieyuanh@163.com. + + + + Gao + Jingyu + J + + Science and Technology Research Center of China Customs, Beijing, 100026, China. Electronic address: gjyhgxy@sina.com. + + + + Song + Xiaodong + X + + Inner Mongolia Mengniu Dairy (Group) Co., Ltd., Key Laboratory of Dairy Quality Intelligence Monitoring Technology, State Administration for Market Regulation, Hohhot, 011517, China. Electronic address: songxiaodong@mengniu.cn. + + + + Jin + Junhua + J + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: jinjunhua002008@163.com. + + + + eng + + Journal Article + Evaluation Study + + + 2026 + 04 + 22 + +
+ + England + Food Microbiol + 8601127 + 0740-0020 + + IM + + + Bifidobacterium animalis + classification + isolation & purification + chemistry + genetics + + + Spectrum Analysis, Raman + methods + + + Machine Learning + + + Support Vector Machine + + + Single-Cell Analysis + methods + + + Probiotics + + + Yogurt + microbiology + + + Discriminant Analysis + + + + Bifidobacterium animalis + Machine learning + Probiotics + Quality control + SCRS + Strain identification + + Declaration of competing interest The authors declare no conflicts of interest. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 18 + + + 2026 + 4 + 20 + + + 2026 + 4 + 21 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215211 + 10.1016/j.fm.2026.105131 + S0740-0020(26)00095-X + + +
+ + + 42215204 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1095-9998 + + 139 + + 2026 + Oct + + + Food microbiology + Food Microbiol + + Climatic factors and initial microbiota-driven prediction of the accumulated microbiota at the end of stacking fermentation for soy sauce aroma type baijiu. + + 105124 + 105124 + + 10.1016/j.fm.2026.105124 + S0740-0020(26)00088-2 + + Most traditional fermented foods are produced through spontaneous fermentation, which contain complex microbiota. However, it is still unclear what the key driving factors of the microbiota are and how to predict the microbiota at the end of fermentation. This study employed a typical spontaneous fermentation process, stacking fermentation for soy sauce aroma type baijiu, as a case to predict the microbiota at the end of fermentation based on key driving factors. The microbiota at the start of fermentation was mainly provided from the starter (daqu), air, and the ground of the fermentation room, contributing 45.22%, 10.05%, and 7.48% of the bacteria, and 41.83%, 10.77% and 1.21% of the fungi, respectively. Average air temperature and average photosynthetic photon flux density were identified as key climatic factors driving microbial succession. Finally, a Transformer-based machine learning model was constructed to predict the microbiota at the end of fermentation based on key climatic factors and the initial microbiota. 29 out of 34 dominant genera (average relative abundance ≥1%) could be accurately predicted (NRMSE <30%). Aitchison distance between true and predicted value using Transformer model was significantly lower than that using Random Forest model (P < 0.001). This work revealed the roles of climatic factors and the microbiota at the start of fermentation in shaping the microbiota at the end of fermentation. The constructed predictive model could facilitate the regulation of the microbiota in food fermentation. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + He + Binghao + B + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Zheng + Yifu + Y + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Ban + Shibo + S + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Madadi + Meysam + M + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Khaneghah + Amin Mousavi + AM + + Faculty of Biotechnologies (BioTech), ITMO University, 9 Lomonosova Street, Saint Petersburg, 191002, Russia. Electronic address: mousavi.amin@gmail.com. + + + + Aadil + Rana Muhammad + RM + + National Institute of Food Science and Technology, University of Agriculture, Faisalabad, 38000, Pakistan. Electronic address: muhammad.aadil@uaf.edu.pk. + + + + Wu + Qun + Q + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. Electronic address: wuq@jiangnan.edu.cn. + + + + eng + + Journal Article + + + 2026 + 04 + 16 + +
+ + England + Food Microbiol + 8601127 + 0740-0020 + + IM + + + Fermentation + + + Soy Foods + microbiology + analysis + + + Microbiota + + + Bacteria + classification + genetics + isolation & purification + metabolism + + + Climate + + + Odorants + analysis + + + Fungi + classification + genetics + metabolism + isolation & purification + + + Fermented Foods + microbiology + analysis + + + Food Microbiology + + + + Climate + Fermentation + Machine learning + Microbiota + Soy sauce aroma type baijiu + Succession distance + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 2 + + + 2026 + 4 + 12 + + + 2026 + 4 + 16 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215204 + 10.1016/j.fm.2026.105124 + S0740-0020(26)00088-2 + + +
+ + + 42215160 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1876-4452 + + 66 + 3 + + 2026 + May + + + Science & justice : journal of the Forensic Science Society + Sci Justice + + On-site strip-type drug test kit enhanced by AI-based image analysis. + + 101408 + 101408 + + 10.1016/j.scijus.2026.101408 + S1355-0306(26)00014-6 + + The demand for technology that can rapidly and precisely detect drugs in the field is increasing because of the growing number of criminal incidents involving the tampering of beverages with drugs. This paper presents the development and validation of a strip-type drug test kit that is user-friendly and portable, reduces the consumption of reagents that are hazardous to humans, and produces less waste. A drawback of strip-type drug test kits is that they depend on visual interpretation of the results, which can vary depending on user skill, lighting, and slight color changes. To address this limitation, this study implemented an analytical method that minimizes uncertainty and facilitates quantitative evaluation by utilizing images of color reaction outcomes from the newly developed strip-type drug test kit. Specifically, we developed an automatic discrimination algorithm using artificial intelligence (AI) image analysis techniques. Using a collection of 7,295 kit images, we evaluated the efficacy of several deep-learning models, including Convolutional Neural Network (CNN), Vision Transformer (ViT), and CNN-GRU (a hybrid of CNN and Gated Recurrent Unit). The findings indicated that the CNN-GRU model showed superior performance across all parameters, including accuracy, precision, recall, F1-score, and Cohen's kappa, achieving a perfect score of 1.0000. The model achieved perfect accuracy, surpassing the average performance of 32 police officers in a comparative experiment. This study demonstrated that AI-based precision reading algorithms can significantly improve the automation and reliability of strip-type drug test kits, highlighting their potential applicability and effectiveness in investigative and forensic settings. + Copyright © 2026. Published by Elsevier B.V. + + + + An + Sora + S + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. + + + + Lee + Joong + J + + Institute of AI and Big Data in Medicine, Yonsei University Wonju College of Medicine, Wonju 26426, the Republic of Korea. + + + + Lee + Sangki + S + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. + + + + Chung + Heesun + H + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. Electronic address: hschung1024@gmail.com. + + + + eng + + Journal Article + + + 2026 + 02 + 18 + +
+ + England + Sci Justice + 9508563 + 1355-0306 + + + + 0 + Reagent Strips + + + IM + + + Humans + + + Image Processing, Computer-Assisted + + + Artificial Intelligence + + + Substance Abuse Detection + instrumentation + methods + + + Algorithms + + + Convolutional Neural Networks + + + Intelligent Systems + + + Deep Learning + + + Reagent Strips + + + + AI-based precision + Artificial Intelligence (AI) + Deep-learning models + Image analysis + Strip-type drug test kit + + Declaration of competing interest the authors declare the following financial interests/personal relationships which may be considered as potential competing interests: Heesun Chung reports financial support was provided by Commercializations Promotion Agency for R&D Outcomes. If there are other authors, they declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 9 + 22 + + + 2025 + 12 + 30 + + + 2026 + 2 + 11 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215160 + 10.1016/j.scijus.2026.101408 + S1355-0306(26)00014-6 + + +
+ + + 42215144 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2162-9471 + + 133 + + 2026 + + + Advances in clinical chemistry + Adv Clin Chem + + Drug induced renal injury (DIRI) biomarkers. + + 1 + 44 + 1-44 + + 10.1016/bs.acc.2026.01.006 + S0065-2423(26)00020-X + + Drug-induced renal injury (DIRI) remains a substantial issue in clinical practice, contributing to high morbidity, mortality, socioeconomic and healthcare cost. Traditional markers, such as serum creatinine or blood urea nitrogen, have low specificity and sensitivity for early identification, underscoring the need for new reliable biomarkers. This chapter investigates biomarker improvements for DIRI, focusing on clinical uses, limitations, and future possibilities. The chapter examines biomarkers such as neutrophil gelatinase-associated lipocalin, kidney injury molecule-1, cystatin C, β2-microglobulin and clusterin for diagnosing nephrotoxicity. In addition, we highlight the role of proteomics and metabolomics in facilitating the identification and development of novel biomarker candidates via high-throughput ultra-sensitive technology in investigating DIRI mechanisms. The chapter discusses validation frameworks, regulatory criteria for biomarker adoption in clinical settings, and how they are integrated into treatment monitoring and personalized medicine. Case examples demonstrate the real-world applicability in early diagnosis, risk classification, and therapy optimization. Standardization, cost, and translational gaps are discussed, as well as the potential for artificial intelligence and machine learning to improve biomarker processing and interpretation. Finally, this chapter emphasizes the transformative potential of DIRI biomarkers in providing a pathway to more accurate and timely identification of renal injury, improved patient outcomes, and reduced healthcare costs. Future research and global collaboration are required to fully realize the potential of these advances in clinical and regulatory settings. + Copyright © 2026. Published by Elsevier Inc. + + + + Sher + Emina Karahmet + EK + + School of Science and Technology, Nottingham Trent University, Nottingham, United Kingdom; International Society of Engineering Science and Technology, Nottingham, United Kingdom. Electronic address: emina.karahmet@gmail.com. + + + + Boras + Marijana Marković + MM + + Department of Laboratory Diagnostics, University Clinical Hospital Mostar, Mostar, Bosnia and Herzegovina; International Society of Engineering Science and Technology, Nottingham, United Kingdom. + + + + Fajkić + Almir + A + + Department of Pathophysiology, Faculty of Medicine, University of Sarajevo, Sarajevo, Bosnia and Herzegovina. + + + + Begović + Faris + F + + International Society of Engineering Science and Technology, Nottingham, United Kingdom. + + + + eng + + Journal Article + Review + + + 2026 + 02 + 23 + +
+ + United States + Adv Clin Chem + 2985173R + 0065-2423 + + + + 0 + Biomarkers + + + 0 + Hepatitis A Virus Cellular Receptor 1 + + + 0 + Cystatin C + + + IM + + + Humans + + + Biomarkers + analysis + blood + + + Acute Kidney Injury + diagnosis + chemically induced + + + Proteomics + + + Metabolomics + + + Hepatitis A Virus Cellular Receptor 1 + + + Cystatin C + + + + Clinical chemistry + Cystatin c + Drug-induced renal injury biomarkers + Early diagnosis + Kidney injury molecule-1 + Metabolomics + Nephrotoxicity + Neutrophil gelatinase-associated lipocalin + Personalized medicine + Proteomics + +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215144 + 10.1016/bs.acc.2026.01.006 + S0065-2423(26)00020-X + + +
+ + + 42215142 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + A hybrid chemometric and deep learning model for monitoring quality loss in thermally processed edible oils. + + 119497 + 119497 + + 10.1016/j.foodres.2026.119497 + S0963-9969(26)01180-4 + + Edible oils are routinely exposed to high temperatures during domestic and commercial cooking, leading to chemical transformations that degrade the quality of oils and pose potential health risks. This study investigated the thermal degradation of groundnut, sesame, and restaurant-collected oils, with particular emphasis on polymerization, oxidation, and hydrolysis processes. Fourier-transform infrared (FTIR) spectroscopy and dielectric measurements were employed to monitor the molecular changes induced by heating the oils, whereas quantitative assessments of oil deterioration were performed using key chemical parameters and dielectric indices. Advanced chemometric and deep learning models like CARS-PLS, RF-PLS, and 1D-CNN were used to find the most important spectral regions and key chemical and dielectric features linked to oil degradation. Among these, the 1D-CNN model exhibited the highest predictive accuracy for both acid value (AV) and dielectric constant (DC), achieving training R2values of 0.9984 and 0.9931, and an external test R2values of 0.9904 and 0.9898, respectively, with the lowest RMSE. Heating oil shows the results with significant alterations in the FTIR bands, an increased dielectric constant, and elevated AV, corresponding to the accumulation of oxidized triglycerides, free fatty acids, and high-molecular-weight polymeric residues. Furthermore, explainable artificial intelligence (XAI) using SHAP analysis revealed key spectral contributions corresponding to ester groups, carbonyl stretching of triglycerides, free fatty acids, and CH₂/CH₃ vibrations. This study demonstrates that integrating spectroscopic and dielectric analyses with predictive modeling provides a sensitive, non-destructive laboratory-based proof-of-concept approach for evaluating the oil degradation during thermal processing. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Varma + Shruti O + SO + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. + + + + Vishwakarma + Ajay L + AL + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. + + + + Sonawane + M R + MR + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. Electronic address: smahadev123@gmail.com. + + + + Garad + Nitin P + NP + + School of Physical Sciences, Swami Ramanand Teerth Marathwada University, Nanded 431606, India. + + + + Kumbharkhane + A C + AC + + School of Physical Sciences, Swami Ramanand Teerth Marathwada University, Nanded 431606, India. + + + + eng + + Journal Article + + + 2026 + 05 + 20 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + + + 0 + Plant Oils + + + IM + + + Hot Temperature + + + Spectroscopy, Fourier Transform Infrared + + + Deep Learning + + + Cooking + methods + + + Plant Oils + chemistry + analysis + + + Food, Processed + + + Oxidation-Reduction + + + Hydrolysis + + + + Chemical properties + Chemometrics + Deep learning + Dielectric properties + Explainable artificial intelligence (XAI) + Thermal degradation + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 25 + + + 2026 + 5 + 17 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215142 + 10.1016/j.foodres.2026.119497 + S0963-9969(26)01180-4 + + +
+ + + 42215140 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Multimodal analysis of spontaneous speech for predicting food liking: Integrating linguistic and prosodic features with machine learning. + + 119483 + 119483 + + 10.1016/j.foodres.2026.119483 + S0963-9969(26)01166-X + + Spontaneous speech offers a promising yet underexplored window into consumers' emotional experiences during food evaluation. Unlike traditional self-reported measures, vocal expression captures both explicit linguistic content and implicit affective cues, potentially providing a richer account of hedonic perception. This study investigates whether linguistic and prosodic cues embedded in natural spoken responses can predict product liking. Ninety participants evaluated three chocolates and three plant-based beverages, providing hedonic ratings and open-ended spoken descriptions. Speech was analysed using psycholinguistic, prosodic, and representation-based features. Multiple machine learning algorithms were applied for both classification (low/medium vs high liking) and regression (continuous liking prediction). Feature-level comparisons showed that chocolates elicited richer emotional language, higher vocal intensity, and greater acoustic variability than plant-based drinks (p < 0.005). Across the full dataset, linguistic markers were the strongest predictors of liking (F1-score = 0.695; mean absolute error (MAE) = 1.530), while prosodic features provided complementary information related to arousal and engagement. Speech embeddings showed limited generalisation (area under the curve (AUC) < 0.518; MAE > 1.602). Product-specific analyses revealed higher predictive accuracy for chocolates (F1-score = 0.825; MAE = 1.213) than for plant-based beverages (F1-score = 0.559; MAE = 1.619), indicating that the strength of affective cues in speech depends on the emotional resonance of the product being evaluated. These findings demonstrate that spontaneous speech contains measurable emotional signals related to food liking. Interpretable linguistic and prosodic features can partially predict hedonic responses, highlighting the potential of multimodal, speech-based emotion analysis as a complementary tool in sensory and consumer research. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Sousa + Pedro M + PM + + GreenUPorto/Inov4Agro, DGAOT, Faculty of Sciences, University of Porto, Portugal. + + + + Lima + Rui C + RC + + Sense Test, Lda, Vila Nova de Gaia, Portugal. + + + + García-Segovia + Purificación + P + + i-Food, IUIA-FoodUPV, Universitat Politècnica de València, Spain. + + + + Alcañiz + Mariano + M + + LabLENI, HumanTech/LabLENI, Universitat Politècnica de València, València, Spain. + + + + Cunha + Luís M + LM + + GreenUPorto/Inov4Agro, DGAOT, Faculty of Sciences, University of Porto, Portugal. Electronic address: lmcunha@fc.up.pt. + + + + eng + + Journal Article + + + 2026 + 05 + 18 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Humans + + + Machine Learning + + + Speech + + + Food Preferences + psychology + + + Female + + + Emotions + + + Male + + + Young Adult + + + Cues + + + Adult + + + Linguistics + + + Consumer Behavior + + + + Acoustic features + Affective computing + Sensory analysis + Speech emotion + Supervised learning + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 4 + + + 2026 + 4 + 28 + + + 2026 + 5 + 16 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215140 + 10.1016/j.foodres.2026.119483 + S0963-9969(26)01166-X + + +
+ + + 42215133 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Translating Food Biosensing into Practice: Smart Packaging, On-Site Analytics, and AI Integration. + + 119473 + 119473 + + 10.1016/j.foodres.2026.119473 + S0963-9969(26)01156-7 + + The global food system encounters increasing challenges from contamination threats, necessitating innovative monitoring technologies to guarantee safety and quality. This review investigates novel precision monitoring methodologies, emphasizing sophisticated biosensing technologies, intelligent packaging systems, molecular docking, and AI-integrated platforms. Biosensors utilize electrochemical, optical, and thermal transducers for the swift, on-site identification of contaminants, toxins, and allergens, surpassing conventional methods in both speed and accessibility. The incorporation of intelligent packaging improves real-time quality assurance, while molecular docking determines contaminant interactions to improve sensor design. Advancements in AI and machine learning enhance predictive analytics and traceability, meeting intricate supply chain requirements. Nonetheless, obstacles such as matrix interference, sensor stability, and regulatory deficiencies remain. Future directions highlight nanotechnology, biodegradable materials, and defined standards to improve scalability and sustainability. These breakthroughs will continue to transform food safety, minimize waste, and enhance global health equity, thereby revolutionizing the food industry for a sustainable future. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Seyedhosseini-Ghaheh + Hooria + H + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. Electronic address: h.hosseini@nutr.mui.ac.ir. + + + + Rafieian + Fatemeh + F + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. + + + + Rezaei + Atefe + A + + School of Life Sciences, Plant Proteins and Nutrition, Technical University of Munich, Freising 85354, Germany. + + + + Askari + Gholamreza + G + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. + + + + Zarrabi + Ali + A + + Department of Biomedical Engineering, Faculty of Engineering and Natural Sciences, Istinye University, Istanbul 34396, Türkiye; Graduate School of Biotechnology and Bioengineering, Yuan Ze University, Taoyuan 320315, Taiwan. Electronic address: ali.zarrabi@istinye.edu.tr. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 16 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Biosensing Techniques + methods + + + Artificial Intelligence + + + Food Packaging + methods + + + Food Safety + methods + + + Food Contamination + analysis + + + Molecular Docking Simulation + + + Intelligent Systems + + + Humans + + + + Artificial Intelligence + Food biosensors + Molecular Docking + Smart Packaging + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 23 + + + 2026 + 4 + 24 + + + 2026 + 5 + 15 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215133 + 10.1016/j.foodres.2026.119473 + S0963-9969(26)01156-7 + + +
+ + + 42215117 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Artificial intelligence integrated in non-destructive technologies for monitoring food freshness: A review of next generation approach. + + 119450 + 119450 + + 10.1016/j.foodres.2026.119450 + S0963-9969(26)01132-4 + + Food freshness is a significant quality and safety attribute, which contributes in consumers' health and their food choices. The adoption of rapid, accurate, and reliable food freshness detection novel approaches is of great significance. Non-destructive testing (NDT) offers precise, fast and efficient detection of food freshness, quality and safety but, still confronts multiple issues in data preprocessing, accuracy, reliability and adaptability. However, artificial intelligence (AI) integration in NDT upholds significant promise to overcome these issues. This review, spotlights the significance of integrating the AI in NDT (spectroscopy, imaging and other technologies) for boosting the performance of NDT. It further probes the merits, and demerits, and the principles of AI assisted NDT technologies. Moving forward, integrating AI in NDT technologies have significantly boosted the reliable and accurate freshness detection in complex food matrices, plant and animal derived foods. In spite of recent advancements in this field of research, there are still several existing challenges of compatibility, precision, and adaptability associated with the NDT approaches coupled with AI. Therefore, this review is comprehensively emphasized on the promising transformative prospects of AI integrated in NDT approaches for the non-destructive, rapid, reliable and accurate detection of food freshness based on its quality indicators accompanied with highlighting the future challenges, innovations and directions. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Waseem + Muhammad + M + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China; Department of Food Science and Technology, Faculty of Agriculture and Environment, The Islamia University of Bahawalpur, 63100, Pakistan. + + + + Javed + Muhammad Rizwan + MR + + Department of Food Science and Technology, Faculty of Agriculture and Environment, The Islamia University of Bahawalpur, 63100, Pakistan. + + + + Manzoor + Muhammad Faisal + MF + + Guangdong Provincial Key Laboratory of Intelligent Food Manufacturing, School of Food Science and Engineering, Foshan University, Foshan, China. + + + + Xia + Xiuqi + X + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. + + + + Huang + Yilei + Y + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. + + + + Chen + Xiaomei + X + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. Electronic address: xmchen@jmu.edu.cn. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 14 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Artificial Intelligence + + + Food Analysis + methods + + + Humans + + + Food Quality + + + Animals + + + Intelligent Systems + + + + Artificial intelligence + Deep learning + Freshness + Machine learning + Rapid monitoring + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 22 + + + 2026 + 5 + 6 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215117 + 10.1016/j.foodres.2026.119450 + S0963-9969(26)01132-4 + + +
+ + + 42215102 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Towards sustainable serum-free media development from alternative sources for cultivated meat. + + 119434 + 119434 + + 10.1016/j.foodres.2026.119434 + S0963-9969(26)01116-6 + + The economic feasibility and scalability of cultivated meat (CM) is critically hindered by the high manufacturing costs, particularly the cost associated with cell culture media. Therefore, numerous studies have proposed the use of sustainable alternatives to replace the expensive cell culture media components, especially animal serum. In this review, we comprehensively surveyed such developments and interpreted the opportunities and limitations of animal serum-reduction or replacement methodologies in designing culture media for CM production. Among the various alternative sources investigated, plant-derived sources and recombinant proteins have been the most extensively studied. We also highlight the critical gaps in existing studies such as the lack of demonstration of scalability, cost-effectiveness and long-term applicability of proposed alternative sources. Subsequently, we provide a roadmap for future studies on how to demonstrate the proposed alternative does not have adverse effects on cellular long-term stability, as well as comply with food safety and regulatory standards while being cost-effective which are critical for large scale CM manufacturing. We further propose a two-pronged framework based on high-throughput screening, systems biology, and Machine Learning (ML) tools to optimize serum-free CM media formulations using alternative sources in a rapid and scalable manner. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Sivakumar + Sanjay + S + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Manayankath + Aparna + A + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Hong + Yi Fan + YF + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Biomedical Engineering, National University of Singapore, Singapore. + + + + Thrivikraman + Greeshma + G + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Tekkatte + Chandana + C + + The Good Food Institute India, Bengaluru, India. + + + + Choudhury + Deepak + D + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Food Science and Technology, National University of Singapore, Singapore; Bezos Centre for Sustainable Protein at the National University of Singapore, Singapore. Electronic address: Deepak_Choudhury@a-star.edu.sg. + + + + Pang + Kuin Tian + KT + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Biomedical Engineering, National University of Singapore, Singapore; Bioinformatics Institute, Agency for Science, Technology and Research (A*STAR), Singapore, Singapore; School of Chemistry, Chemical Engineering and Biotechnology, Nanyang Technological University, Singapore. Electronic address: zach_pang@a-star.edu.sg. + + + + Lakshmanan + Meiyappan + M + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India; Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Wadhwani School of Data Science and AI (WSAI), Indian Institute of Technology Madras, Chennai, India; Centre for Integrative Biology and Systems medicinE (IBSE), Indian Institute of Technology Madras, Chennai, India. Electronic address: meiyappan@iitm.ac.in. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 13 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + + + 0 + Culture Media, Serum-Free + + + IM + + + In Vitro Meat + + + Animals + + + Culture Media, Serum-Free + chemistry + + + Meat Substitutes + + + + Alternative proteins + Animal serum alternatives + Cultivated meat + Serum-free media + Sustainability + Systems biology + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 11 + + + 2026 + 3 + 21 + + + 2026 + 5 + 9 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215102 + 10.1016/j.foodres.2026.119434 + S0963-9969(26)01116-6 + + +
+ + + 42214983 + + 2026 + 05 + 29 + +
+ + 1879-3363 + + 231 + + 2026 + May + 29 + + + Marine pollution bulletin + Mar Pollut Bull + + Deep learning-based prediction of trace silver concentrations in marine sediments from mid-infrared spectroscopy. + + 119930 + 119930 + + 10.1016/j.marpolbul.2026.119930 + S0025-326X(26)00717-4 + + Silver (Ag) is a biologically toxic element, and the rapid detection of its concentrations in environmental samples is thus of great importance. This study investigates mid-infrared (MIR) spectra of low-Ag sediments from the South China Sea (SCS), and successfully predicts Ag concentrations by three machine learning models, including Kennard Stone-competitive adaptive reweighted sampling-partial least squares regression (KS-CARS-PLSR), Kennard Stone-random forest (KS-RF), and random selecting-squeeze excitation attention-residual network (RS-SE-ResNet-1D). Among the three techniques, the RS-SE-ResNet-1D model performs best in terms of Ag prediction, achieving an R2 of 0.82, an RMSE of 0.03, and an RPD of 2.38. A common feature wavenumber band in the range of 1408.3-1408.7 cm-1, corresponding to the v3 symmetric stretching absorption band of carbonate ions (CO3 + 2-), is identified from all three models. This suggests that marine productivity is possibly the dominant factor controlling Ag levels in marine sediments of the SCS. The machine learning models based on MIR spectral data developed in this study provide a new analytical approach for determining Ag concentrations in low-Ag marine sediments, and offer new insights into the study of biogeochemical cycling of Ag. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Yu + Boyuan + B + + School of Resources and Environmental Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + Xu + Liqiang + L + + School of Resources and Environmental Engineering, Hefei University of Technology, Hefei, Anhui, China. Electronic address: xlq@hfut.edu.cn. + + + + Ning + Yu + Y + + Instrumental Analysis Center, Hefei University of Technology, Hefei, Anhui, China. + + + + Xu + Fang + F + + School of Food and Biological Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + Han + Qingli + Q + + School of Food and Biological Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Mar Pollut Bull + 0260231 + 0025-326X + + IM + + Machine learning + Marine sediments + Mid-infrared spectra + Productivity + Silver + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 28 + + + 2026 + 5 + 23 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 19 + 52 + + + aheadofprint + + 42214983 + 10.1016/j.marpolbul.2026.119930 + S0025-326X(26)00717-4 + + +
+ + + 42214978 + + 2026 + 05 + 29 + +
+ + 1878-0539 + + 118 + + 2026 + May + 14 + + + Journal of plastic, reconstructive & aesthetic surgery : JPRAS + J Plast Reconstr Aesthet Surg + + Development and nested cross-validation of machine learning models for predicting transfusion requirements in pediatric craniosynostosis surgery. + + 209 + 220 + 209-220 + + 10.1016/j.bjps.2026.05.033 + S1748-6815(26)00288-3 + + Blood transfusion is common during pediatric craniosynostosis surgery; however, transfusion volumes and use of cell salvage systems can vary considerably. To support preoperative transfusion planning in patients undergoing craniectomy for craniosynostosis, we developed and internally validated machine learning (ML) models to predict perioperative transfusion risks and transfusion volumes in this patient population. Data from eligible patients ≤36 months of age from the NSQIP® Pediatric dataset were included for modeling. A classifier pipeline was developed to predict probabilities associated with transfusion risk, and a probabilistic/quantile regression pipeline was developed to predict the median transfusion volume (in mL/kg) with interquartile range. Performance of the modeling pipelines was evaluated using nested cross-validation with 5-fold outer loops. In total, 8045 patients were included with 4091 (50.9%) receiving perioperative transfusion. For the classification pipeline, the optimal model configuration was a LightGBM classifier. The modeling pipeline achieved a mean area under the receiver operating characteristic curve (AUC-ROC) of 0.77 (95% confidence interval [CI] 0.75-0.78) and mean Brier score of 0.20 (95% CI 0.19-0.20) across nested cross-validation. For the regression stage, the optimal model configuration was a probabilistic NGBoost regressor. The modeling pipeline achieved an average median absolute error of 6.86 mL/kg (95% CI 6.61-7.11), with a mean IQR coverage of 53% (95% CI 52-53%). These models may support individualized blood product preparation and selective use of cell salvage systems. External validation and further real-world testing are needed prior to the clinical implementation of this tool. + Copyright © 2026 British Association of Plastic, Reconstructive and Aesthetic Surgeons. Published by Elsevier Ltd. All rights reserved. + + + + Deng + Jiawen + J + + Temerty Faculty of Medicine, University of Toronto, Toronto, ON, Canada. + + + + Gharavi + Aidin + A + + Mayo Clinic Alix School of Medicine, Mayo Clinic, Rochester, MN, USA. + + + + Heybati + Kiyan + K + + Department of Internal Medicine, Mayo Clinic, Rochester, MN, USA. + + + + Haile + Dawit + D + + Department of Anesthesiology, Mayo Clinic, Rochester, MN, USA. + + + + Ahn + Edward S + ES + + Department of Neurosurgery, Mayo Clinic, Rochester, MN, USA. + + + + Mardini + Samir + S + + Division of Plastic Surgery, Department of Surgery, Mayo Clinic, Rochester, MN, USA. + + + + Gibreel + Waleed + W + + Division of Plastic Surgery, Department of Surgery, Mayo Clinic, Rochester, MN, USA; Department of Pediatric and Adolescents Medicine, Mayo Clinic, Rochester, MN, USA. Electronic address: Gibreel.Waleed@mayo.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Netherlands + J Plast Reconstr Aesthet Surg + 101264239 + 1748-6815 + + IM + + Blood transfusion + Craniectomy + Craniosynostoses + Machine learning + Operative blood salvage + + Declaration of Competing Interest The authors declare no conflict of interest. The ACS-NSQIP® and participating hospitals are the source of this data; they have not verified nor are they responsible for the statistical validity of the data analysis or the conclusions derived by the authors. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 9 + + + 2026 + 4 + 20 + + + 2026 + 5 + 12 + + + 2026 + 5 + 29 + 19 + 52 + + + aheadofprint + + 42214978 + 10.1016/j.bjps.2026.05.033 + S1748-6815(26)00288-3 + + +
+ + + 42214919 + + 2026 + 05 + 29 + +
+ + 1090-2104 + + 827 + + 2026 + May + 25 + + + Biochemical and biophysical research communications + Biochem Biophys Res Commun + + Employing network toxicology, molecular docking, machine learning, and single-cell analysis to analyze BPA exposure-induced ccRCC. + + 154037 + 154037 + + 10.1016/j.bbrc.2026.154037 + S0006-291X(26)00801-6 + + This study investigates the molecular mechanisms underlying bisphenol A (BPA)-induced clear cell renal cell carcinoma (ccRCC). We integrated transcriptomic data from multiple GEO datasets and performed differential expression analysis and WGCNA to identify BPA-associated candidate genes. Enrichment analyses implicated pathways including cell adhesion, lipid metabolism, arachidonic acid signaling, and innate immune response. Using twelve machine learning algorithms, we identified four core genes (ITGB2, TBXAS1, LIPA, and CLEC7A), all upregulated in ccRCC. Molecular docking suggested stable BPA-protein interactions with favorable binding energies. Single-cell analysis showed predominant expression of these genes in monocytes and macrophages. LIPA was elevated in kidney cancer tissues and associated with clinical outcomes. In vitro experiments confirmed that BPA exposure promoted ccRCC cell progression by regulating core gene expression. This integrated approach offers new insights into the molecular mechanisms of BPA-induced ccRCC and identifies potential biomarkers for environmental risk assessment. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Chen + Jianyu + J + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China. + + + + Wu + Lianquan + L + + Department of Urology, Longgang People's Hospital, Wenzhou, 325000, China. + + + + Jin + Haoqi + H + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China. + + + + Li + Yeping + Y + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China; Institute of Urology, Wenzhou Medical University, Wenzhou, 325000, China. Electronic address: liypwz@126.com. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + United States + Biochem Biophys Res Commun + 0372516 + 0006-291X + + IM + + Bisphenol A + Clear cell renal cell carcinoma + Machine learning + Molecular docking + Single-cell analysis + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 22 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 19 + 51 + + + aheadofprint + + 42214919 + 10.1016/j.bbrc.2026.154037 + S0006-291X(26)00801-6 + + +
+ + + 42214908 + + 2026 + 05 + 29 + +
+ + 1876-035X + + 19 + 7 + + 2026 + May + 25 + + + Journal of infection and public health + J Infect Public Health + + The Italian hand hygiene project: A joint-commission Italian network analysis. + + 103268 + 103268 + + 10.1016/j.jiph.2026.103268 + S1876-0341(26)00140-1 + + Hand hygiene (HH) is a straightforward yet highly effective preventive measure against healthcare-associated infections; however, global compliance remains suboptimal. This study analyzed a substantial Italian dataset, focusing on adherence to HH guidelines among healthcare professionals, and identified key factors influencing compliance. + Direct multi- wave cross-sectional observational data on hand hygiene from over 749,000 opportunities were collected between 2017 and 2024 across 30 Italian hospitals participating in the Joint Commission International Hand Hygiene Project. Traditional statistical analyses and supervised machine learning (ML) models were employed to evaluate compliance rates and to examine their association with the year of observation, clinical area, professional role, and patient interaction moment (opportunity). Additionally, ML models were implemented to support proactive, risk- based surveillance within hospital settings by identifying high- risk contexts and facilitating more targeted monitoring strategies. + Overall hand hygiene compliance increased from 73.5% in 2017-82% in 2024, surpassing the World Health Organization's (WHO) target of 80% from 2020 onwards. Nursing staff demonstrated the highest adherence. High-risk opportunities, such as pre-aseptic procedures and post-exposure to bodily fluids, exhibited higher compliance than other moments. Emergency departments recorded the lowest compliance rates (76.3%). ML models confirmed that the year, patient interaction moment, and professional role are the most significant predictors of adherence. The most effective ML model achieved an accuracy of 64.6% in classifying hand hygiene actions. + This analysis underscores an improving trend in hand hygiene practices within Italian hospitals and concurrently identifies specific contexts-such as emergency departments-that require targeted interventions. The integration of observational monitoring with predictive artificial intelligence models could facilitate proactive, risk-based surveillance and focused improvement strategies. Accreditation-driven, multi-modal initiatives like this project highlight the vital role of measurement in fostering a culture of hand hygiene and advancing patient safety. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Buja + A + A + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. Electronic address: alessandra.buja@unipd.it. + + + + Damiani + G + G + + Center of Research in Precision Medicine and Chronic Inflammation, Department of Biomedical, Surgical and Dental Sciences, University of Milan, Milan 20122, Italy; Fondazione IRCCS Ca' Granda Ospedale Maggiore Policlinico, Milan 20122, Italy. + + + + Tangherloni + A + A + + Center of Research in Precision Medicine and Chronic Inflammation, Department of Biomedical, Surgical and Dental Sciences, University of Milan, Milan 20122, Italy; Department of Computing Sciences, Bocconi University, Milan 20136, Italy. + + + + Manfredi + M + M + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. + + + + Lanza + G + G + + Network Joint Commission Italia, Italy. + + + + Palmeri + C + C + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + England + J Infect Public Health + 101487384 + 1876-0341 + + IM + + Hand hygiene + Health Care Associated Infection + Hospital infection + Nosocomial infection + Prevention and control + + Declaration of Competing Interest The authors declare that there are no conflicts of interest regarding the publication of this manuscript. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 1 + 13 + + + 2026 + 5 + 11 + + + 2026 + 5 + 19 + + + 2026 + 5 + 29 + 19 + 50 + + + aheadofprint + + 42214908 + 10.1016/j.jiph.2026.103268 + S1876-0341(26)00140-1 + + +
+ + + 42214885 + + 2026 + 05 + 29 + +
+ + 1879-0771 + + 132 + + 2026 + May + 24 + + + Computerized medical imaging and graphics : the official journal of the Computerized Medical Imaging Society + Comput Med Imaging Graph + + An interpretable multimodal model integrating clinical, spectral CT imaging, and deep learning analysis of intra- and peritumoral regions for preoperative prediction of perineural invasion in gastric cancer: A prospective, multicenter study. + + 102776 + 102776 + + 10.1016/j.compmedimag.2026.102776 + S0895-6111(26)00079-0 + + Perineural invasion (PNI) is crucial for risk stratification and treatment planning. This study aims to develop a novel multimodal model for preoperative prediction of PNI in gastric cancer. + A total of 250 patients with pathologically confirmed gastric cancer from multiple centers were enrolled and divided into a training cohort (n = 138), an internal validation cohort (n = 59), and an external validation cohort (n = 53). Spectral CT parameters from both intra- and peritumoral regions were acquired using the GSI viewer software, while deep learning features were extracted via a ResNet-50 architecture. Clinical features were screened through univariate and multivariate regression analyses. Based on machine learning, we developed a spectral parameter model, a deep learning feature model, a clinical prediction model, and a multimodal fusion model (MFM). The predictive performance of the models was evaluated using calibration curves, receiver operating characteristic curves, and decision curve analysis (DCA). Model interpretability was achieved by employing Shapley Additive exPlanations (SHAP). + Compared with individual models, MFM demonstrated the best predictive performance, with area under the curve (AUC) values of 0.926, 0.885, and 0.871 in the training, internal validation, and external validation cohorts, respectively. DCA confirmed that MFM provided a higher net benefit over a wide range of threshold probability. Calibration curve showed MFM had better predictive consistency, and the Hosmer-Lemeshow test indicated good fit across all cohorts (all p-values > 0.05). SHAP effectively interpreted the decision-making process of the model. + The novel multimodal fusion model, which integrates clinical, spectral CT parameters, and deep learning features from intra- and peritumoral regions, demonstrated outstanding performance in preoperatively predicting PNI in gastric cancer. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Zhao + Yuncong + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China. + + + + Chen + Lihong + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. + + + + Wang + Lili + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Clinical Research Center for Radiology and Radiotherapy of Fujian Province (Digestive, Hematological and Breast Malignancies), Fuzhou 350001, China. + + + + Yue + Wenjing + W + + The Fourth Clinical College, Henan Medical University, Xinxiang, 453003, China. + + + + Zeng + Deye + D + + Department of Pathology, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + You + Yaru + Y + + Department of Radiology, The First Affiliated Hospital of Zhengzhou University, Zhengzhou 450052, China; Henan Key Laboratory of Image Diagnosis and Treatment for Digestive System Tumor, Zhengzhou 450052, China; Henan Key Laboratory of CT Imaging, Zhengzhou 450052, China. + + + + Weng + Caiming + C + + Department of Gastric Surgery, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + Li + Weixing + W + + Department of Radiology, Xinxiang Central Hospital, The Fourth Clinical College, Henan Medical University, Xinxiang, 453003, China. + + + + Chen + Yilin + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + Lin + Lin + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. Electronic address: linlin@fjmu.edu.cn. + + + + Xu + Haiping + H + + School of Computer and Data Science, Minjiang University, Fuzhou 350108, China. Electronic address: haiping@mju.edu.cn. + + + + Xue + Yunjing + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. Electronic address: xueyunjing@fjmu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 24 + +
+ + United States + Comput Med Imaging Graph + 8806104 + 0895-6111 + + IM + + Deep learning + Gastric cancer + Peripheral nerve invasion + SHAP + Spectral CT + + Declaration of Competing Interest The authors have no relevant financial or non-financial interests to disclose. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 10 + 15 + + + 2026 + 4 + 27 + + + 2026 + 5 + 13 + + + 2026 + 5 + 29 + 19 + 50 + + + aheadofprint + + 42214885 + 10.1016/j.compmedimag.2026.102776 + S0895-6111(26)00079-0 + + +
+ + + 42214863 + + 2026 + 05 + 29 + +
+ + 1873-3336 + + 513 + + 2026 + May + 28 + + + Journal of hazardous materials + J Hazard Mater + + Advances in multispectral and hyperspectral inversion for soil heavy metal contamination: Mechanisms, machine learning algorithms, and future perspectives. + + 142542 + 142542 + + 10.1016/j.jhazmat.2026.142542 + S0304-3894(26)01520-7 + + Heavy metal (HM) contamination in soil exhibits insidious and cumulative effects, posing long-term risks to ecosystems and human health. Traditional field sampling and laboratory analysis are increasingly insufficient for large-scale continuous monitoring, driving the adoption of multispectral (MS) and hyperspectral (HS) remote sensing. Bibliometric analysis reveals clear research trends: target elements are primarily copper, lead, and zinc, while data acquisition has progressively shifted from laboratory spectroscopy to portable devices and satellite platforms, reflecting an expansion from local to regional scales. This has led to increasing data complexity and greater demands on model robustness and generalization. However, expanding the spatial scale and transitioning to satellite observations introduce fundamental challenges. Mixed pixels and moisture-induced spectral distortions reduce signal purity, while the indirect spectral response of HMs further complicates quantitative inversion. Sample scarcity and spatial heterogeneity also limit cross-regional generalization, constraining model robustness and stability. In response, models have evolved from traditional linear regression to ensemble learning methods such as Extreme Gradient Boosting (XGBoost), and further to deep learning frameworks, including Convolutional Neural Networks (CNN) and Transformers, enabling hierarchical feature extraction and task-oriented structural design. This paper reviews the key technical bottlenecks in soil HM spectral inversion, integrating bibliometric insights with methodological advances to provide a comprehensive framework for understanding current progress and guiding future developments in large-scale, high-precision inversion. + Copyright © 2026 Elsevier B.V. All rights reserved. + + + + Huang + Minghao + M + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China. + + + + Wu + Xiang + X + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China; Key Laboratory of Danjiangkou Reservoir Area's Aquatic Eco-Environment and Health, Shiyan City (Hanjiang Normal University), Shiyan 442000, China. + + + + Peng + Qian + Q + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China; Key Laboratory of the Evaluation and Monitoring of Southwest Land Resources (Ministry of Education), Sichuan Normal University, Chengdu 610068, China. Electronic address: qianpeng@hubu.edu.cn. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 28 + +
+ + Netherlands + J Hazard Mater + 9422688 + 0304-3894 + + IM + + Hyperspectral + Indirect Inversion Mechanisms + Machine learning + Multispectral + Soil Heavy metals + Spectral Feature Selection + + Declaration of Competing Interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 2 + 21 + + + 2026 + 5 + 25 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 19 + 49 + + + aheadofprint + + 42214863 + 10.1016/j.jhazmat.2026.142542 + S0304-3894(26)01520-7 + + +
+ + + 42214786 + + 2026 + 05 + 29 + +
+ + 1876-4754 + + + 2026 + May + 28 + + + Brain stimulation + Brain Stimul + + EEG Biomarkers of Accelerated Prolonged Intermittent Theta-Burst Stimulation in Depression: Machine Learning with a Minimal-Electrode Montage. + + 103135 + 103135 + + 10.1016/j.brs.2026.103135 + S1935-861X(26)00112-9 + + + Chang + Chun-Hung + CH + + An Nan Hospital, China Medical University, Tainan, Taiwan; Institute of Clinical Medical Science, China Medical University, Taichung, Taiwan; Shu-Zen Junior College of Medicine and Management, Tainan, Taiwan. + + + + Sack + Alexander T + AT + + Department of Cognitive Neuroscience, Faculty of Psychology and Neuroscience, Maastricht University, Maastricht, The Netherlands; Department of Psychiatry and Neuropsychology, School for Mental Health and Neuroscience (MHeNs), Brain+Nerve Centre, Maastricht University Medical Centre (MUMC), The Netherlands. + + + + Chu + Che-Sheng + CS + + Department of Psychiatry, Kaohsiung Veterans General Hospital, Kaohsiung, Taiwan; Non-Invasive Neuromodulation Consortium for Mental Disorders, Society of Psychophysiology, Taipei, Taiwan; Graduate Institute of Medicine, College of Medicine, Kaohsiung Medical University, Kaohsiung, Taiwan. Electronic address: youngtzuchi@hotmail.com. + + + + Chang + Hsin-An + HA + + Non-Invasive Neuromodulation Consortium for Mental Disorders, Society of Psychophysiology, Taipei, Taiwan; Department of Psychiatry, Tri-Service General Hospital, National Defense Medical University, Taipei, Taiwan. Electronic address: chang.ha@mail.ndmctsgh.edu.tw. + + + + eng + + Letter + + + 2026 + 05 + 28 + +
+ + United States + Brain Stimul + 101465726 + 1876-4754 + + IM + + EEG biomarkers + accelerated piTBS + brain stimulation + machine learning + major depressive disorder + resting-state electroencephalography + + Declaration of Competing Interest ☒The authors declare the following financial interests/personal relationships which may be considered as potential competing interests: The authors declare the following financial interests/personal relationships which may be considered as potential competing interests: ATS is director of the Academy of Brain Stimulation (www.brainstimulation-academy.com) and the International Clinical TMS Certification Course (www.tmscourse.eu), receiving equipment support from MagVenture, MagStim, Deymed, Yingchi, Brainsway. He also serves as scientific advisor for Platoscince Medical and Alpha Brain Technologies. Other authors declare that they have no competing financial interests or personal relationships that could be perceived to have influenced the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 23 + + + 2026 + 5 + 25 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 19 + 35 + + + aheadofprint + + 42214786 + 10.1016/j.brs.2026.103135 + S1935-861X(26)00112-9 + + +
+ + + 42214688 + + 2026 + 05 + 29 + +
+ + 1878-1632 + + + 2026 + May + 28 + + + The spine journal : official journal of the North American Spine Society + Spine J + + From Three to Eight Clusters: A Machine Learning-Based Classification of Operated Adult Spinal Deformity Patients. + S1529-9430(26)00157-9 + 10.1016/j.spinee.2026.05.003 + + Adult spinal deformity (ASD) is a heterogeneous condition encompassing diverse etiologies, clinical presentations, and surgical challenges. While previous unsupervised learning models have stratified ASD patients into three broad phenotypes, these often lack clinical granularity for surgical decision-making. + To refine the classification of operated ASD patients using unsupervised machine learning and assess whether expanding from 3 to 8 clusters improves clinical discrimination and predictive robustness. + Retrospective multicenter study using machine learning clustering. + 471 adult patients who underwent surgery for ASD across six specialized spine centers. + ODI, SRS-22, spinal alignment metrics, surgical strategy, and postoperative complications. + A k-means clustering algorithm was applied to a selected set of 12 demographic, radiographic, and functional variables (C12). Clustering solutions with 3 and 8 groups were compared. Each cluster was analyzed for age, etiology, disability scores (ODI, SRS-22), spinal alignment, surgical strategy, and complication rates. Predictive models using LDA and KNN assessed classification accuracy for new patient assignment. + The 8-cluster model identified clinically distinct phenotypes, including subgroups of young patients with idiopathic scoliosis, structural hyperkyphosis, and early sagittal decompensation. In elderly patients, clusters differentiated pain profiles, alignment, and frailty. The most severe clusters distinguished coronal-dominant versus sagittal collapse deformities, with differing risks and outcomes. LDA maintained robust accuracy (91.4%) in predicting cluster assignment across 50 testing splits, outperforming KNN. + To our knowledge, this is among the most granular unsupervised ML-based phenotypic classifications of operated ASD patients reported to date. This refined 8-cluster model enhances clinical phenotyping in ASD surgery, offering more precise subgroup stratification than traditional 3-cluster models. It supports the integration of unsupervised learning into personalized surgical planning, risk stratification, and multicenter outcome trials. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Roscop + Cecile + C + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. Electronic address: cecile.roscop@gmail.com. + + + + Bourghli + Anouar + A + + Spine Surgery Department, King Faisal Specialist Hospital and Research Center, Riyadh, Saudi Arabia. + + + + Baroncini + Alice + A + + Casa di Cura Humanitas San Pio X, Milano, Italy. + + + + Alanay + Ahmet + A + + Spine Center, Acibadem University School of Medicine, Istanbul, Turkey. + + + + Pellise + Ferran + F + + Spine Surgery Unit, Vall D'Hebron Hospital, Barcelona, Spain. + + + + Kleinstueck + Frank + F + + Schulthess Klinik, Zürich, Switzerland. + + + + Pizones + Javier + J + + Spine Surgery Unit, Hospital Universitario La Paz, Madrid, Spain. + + + + Charles + Yann-Philippe + YP + + Hôpitaux Universitaires de Strasbourg, France. + + + + Larrieu + Daniel + D + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + Boissière + Louis + L + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + Obeid + Ibrahim + I + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + European Spine Study Group (ESSG) + + No institution. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + Spine J + 101130732 + 1529-9430 + + IM + + Adult spinal deformity + Clustering + K-means algorithm + Machine learning + Phenotyping + Predictive modeling + Surgical planning + + Declaration of competing interest The authors declare no competing interests. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 12 + 11 + + + 2026 + 5 + 15 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 19 + 34 + + + aheadofprint + + 42214688 + 10.1016/j.spinee.2026.05.003 + S1529-9430(26)00157-9 + + +
+ + + 42214660 + + 2026 + 05 + 29 + +
+ + 1878-3511 + + + 2026 + May + 28 + + + International journal of infectious diseases : IJID : official publication of the International Society for Infectious Diseases + Int J Infect Dis + + Investigating Infection and Clinical Data to Predict Effective Antibiotic Therapy and Monitor Resistance Trends. + + 108842 + 108842 + + 10.1016/j.ijid.2026.108842 + S1201-9712(26)00477-7 + + Data-driven approaches to effectively select antibiotics are crucial to improving patient outcomes and reducing antibiotic resistance. This study aimed to determine whether routinely collected clinical and microbiological data can be used to train machine learning (ML) models to predict antibiotic resistance in patients with bacterial infections. + We conducted a retrospective observational study on clinical data from two separate Italian hospitals, analyzing 15,581 bacterial isolates collected from 9,966 patients between 2018 and 2024 at a multi-department hospital located in Rome and secondary clinic located in Capranica, about 70 Km away from Rome. Multiple ML models were trained, using both unbalanced and SMOTE-balanced datasets. Performance was assessed using cross-validation and independent test sets, comprising 2023-2024 isolates. Performance was measured using the Area Under the Receiver Operating Characteristic curve (AUROC), F1 score, accuracy, precision, and recall. + XGBoost consistently outperformed other trained models, achieving AUROCs of 0.882 and 0.878 for Gram-positive and Gram-negative datasets, respectively. Species-specific models further improved discrimination, reaching AUROC scores up to 0.946 for P. aeruginosa, 0.941 for K. pneumoniae, 0.938 for E. faecalis, 0.919 for E. coli, 0.894 for P. mirabilis, and 0.891 for S. aureus. + These results demonstrate the utility of ML models in accurately predicting antibiotic susceptibility from routine clinical data, thus facilitating rapid initiation of targeted therapy. Such an approach can potentially reduce treatment delays by up to 48 hours compared to traditional diagnostic methods, presenting a useful tool to manage patients in critical conditions and combat antibiotic resistance in clinical practice. + Copyright © 2026. Published by Elsevier Ltd. + + + + Benedetto + Marco + M + + Department of Management and Innovation Systems, University of Salerno, Fisciano (SA) 84084, Italy; Kelyon S.r.l., via Benedetto Brin, 59 C5/C6, 80100 Naples, Italy. + + + + Piccinni + Giuseppe + G + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + De Leo + Cristina + C + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Cirielli + Corrado + C + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Facchiano + Francesco + F + + Department of Oncology and Molecular Medicine, Istituto Superiore di Sanità, Rome, Italy. + + + + Facchiano + Angelo + A + + Laboratory of Bioinformatics and Computational Biology, Institute of Food Science, CNR, via Roma 52 A/C, 83100 Avellino, Italy. + + + + Panebianco + Annarita + A + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Tagliaferri + Stefano + S + + Kelyon S.r.l., via Benedetto Brin, 59 C5/C6, 80100 Naples, Italy. + + + + La Rocca + Michele + M + + Department of Economics and Statistics, University of Salerno, Fisciano (SA) 84084, Italy. + + + + Marchetti + Paolo + P + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Tagliaferri + Roberto + R + + Department of Management and Innovation Systems, University of Salerno, Fisciano (SA) 84084, Italy. + + + + Facchiano + Antonio + A + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy; Department of Life Sciences, Health and Health Professions, Link University, 00165 Rome, Italy. Electronic address: a.facchiano@idi.it. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + Canada + Int J Infect Dis + 9610933 + 1201-9712 + + IM + + Antimicrobial resistance + antibiotic susceptibility prediction + antimicrobial stewardship + machine learning + precision medicine + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2025 + 11 + 28 + + + 2026 + 4 + 17 + + + 2026 + 5 + 26 + + + 2026 + 5 + 29 + 19 + 33 + + + aheadofprint + + 42214660 + 10.1016/j.ijid.2026.108842 + S1201-9712(26)00477-7 + + +
+ + + 42214547 + + 2026 + 05 + 29 + +
+ + 1873-6424 + + + 2026 + May + 28 + + + Environmental pollution (Barking, Essex : 1987) + Environ Pollut + + Machine-learning-based estimation of ground-level NO2 concentrations across Southeastern Europe using multi-source satellite, reanalysis, and emission data. + + 128461 + 128461 + + 10.1016/j.envpol.2026.128461 + S0269-7491(26)00831-6 + + Reliable estimation of ground-level nitrogen dioxide (NO2) remains challenging due to limited monitoring coverage and complex interactions among emissions, meteorology, and land-use factors. This study develops a machine-learning framework to estimate surface NO2 concentrations across Southeastern Europe, covering thirteen countries with diverse emission sources and sparse monitoring networks. Daily NO2 observations from 317 monitoring stations were integrated with multiple satellite and ancillary datasets, including tropospheric NO2 from Sentinel-5P TROPOMI, vegetation indices from MODIS, and nighttime light data from VIIRS. Additional inputs included meteorological variables from ERA5, anthropogenic emissions from EDGAR v8.1, land-use data from Copernicus Corine Land Cover, elevation from the Copernicus Digital Elevation Model, and population density from the Global Human Settlement Layer. All datasets were processed and harmonized using Google Earth Engine. Three Gradient Boosting Decision Tree models (XGBoost, LGBM, and CatBoost) were trained and optimized with Optuna. Model performance was assessed using 10-fold cross-validation and independent test sets with R2, MAE, and RMSE metrics. All models performed consistently, with LGBM achieving the best results (R2 = 0.86; MAE = 5.34 μg/m3; RMSE = 8.32 μg/m3). SHapley Additive exPlanations (SHAP) identified key predictors and improved interpretability. Seasonal analysis showed higher accuracy in summer and autumn than in winter and spring. These results demonstrate that integrating multi-source data with advanced machine learning enables reliable surface NO2 estimation in regions with limited monitoring, supporting air quality assessment, exposure analysis, and evidence-based policymaking in Southeastern Europe. + Copyright © 2026. Published by Elsevier Ltd. + + + + Bilgiç + Efem + E + + Department of Environmental Engineering, Faculty of Engineering, Dokuz Eylul University, Izmir, Türkiye. Electronic address: efem.bilgic@deu.edu.tr. + + + + Elbir + Tolga + T + + Department of Environmental Engineering, Faculty of Engineering, Dokuz Eylul University, Izmir, Türkiye; Environmental Research and Application Center (CEVMER), Dokuz Eylul University, Izmir, Türkiye. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + England + Environ Pollut + 8804476 + 0269-7491 + + IM + + Nitrogen dioxide + Southeastern Europe + air quality modeling + machine learning + satellite data integration + + Declaration of Competing Interest ☒ The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 1 + 26 + + + 2026 + 5 + 24 + + + 2026 + 5 + 28 + + + 2026 + 5 + 29 + 19 + 32 + + + aheadofprint + + 42214547 + 10.1016/j.envpol.2026.128461 + S0269-7491(26)00831-6 + + +
+ + + 42214540 + + 2026 + 05 + 29 + +
+ + 1873-6424 + + + 2026 + May + 28 + + + Environmental pollution (Barking, Essex : 1987) + Environ Pollut + + Nonlinear meteorological controls on coastal air quality along the Indian East Coast: Insights from a multi-city interpretable machine learning framework. + + 128448 + 128448 + + 10.1016/j.envpol.2026.128448 + S0269-7491(26)00818-3 + + This study investigates the role of meteorological variability in shaping ambient air quality across five coastal cities along the Indian East Coast (Haldia, Balasore, Visakhapatnam, Chennai, and Puducherry). Despite their shared coastal setting, the cities exhibit pronounced meteorological heterogeneity, leading to a clear latitudinal gradient in air pollution, with northern cities (Haldia and Balasore) experiencing substantially higher particulate matter concentrations and more frequent exceedances than southern cities (Chennai and Puducherry). Across all cities, PM10 is the dominant contributor to variability in Air Quality Index (AQI) variability. A Random Forest model reveals that meteorological parameters explain a substantial fraction of particulate matter variability (R2 up to ∼0.6), whereas gaseous pollutants show lower predictability (R2 < 0.35). Using Shapley Additive exPlanations (SHAP) analysis, we identify critical nonlinear thresholds and binary regime switches governing pollutant accumulation. A consistent regional specific humidity (SH) threshold of ∼15 ± 2 g/kg is identified as a key regime-switching threshold, with values below this level consistently associated with PM10 accumulation across all cities. In southern cities, a Sea Breeze Component (SBC) > 3 m/s is the threshold for coastal ventilation; below this level, pollutants remain trapped. Furthermore, we uncover a monsoon break thermal trap, in which temperatures exceeding 32 °C flip the expected seasonal dispersion into an accumulation regime. These findings demonstrate that coastal air quality is governed by discrete meteorological regime transitions rather than linear responses. The identified thresholds provide a physically interpretable framework for improving localized air quality forecasting and mitigation strategies in complex coastal environments. + Copyright © 2026. Published by Elsevier Ltd. + + + + Varaprasad + V + V + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Madhavan + B L + BL + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Jain + Chaithanya D + CD + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Krishnaveni + A Sai + AS + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Ratnam + M Venkat + MV + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. Electronic address: vratnam@narl.gov.in. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + England + Environ Pollut + 8804476 + 0269-7491 + + IM + + Coastal air quality + RF model + SHAP + boundary layer dynamics + meteorological variability + nonlinear interactions + + Declaration of Competing Interest ☒ The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 8 + + + 2026 + 5 + 22 + + + 2026 + 5 + 27 + + + 2026 + 5 + 29 + 19 + 32 + + + aheadofprint + + 42214540 + 10.1016/j.envpol.2026.128448 + S0269-7491(26)00818-3 + + +
+ + + 42214280 + + 2026 + 05 + 29 + +
+ + 1532-8708 + + 53 + 4 + + 2026 + Apr + 07 + + + Seminars in oncology + Semin Oncol + + Physics-informed machine learning for tumor microenvironment-responsive nanomedicine: Recent updates. + + 152498 + 152498 + + 10.1016/j.seminoncol.2026.152498 + S0093-7754(26)00045-X + + Physics-informed machine learning (PIML) is rapidly emerging as a transformative paradigm for designing tumor microenvironment (TME)-responsive nanomedicines. While existing reviews have surveyed PIML in broader biomedical contexts, this work provides a focused, critical synthesis specifically at the intersection of PIML, multiscale TME biophysics, and clinically actionable nanomedicine design. We argue that the unique value of PIML lies not merely in combining physics with data, but in its capacity to resolve the "personalization paradox" in oncology: the tension between the need for patient-specific models and the scarcity of patient-specific data. By embedding governing physical laws-such as Darcy's flow, reaction-diffusion kinetics, and Navier-Stokes equations-as soft constraints, PIML models can generate physically plausible, patient-tailored predictions even with sparse clinical inputs. This review uniquely articulates a translational roadmap that systematically links fundamental PIML methodologies to concrete nanomedicine optimization tasks: predicting nanoparticle transport in heterogeneous TMEs, designing stimulus-responsive nanocarriers, and integrating multi-omics/imaging for personalized therapy. We further introduce a novel comparative framework evaluating PIML against purely physics-based and purely data-driven approaches, highlighting its superior data efficiency and interpretability for TME applications. However, significant challenges remain, including data standardization, computational scalability, and regulatory adaptation. Looking forward, we identify under-explored yet high-impact frontiers, such as quantum-informed PIML for molecular-scale nanocarrier design, real-time adaptive nanomedicine guided by patient digital twins, and the ethical-regulatory frameworks needed for clinical deployment. By synthesizing cross-disciplinary insights and proposing a clear path from bench to bedside, this review aims to not only summarize the state-of-the-art but also to catalyze the next generation of intelligent, patient-centric cancer nanotherapeutics. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Hasannia + Maliheh + M + + Cancer Research Center, Semnan University of Medical Sciences, Semnan, Iran. + + + + Abounoori + Ali + A + + Department of Microbial Biotechnology, Faculty of Biotechnology, Amol University of Special Modern Technologies, Amol, Iran. + + + + Abounoori + Mahdi + M + + Cancer Research Center, Semnan University of Medical Sciences, Semnan, Iran. + + + + Shirzad + Maryam + M + + Nanotechnology Research Center, Pharmaceutical Technology Institute, Mashhad University of Medical Sciences, Mashhad, Iran. + + + + Rahdar + Abbas + A + + Department of Physics, University of Zabol, Zabol, Iran. Electronic address: a.rahdar@uoz.ac.ir. + + + + Fathi-Karkan + Sonia + S + + Natural Products and Medicinal Plants Research Center, North Khorasan University of Medical Sciences, Bojnurd, Iran; Department of Advanced Sciences and Technologies in Medicine, School of Medicine, North Khorasan University of Medical Sciences, Bojnurd, Iran; Food and Drug Research Center, Food and Drug Administration, Ministry of Health and Medical Education, Tehran, Iran. Electronic address: Soniafathi92@gmail.com. + + + + Romanholo Ferreira + Luiz Fernando + LF + + Graduate Program in Genomic Sciences and Biotechnology, Catholic University of Brasília, Brasília, 71966-700, Brazil. Electronic address: luiz.romanholo@p.ucb.br. + + + + eng + + Journal Article + Review + + + 2026 + 04 + 07 + +
+ + United States + Semin Oncol + 0420432 + 0093-7754 + + IM + + Multi-omics integration + Nanomedicine + Nanoparticle transport + Physics-informed machine learning + Tumor microenvironment + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2025 + 11 + 14 + + + 2026 + 2 + 12 + + + 2026 + 4 + 5 + + + 2026 + 5 + 29 + 18 + 10 + + + aheadofprint + + 42214280 + 10.1016/j.seminoncol.2026.152498 + S0093-7754(26)00045-X + + +
+ + + 42214151 + + 2026 + 05 + 29 + +
+ + 1873-3573 + + 309 + + 2026 + May + 28 + + + Talanta + Talanta + + Machine learning assisted transparent bending-insensitive SERS substrate for reliable quantitative analysis of thiram residues on fruit surfaces. + + 130059 + 130059 + + 10.1016/j.talanta.2026.130059 + S0039-9140(26)00715-0 + + Transparent and flexible surface-enhanced Raman scattering (SERS) substrates are highly suitable for rapid pesticide detection on fruit surfaces, owing to their capability for in situ detection on curved surfaces. However, achieving reproducible and stable SERS signals from flexible SERS substrates under bending conditions remains a major challenge. Additionally, integrating machine learning into Raman spectral analysis can further enhance the practicality of SERS technology. Herein, we develop a novel sensing platform that combines a transparent, bending-insensitive SERS substrate with machine learning for the rapid quantitative determination of thiram residues on fruit surfaces. The flexible SERS substrate was constructed by depositing silver nanoparticles (AgNPs) onto a polydimethylsiloxane (PDMS) twisted nanowrinkle array. Endowed with high SERS activity, exceptional transparency, and bending insensitivity, this substrate enabled reliable and consistent detection of thiram residues on apple and cherry tomato peels, with a sensitivity as low as 10-7 M. Furthermore, a back propagation neural network (BPNN)-based machine learning model was developed to predict thiram concentrations, achieving remarkable accuracy with a coefficient of determination (R2) of 0.9954 and a root mean square error (RMSE) of 0.0985. Thus, the proposed sensing platform provides a rapid, accurate, and reliable approach for the identification and quantification of thiram in fruits. + Copyright © 2026 Elsevier B.V. All rights reserved. + + + + Wang + Yue + Y + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Huang + Lili + L + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Wang + Jie + J + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Li + Zetong + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Bian + Ziyang + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Yang + Zhenshan + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Li + Hefu + H + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. Electronic address: lihefu@lcu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + Netherlands + Talanta + 2984816R + 0039-9140 + + IM + + BPNN + Bending insensitivity + Quantitative analysis + SERS + Thiram + + Declaration of competing interest The authors declare that they have no competing financial interests or personal relationships that could have appeared to influence the work reported in this study. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 9 + + + 2026 + 5 + 23 + + + 2026 + 5 + 27 + + + 2026 + 5 + 29 + 18 + 7 + + + aheadofprint + + 42214151 + 10.1016/j.talanta.2026.130059 + S0039-9140(26)00715-0 + + +
+ + + 42214146 + + 2026 + 05 + 29 + +
+ + 1879-0534 + + 212 + + 2026 + May + 29 + + + Computers in biology and medicine + Comput Biol Med + + A recurrent interferon, stress, and survival axis identifies a rare malignant programme across glioblastoma single-cell, spatial, and longitudinal cohorts. + + 111780 + 111780 + + 10.1016/j.compbiomed.2026.111780 + S0010-4825(26)00344-6 + + Glioblastoma exhibits profound intratumoral heterogeneity and rapid adaptation under stress, complicating durable therapeutic control. Here, a biologically grounded transcriptional axis is defined by three complementary modules capturing type I interferon signalling, immediate-early stress response, and pro-survival signalling enriched in unfolded protein response components. Using this equal-weighted axis, a rare axis-high programme was identified in a glioblastoma training cohort (GSE173278; 75,075 cells after filtering; 5.95% prevalence) and mapped to external cohorts through marker-anchored cohort-specific clusters. To enable reproducible detection, an interpretable 40-gene regularised logistic regression classifier was trained using fold-internal panel selection and Platt calibration fitted strictly on out-of-fold predictions. The conservative out-of-fold training evaluation showed informative discrimination and good probability calibration (AUC 0.767, AP 0.116, Brier 0.055, ECE 0.011). When the final model was applied to marker-anchored operational labels, ranking performance was high in an independent glioblastoma cohort (GSE131928; AUC 0.950, AP 0.351) and in an exploratory pan-cancer transfer setting (GSE203612; AUC 0.944, AP 0.343), although calibration slopes indicated dataset-dependent probability-scale shift. Longitudinal CARE glioblastoma samples showed that recalibration on T1 samples improved probability-scale reliability on later T2/T3 samples without changing rank discrimination. Spatial stratification based on available sample annotations linked higher detector probabilities to necrotic, bulk, and tumour-region samples. Irradiation feature-count contrasts supported positive shifts of the 40-gene panel and axis-related modules, while cell-level treated/control summaries were interpreted as context-specific perturbational evidence. Together, these results define a rare axis-high glioblastoma programme and provide a recalibratable gene-panel detector for probability-guided experimental triage and mechanistic follow-up. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Pastore + Emmanuel Pio + EP + + Department of Biology, Ecology and Earth Science, University of Calabria, 87036 Rende, Italy. + + + + De Rango + Francesco + F + + Department of Biology, Ecology and Earth Science, University of Calabria, 87036 Rende, Italy. Electronic address: francesco.derango@unical.it. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Comput Biol Med + 1250250 + 0010-4825 + + IM + + Glioblastoma + Interferon signaling + Machine learning + Protein response + Reproducible bioinformatics + Single-cell RNA-seq + Stress response + Unfolded + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 3 + 4 + + + 2026 + 5 + 11 + + + 2026 + 5 + 25 + + + 2026 + 5 + 29 + 18 + 7 + + + aheadofprint + + 42214146 + 10.1016/j.compbiomed.2026.111780 + S0010-4825(26)00344-6 + + +
+ + + 42214095 + + 2026 + 05 + 29 + +
+ + 1933-0693 + + + 2026 + May + 29 + + + Journal of neurosurgery + J Neurosurg + + Assessment system for short-term lower cranial nerve dysfunction following medulla oblongata glioma surgery: risk stratification and optimal surgical strategy. + + 1 + 12 + 1-12 + + 10.3171/2025.12.JNS251593 + + Medullary gliomas pose significant surgical risks, particularly the risk of postoperative lower cranial nerve (LCN) dysfunction, which profoundly affects quality of life. The lack of standardized risk assessment hinders optimal surgical planning. The aim of this study was to develop and validate an individualized predictive model for short-term postoperative LCN impairment integrating clinical and imaging data and to estimate individual risk across a range of resection extent to optimize surgical planning. + A retrospective cohort (n = 111, January 2020-February 2023) was used for model development, with prospective validation (n = 45, February 2023-December 2024). The primary outcome was postoperative LCN dysfunction (inability to be extubated within 14 days or requiring tracheotomy with persistent ventilation). Predictive modeling was performed using logistic regression, incorporating multistage feature selection, hyperparameter optimization, and bootstrapped validation. Model performance was evaluated using metrics such as area under the curve (AUC), Brier score, calibration, and decision curve analysis (DCA) in the prospective validation set. Shapley Additive Explanations (SHAP) analysis was used to interpret feature contributions, and a nomogram was constructed for clinical implementation. Optimal extent of resection (EOR) thresholds were explored to balance functional preservation and tumor clearance. + Four independent predictors of LCN dysfunction were identified: EOR (OR 1.84, 95% CI 1.07-3.16), infiltrative growth (OR 10.46 [95% CI 2.70-40.52]), preoperative LCN impairment (OR 6.79 [95% CI 2.54-18.16]), and cervical cord involvement (OR 4.64 [95% CI 1.55-13.91]). The model demonstrated strong discrimination (training AUC 0.85 [95% CI 0.76-0.92], testing AUC 0.89 [95% CI 0.79-0.97]) and good calibration (Brier score 0.12). High-risk patients, defined as those with a model predicted risk probability > 0.471 based on Youden's index, had significantly higher rates of pneumonia, tracheostomy, and prolonged mechanical ventilation. Stratified resection plans showed that low-risk patients benefited from gross-total resection (EOR 88.4%, [95% CI 75.7%-100.0%]), while high-risk patients achieved optimal functional outcomes with limited resection (EOR 40.8%, [95% CI 38.2%-50.5%]). SHAP and nomogram analyses provided transparent, patient-specific information for risk consultations. + This study presents the first predictive model tailored to short-term postoperative LCN outcomes following medullary glioma surgery, proposing a dynamic resection paradigm based on individualized risk stratification. By guiding surgical planning and intraoperative decision-making, this model facilitates a balance between maximal tumor control and functional preservation. + + + + Zhang + Mingxin + M + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + + Xiao + Xiong + X + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Jia + Heyuan + H + + 5School of Instrumentation and Optoelectronic Engineering, Beihang University, Beijing. + + + + Liu + Yinan + Y + + 6Brainnetome Center, Institute of Automation, Chinese Academy of Sciences, Beijing; and. + + + + Jiang + Wenju + W + + 7Beijing Arion Cancer Center, Beijing, China. + + + + Xie + Luyang + L + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + + Pan + Changcun + C + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Wu + Zhen + Z + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Junting + J + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Liwei + L + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + 3Beijing Neurosurgical Institute, Capital Medical University, Beijing. + + + 4China National Clinical Research Center for Neurological Diseases, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Peng + P + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Neurosurg + 0253357 + 0022-3085 + + IM + + lower cranial nerve dysfunction + machine learning + medullary glioma + oncology + predictive model + risk stratification + skull base + surgical decision-making + tumor + +
+ + + + 2025 + 6 + 21 + + + 2025 + 12 + 19 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 17 + 52 + + + aheadofprint + + 42214095 + 10.3171/2025.12.JNS251593 + + +
+ + + 42214078 + + 2026 + 05 + 29 + +
+ + 1520-5215 + + + 2026 + May + 29 + + + The journal of physical chemistry. A + J Phys Chem A + + IPSBrain: A Unified Intelligent Data Analysis Platform for Multimodal Experimental Characterization at Advanced Photon Source. + 10.1021/acs.jpca.6c01154 + + Advanced photon sources deliver X-ray with unprecedented brilliance and coherence, facilitating sophisticated multimodal characterization of diverse materials while simultaneously generating data volumes that far exceed the capacity of traditional, expert-driven analytical workflows. This growing gap between data acquisition and interpretation has become a critical bottleneck for timely scientific discovery, which creates a critical need for high-throughput and automated data analysis tools. Recent advances in artificial intelligence (AI) offer a transformative potential to address this challenge, enabling the direct mapping of complex experimental observations into scientific insights. However, existing AI-driven tools are remain largely fragmented and task-specific, limiting their adoption of modern multimodal experiments at the facility scale. Here we present IPSBrain, a unified AI-powered platform that serves as Intelligent Photon Source Brain for automated analysis of multimodal synchrotron experimental data. The platform integrated a series of novel, self-developed machine-learning-based models that enable automated data analysis from multiple experimental techniques, including diffraction, scattering, X-ray absorption, and tomograph. The platform is accessible through an intuitive web interface, which significantly lowers the technical barrier to advanced scientific data interpretation. By enabling end-to-end intelligent workflows from data acquisition to quantitative physical insight, IPSBrain supports high-throughput, reproducible, and scalable analysis aligned with the operational demands of modern synchrotron radiation sources. IPSBrain not only demonstrates a practical and extensible framework for AI-driven synchrotron data analysis but also establishes a transferable paradigm for intelligent data analysis of other large-scale research infrastructures, such as neutron sources and free-electron lasers. + + + + Pang + Yihe + Y + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + Spallation Neutron Source Science Center, Dongguan 523800, China. + + + + Li + Lin + L + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Computer Science and Technology, Beijing Institute of Technology, Beijing 100081, China. + + + + Deng + Xiangwen + X + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + Xi + Zuoxin + Z + 0000-0003-1237-7780 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Li + Jing + J + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Han + Mengdan + M + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Sun + Yaping + Y + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Science, China University of Geosciences Beijing, Beijing 100083, China. + + + + Yao + Haodong + H + 0000-0001-5959-8594 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + Wu + Liyuan + L + 0000-0002-4890-2770 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + + Yuan + Qin + Q + 0009-0001-7123-6155 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + + Zhao + Lina + L + 0000-0002-9796-0221 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Phys Chem A + 9890903 + 1089-5639 + + IM +
+ + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 17 + 12 + + + aheadofprint + + 42214078 + 10.1021/acs.jpca.6c01154 + + +
+ + + 42214077 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2561-3278 + + 11 + + 2026 + May + 29 + + + JMIR biomedical engineering + JMIR Biomed Eng + + Psychosocial Stress in the Chinese Community: Speech Analytics Through Linguistic and Acoustic Fusion Using Machine Learning. + + e91138 + e91138 + + 10.2196/91138 + + Family caregivers experience significant stress due to intensive caregiving activities, making them highly susceptible to adverse psychosocial health conditions. Early detection of this stress is crucial for timely interventions to prevent disease progression and long-term disability. + This study aimed to develop and validate the Linguistic and Acoustic Speech Analytics Program, a novel machine learning approach capable of providing a fusion analysis of linguistic and acoustic speech features to enhance the effectiveness of psychosocial stress assessment. + This quantitative study analyzed speech data collected from 100 Chinese family caregivers. Participants responded to 12 open-ended questions, and their voices were recorded for linguistic and acoustic feature extraction. Various machine learning classifiers, including support vector machine, were developed to process speech data. A key methodological step was the application of an orthogonalization procedure to decorrelate acoustic features from linguistic features before fusion analysis. The classifiers were then trained to evaluate psychosocial stress levels based on the processed and fused linguistic and acoustic speech features. Model performance was measured using receiver operating characteristic-area under the curve, F1-score, and accuracy. + The linear support vector machine model emerged as the top performer, achieving a receiver operating characteristic-area under the curve of 78.28%, an F1-score of 75.27%, and an accuracy of 73%. These results demonstrate the model's strong capability in identifying stressed participants based on their speech. Critically, the fusion of linguistic and acoustic features significantly outperformed models using either feature type alone. Furthermore, the orthogonalization procedure proved essential, as decorrelating features before fusion markedly enhanced classification accuracy compared to using non-orthogonalized features. + This study demonstrates that fusion analysis of linguistic and acoustic features effectively identifies psychosocial stress among family caregivers. It also emphasizes the importance of proper feature processing when combining multiple features extracted from the same audio sample. These findings provide valuable insights for developing machine learning models for psychosocial stress assessment and addressing various psychosocial conditions in different contexts, supporting population mental health management. + © Amanda M Y Chu, Benson S Y Lam, Jenny T Y Tsang, Agnes Tiwari, Jacky N L Chan, Mike K P So. Originally published in JMIR Biomedical Engineering (http://biomsedeng.jmir.org). + + + + Chu + Amanda M Y + AMY + 0000-0002-9543-747X + + Department of Social Sciences and Policy Studies, The Education University of Hong Kong, Tai Po, Hong Kong, China. + + + + Lam + Benson S Y + BSY + 0000-0002-0836-4162 + + Department of Mathematics, Statistics and Insurance, The Hang Seng University of Hong Kong, Shatin, Hong Kong, China. + + + + Tsang + Jenny T Y + JTY + 0000-0003-4558-9384 + + School of Nursing, Tung Wah College, Homantin, Hong Kong, China. + + + + Tiwari + Agnes + A + 0000-0002-3993-8552 + + School of Nursing, Hong Kong Sanatorium and Hospital, Hong Kong, China. + + + + Chan + Jacky N L + JNL + 0000-0003-1704-4221 + + Department of Information Systems, Business Statistics and Operations Management, The Hong Kong University of Science and Technology, Clear Water Bay, Hong Kong, China, 852 2358 7726. + + + + So + Mike K P + MKP + 0000-0003-0781-8166 + + Department of Information Systems, Business Statistics and Operations Management, The Hong Kong University of Science and Technology, Clear Water Bay, Hong Kong, China, 852 2358 7726. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Biomed Eng + 101771351 + 2561-3278 + + + caregivers + digital health + psychosocial health + speech analytics + text analytics + +
+ + + + 2026 + 1 + 11 + + + 2026 + 3 + 23 + + + 2026 + 3 + 24 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 17 + 12 + + + epublish + + 42214077 + 10.2196/91138 + v11i1e91138 + + +
+ + + 42214073 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1929-0748 + + 15 + + 2026 + May + 29 + + + JMIR research protocols + JMIR Res Protoc + + Creation of an mHealth Infrastructure to Support the Development and Delivery of mHealth Interventions: Protocol for Demonstration Projects Addressing Smoking Cessation in Cancer Care. + + e92288 + e92288 + + 10.2196/92288 + + Cancer remains a leading cause of morbidity worldwide. To reduce this burden, scalable, effective approaches are needed to address modifiable risk factors for cancer and support behavioral self-management. With smartphone ownership now nearly ubiquitous, mobile health (mHealth) interventions offer a powerful means to extend the reach, accessibility, and sustainability of evidence-based treatments for a variety of modifiable risk factors (eg, excessive alcohol use, physical inactivity, poor diet, and smoking). Moreover, the flexibility of mHealth platforms enables efficient delivery of novel interventions, supports innovative study designs, and facilitates real-time data collection to advance public health research. + Despite the great potential of mHealth interventions, developing high-quality mHealth tools is complex, time-consuming, and resource-intensive. To address these challenges, we are developing a coordinated, accessible, research-grade infrastructure for mHealth app development, testing, and dissemination. + The mHealth Florida infrastructure (mFLi) will provide a comprehensive, low-code software platform that enables researchers to build apps compatible with major mobile operating systems, namely, Apple iOS and Google Android. Through a modular interface, users will select from a menu of prebuilt features to tailor functionality to specific study needs. The platform will include 3 integrated environments (development, testing, and production), allowing researchers to prototype, evaluate, and deploy mHealth interventions. This infrastructure will be developed and maintained by a multidisciplinary team, ensuring that the platform is technically robust and usable and adheres to institutional and regulatory standards. To demonstrate the platform's functionality, utility, and adaptability, a multisite study comprising three initial projects focused on smoking cessation among patients with cancer is being conducted: (1) participant screening and enrollment, (2) randomization and treatment delivery, and (3) data processing using machine learning methods with on-device and cloud-based approaches. + This study was funded in May 2023, and ethics approval was obtained from all involved sites' institutional review boards between February 2024 and October 2025. Recruitment began in March 2025 and enrollment is ongoing. As of January 2026, 41% (37/90) of the target sample have been enrolled and 21% (19/90) have completed their 6-month assessment. Data collection will be completed once the final participant completes their 6-month assessment (expected May 2027), with analyses commencing thereafter. Study findings are anticipated to be published in a peer-reviewed journal in 2027. + Collectively, these projects will illustrate how mFLi can streamline app development, facilitate rapid translation of research into practice, and reduce barriers for researchers and developers. Ultimately, mFLi is designed to accelerate innovation in mHealth research, enhance access to behavioral interventions, and improve health outcomes among diverse populations. + ClinicalTrials.gov NCT06909357; https://clinicaltrials.gov/study/NCT06909357. + PRR1-10.2196/92288. + ©Lindsey S Sparrock, Jennifer I Vidrine, Christine E Vinci, Issam M El Naqa, Steven K Sutton, Ramzi G Salloum, Jesse Dallery, Tracy E Crane, Frank J Penedo, Samuel J Brockway, Sarah R Jones, Charles E Hoogland, Richard R Reich, Guillermo Gonzalez-Calderon, Vani N Simmons, Damon J Vidrine. Originally published in JMIR Research Protocols (https://www.researchprotocols.org), 29.05.2026. + + + + Sparrock + Lindsey S + LS + 0000-0003-3230-7886 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Vidrine + Jennifer I + JI + 0000-0001-7159-7252 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + Vinci + Christine E + CE + 0000-0001-8883-0989 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + El Naqa + Issam M + IM + 0000-0001-6023-1132 + + Department of Machine Learning, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Radiation Oncology, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Gastrointestinal Oncology, Moffitt Cancer Center, Tampa, FL, United States. + + + + Sutton + Steven K + SK + 0000-0002-2504-7601 + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Salloum + Ramzi G + RG + 0000-0002-8139-2418 + + Department of Health Outcomes and Biomedical Informatics, College of Medicine, University of Florida, Gainesville, FL, United States. + + + Health Cancer Center, University of Florida, Gainesville, FL, United States. + + + + Dallery + Jesse + J + 0000-0002-2882-1105 + + Department of Psychology, University of Florida, Gainesville, FL, United States. + + + + Crane + Tracy E + TE + 0000-0002-4288-134X + + Department of Medicine, Miller School of Medicine, University of Miami, Miami, FL, United States. + + + + Penedo + Frank J + FJ + 0000-0002-2780-0417 + + Department of Medicine, Miller School of Medicine, University of Miami, Miami, FL, United States. + + + Department of Psychology, University of Miami, Coral Gables, FL, United States. + + + + Brockway + Samuel J + SJ + 0009-0000-4761-768X + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Jones + Sarah R + SR + 0000-0001-5513-2527 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Hoogland + Charles E + CE + 0000-0001-7735-1931 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Reich + Richard R + RR + 0009-0009-9559-6858 + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Gonzalez-Calderon + Guillermo + G + 0000-0002-4075-8946 + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Simmons + Vani N + VN + 0000-0002-4381-5336 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + Vidrine + Damon J + DJ + 0000-0002-8711-796X + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + eng + + + ClinicalTrials.gov + + NCT06909357 + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Res Protoc + 101599504 + 1929-0748 + + IM + + + Humans + + + Smoking Cessation + methods + + + Telemedicine + + + Neoplasms + therapy + + + Mobile Applications + + + Digital Health + + + + cancer + feasibility + mHealth + randomized controlled trial + smoking + tobacco cessation + +
+ + + + 2026 + 2 + 9 + + + 2026 + 3 + 18 + + + 2026 + 3 + 17 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 16 + 53 + + + epublish + + 42214073 + 10.2196/92288 + v15i1e92288 + + +
+ + + 42214056 + + 2026 + 05 + 29 + +
+ + 2688-1535 + + + 2026 + May + 29 + + + JCO oncology practice + JCO Oncol Pract + + Development and External Validation of a Machine Learning-Based Risk Classification Score for Prostate Cancer-Specific Cardiovascular Risk. + + OP2600131 + OP2600131 + + 10.1200/OP-26-00131 + + Patients with prostate cancer (PC) face elevated cardiovascular (CV) risk. Conventional CV risk scores are often poorly calibrated for PC and require laboratory tests that are not routinely available in PC clinics, limiting oncology use. + The development cohort (DC) included men with PC (age ≥18 years) diagnosed in 2010-2014. Validation cohort 1 (V1) included men age 45 years and older within 1 year of PC diagnosis or near initiation of androgen deprivation therapy. Validation cohort 2 (V2) included men with PC diagnosed in 2006-2019. Outcomes were cardiovascular disease (CVD), atherosclerotic CVD (ASCVD), and heart failure (HF). Predictors were selected with XGBoost and LASSO, modeled with Fine-Gray and penalized Cox regression, and scaled to additive point scores (low/intermediate/high risk). Performance was assessed using time-dependent AUC (TDAUC), which quantifies the model's ability to correctly rank patients by risk at each time point, and compared with conventional scores. + The DC included 1,815 patients, and V1 and V2 included 4,022 and 1,729 patients, respectively (median follow-up 10.3 years). At 10 years, cumulative incidence was 15.0% for composite CVD, 9.4% for ASCVD, and 10.1% for HF. The composite CVD score (age, race, smoking history, high-risk Gleason score, and household members) achieved a 10-year TDAUC of 0.71 (95% CI, 0.64 to 0.78) in the DC and 0.59 (95% CI, 0.52 to 0.65) in V2, with a 2-year TDAUC of 0.66 (95% CI, 0.56 to 0.75) in V1. In the DC, ASCVD and HF scores achieved 10-year TDAUCs of 0.66 (95% CI, 0.58 to 0.75) and 0.70 (95% CI, 0.62 to 0.79), respectively, and retained discrimination in validation. + To our knowledge, these are the first PC-specific CV risk scores derived from oncology-available variables, supporting pragmatic CV risk stratification in PC clinics and motivating further validation and implementation studies. + + + + Stabellini + Nickolas + N + 0000-0002-3135-7980 + + Case Western Reserve University, Cleveland, OH. + + + Department of Hematology-Oncology, University Hospitals Seidman Cancer Center, Cleveland, OH. + + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Nahle + Tarek + T + 0009-0004-4584-3308 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Shah + Viraj + V + 0009-0003-5850-9862 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Kollapaneni + Sai S + SS + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Makram + Omar M + OM + 0000-0001-8361-9068 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Cullen + Jennifer + J + + Cancer Prevention and Control Program, Houston Methodist Neal Cancer Center, Houston, TX. + + + + Weintraub + Neal L + NL + 0000-0002-5138-3705 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + Vascular Biology Center, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Kunhiraman + Harikrishnan H + HH + 0000-0002-6395-7956 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Swami + Umang + U + 0000-0003-3518-0411 + + Division of Oncology, Department of Internal Medicine, Huntsman Cancer Institute, University of Utah, Salt Lake City, UT. + + + + Mahmoudi + Morteza + M + 0000-0002-2575-9684 + + Department of Radiology and Precision Health Program, Michigan State University, East Lansing, MI. + + + + Fillmore + Nathanael + N + 0000-0002-8058-3423 + + Department of Medicine, Harvard Medical School, Boston, MA. + + + + Garraway + Isla P + IP + + Department of Urology, David Geffen School of Medicine, University of California, Los Angeles, CA. + + + Department of Surgical and Perioperative Care, VA Greater Los Angeles, Los Angeles, CA. + + + + Leong + Darryl + D + 0000-0002-1968-169X + + Population Health Research Institute and Department of Medicine, McMaster University and Hamilton Health Sciences, Hamilton, ON, Canada. + + + + Pinthus + Jehonathan + J + + Division of Urology, Department of Surgery, McMaster University, Hamilton, ON, Canada. + + + + Shanahan + John + J + + Cancer Informatics, Seidman Cancer Center at University Hospitals of Cleveland, Cleveland, OH. + + + + Montero + Alberto J + AJ + 0000-0002-8221-8120 + + Case Western Reserve University, Cleveland, OH. + + + Department of Hematology-Oncology, University Hospitals Seidman Cancer Center, Cleveland, OH. + + + + Agarwal + Neeraj + N + 0000-0003-1076-0428 + + Huntsman Cancer Institute, University of Utah, Salt Lake City, UT. + + + + Guha + Avirup + A + 0000-0003-0253-1174 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + Cardio-Oncology Program, Medical College of Georgia at Augusta University, Augusta, GA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + JCO Oncol Pract + 101758685 + 2688-1527 + + IM +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 16 + 12 + + + aheadofprint + + 42214056 + 10.1200/OP-26-00131 + + +
+ + + 42213920 + + 2026 + 05 + 29 + +
+ + 1079-7114 + + 136 + 19 + + 2026 + May + 15 + + + Physical review letters + Phys Rev Lett + + Hierarchical and Ultrametric Barriers in the Energy Landscape of Jammed Granular Matter. + + 198202 + 198202 + + 10.1103/mtn5-s26m + + According to the mean-field glass theory, the (free) energy landscape of disordered systems is hierarchical and ultrametric if they belong to the full-replica-symmetry-breaking universality class. However, examining this theoretical picture in three-dimensional systems remains challenging, where the energy barriers become finite. Here, we numerically explore the energy landscape of granular models near the jamming transition using a saddle dynamics algorithm to locate both local energy minima and saddles. The multiscale distances and energy barriers between minima are characterized by two metrics, both of which exhibit signatures of an ultrametric space. The scale-free distributions of energy barriers confirm the landscape's hierarchical organization and align with the distribution of elastic avalanches under athermal quasistatic shear. + + + + Wu + Shuonan + S + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + + Xie + Yuchen + Y + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + + Pan + Deng + D + + Chinese Academy of Sciences, Institute of Theoretical Physics, Beijing 100190, China. + https://ror.org/034t30j35 + + + + Zhang + Lei + L + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + Peking University, Beijing International Center for Mathematical Research, Beijing, 100871, China. + https://ror.org/02v51f717 + + + Peking University, Center for Quantitative Biology, Beijing, 100871, China. + https://ror.org/02v51f717 + + + Peking University, Center for Machine Learning Research, Beijing, 100871, China. + https://ror.org/02v51f717 + + + + Jin + Yuliang + Y + + Chinese Academy of Sciences, Institute of Theoretical Physics, Beijing 100190, China. + https://ror.org/034t30j35 + + + University of Chinese Academy of Sciences, School of Physical Sciences, Beijing 100049, China. + https://ror.org/05qbk4x57 + + + University of Chinese Academy of Sciences, Center for Theoretical Interdisciplinary Sciences, Wenzhou Institute, Wenzhou, Zhejiang 325001, China. + https://ror.org/05qbk4x57 + + + + eng + + Journal Article + +
+ + United States + Phys Rev Lett + 0401141 + 0031-9007 + + IM +
+ + + + 2025 + 12 + 22 + + + 2026 + 2 + 10 + + + 2026 + 4 + 21 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 15 + 12 + + + ppublish + + 42213920 + 10.1103/mtn5-s26m + + +
+ + + 42213819 + + 2026 + 05 + 29 + +
+ + 1535-1386 + + + 2026 + May + 29 + + + The Journal of bone and joint surgery. American volume + J Bone Joint Surg Am + + Compliance with the CONSORT AI Extension in Orthopaedic Randomized Controlled Trials. + 10.2106/JBJS.25.01439 + + The utilization of artificial intelligence (AI), such as machine learning, in health care has risen exponentially, underscoring the necessity of transparency and traceability in the reporting of AI in randomized controlled trials (RCTs) that involve AI. In 2020, a CONSORT (Consolidated Standards of Reporting Trials) AI extension was published that included 14 additional items that should be reported when AI is used in RCTs. This study aimed to evaluate compliance with these additional guidelines. + A systematic approach was used to identify all RCTs in orthopaedics that involved AI since the extension was published. Three databases were searched (PubMed, Embase, Cochrane) using the search terms ([orthopaedic] OR [orthopedic]) AND ([artificial intelligence] OR [AI] OR [machine learning] OR [deep learning]). + One hundred and seventy-four articles were identified, and 11 articles satisfied the inclusion and exclusion criteria and were assessed for compliance. The average number of CONSORT AI-extension items met per study was 11.4 ± 1.6 (81.2% ± 12.1%). Eight items (1a [i], 1b [ii], 2a [i], 4a [i], 5 [ii], 5 [v], 5 [vi], 19) that were related to standard reporting of AI utilization were reported in all articles. The items with the lowest reporting rates were related to data transparency and included 4a (ii), 5 (iii), and 25, with only 9.1%, 36.4%, and 45.5% of all studies complying, respectively. + Orthopaedic RCTs involving AI showed high compliance with respect to standard trial reporting and broad AI descriptors but low compliance with respect to detailed data transparency, data-quality handling, and code accessibility. Addressing these weaker areas is essential to improve reproducibility, reduce bias, and strengthen trust in AI-driven clinical research. + Improved compliance with CONSORT-AI reporting standards may help orthopaedic clinicians to critically evaluate AI-based randomized trials, reproduce findings, and determine whether AI interventions are reliable and safe for clinical use. + Copyright © 2026 by The Journal of Bone and Joint Surgery, Incorporated. + + + + Strasser + Thomas + T + 0000-0003-4456-8178 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Baker + Christopher + C + 0009-0009-9822-6633 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Cheminant + Jenna + J + 0009-0001-2747-5263 + + College of Osteopathic Medicine of the Pacific, Western University of Health Sciences, Pomona, California. + + + + Han + Blake + B + 0009-0002-9570-1944 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + College of Osteopathic Medicine of the Pacific, Western University of Health Sciences, Pomona, California. + + + + Canumay + Sallie + S + 0009-0009-1627-8828 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Schlechter + John + J + 0000-0001-8389-8407 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + Rady Children's Health Orange County, Orange, California, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Bone Joint Surg Am + 0014030 + 0021-9355 + + IM + Disclosure: No external funding was received for this work. The Disclosure of Potential Conflicts of Interest forms are provided with the online version of the article (http://links.lww.com/JBJS/J301). +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 14 + 2 + + + aheadofprint + + 42213819 + 10.2106/JBJS.25.01439 + 00004623-990000000-01850 + + + + Schulz KF, Altman DG, Moher D; CONSORT Group. CONSORT 2010 statement: updated guidelines for reporting parallel group randomised trials. BMJ. 2010 Mar 23;340:c332. + + + Moher D, Hopewell S, Schulz KF, Montori V, Gøtzsche PC, Devereaux PJ, Elbourne D, Egger M, Altman DG. CONSORT 2010 explanation and elaboration: updated guidelines for reporting parallel group randomised trials. BMJ. 2010 Mar 23;340:c869. + + + Ioannidis JP. How to make more published research true. PLoS Med. 2014 Oct 21;11(10):e1001747. + + + Liu X, Cruz Rivera S, Moher D, Calvert MJ, Denniston AK; SPIRIT-AI and CONSORT-AI Working Group. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI extension. Nat Med. 2020 Sep;26(9):1364-74. + + + Fan X, Qiao X, Wang Z, Jiang L, Liu Y, Sun Q. Artificial Intelligence-Based CT Imaging on Diagnosis of Patients with Lumbar Disc Herniation by Scalpel Treatment. Comput Intell Neurosci. 2022 May 27;2022:3688630. + + + Anderson PG, Baum GL, Keathley N, Sicular S, Venkatesh S, Sharma A, Daluiski A, Potter H, Hotchkiss R, Lindsey RV, Jones RM. Deep learning assistance closes the accuracy gap in fracture detection across clinician types. Clin Orthop Relat Res. 2023 Mar 1;481(3):580-8. + + + Gauci MO, Olmos M, Cointat C, Chammas PE, Urvoy M, Murienne A, Bronsard N, Gonzalez JF. Validation of the shoulder range of motion software for measurement of shoulder ranges of motion in consultation: coupling a red/green/blue-depth video camera to artificial intelligence. Int Orthop. 2023 Feb;47(2):299-307. + + + Zhu Y, Wu T, Wang W, Cai C, Zhu B, Lin W, Xu H, Liang Q, Wang Y. Artificial intelligence algorithm–based lumbar and spinal MRI for evaluation of efficacy of Chinkuei Shin Chewan decoction on lumbar spinal stenosis. Contrast Media Mol Imaging. 2021 Dec 29;2021:2700452. + + + Zhang H, He Q, Liu Q, He Y, Wang T, Feng Z, Zhang Q, He S. Comparative analysis of artificial intelligence and two-dimensional digital template preoperative planning–assisted total hip arthroplasty to predict prosthesis size. Chin J Tissue Eng Res. 2023;27(29):4620-7. + + + Zheng H, Feng E, Xiao Y, Liu X, Lai T, Xu Z, Chen J, Xie S, Lin F, Zhang Y. Is AI 3D-printed PSI an accurate option for patients with developmental dysplasia of the hip undergoing THA? BMC Musculoskelet Disord. 2024 Apr 22;25(1):308. + + + Gao L, Xing B. Bone cement reinforcement improves the therapeutic effects of screws in elderly patients with pelvic fragility factures. J Orthop Surg Res. 2024 Mar 18;19(1):191. + + + Baker HP, Dwyer E, Kalidoss S, Hynes K, Wolf J, Strelzow JA. ChatGPT’s Ability to Assist with Clinical Documentation: A Randomized Controlled Trial. J Am Acad Orthop Surg. 2024 Feb 1;32(3):123-9. + + + Bates NA, Huffman A, Goodyear E, Nagai T, Rigamonti L, Breuer L, Holmes BD, Schilaty ND. Physical clinical care and artificial-intelligence-guided core resistance training improve endurance and patient-reported outcomes in subjects with lower back pain. Clin Biomech (Bristol). 2023 Mar;103:105902. + + + Zhang Y, Hui Z, Qi W, Zhang J, Wang M, Zhu D. Clinical study on the safety and feasibility of AiWalker-K for lower limbs exercise rehabilitation in children with cerebral palsy. PLoS One. 2024 May 22;19(5):e0303517. + + + Thiengwittayaporn S, Wattanapreechanon P, Sakon P, Peethong A, Ratisoontorn N, Charoenphandhu N, Charoensiriwath S. Development of a mobile application to improve exercise accuracy and quality of life in knee osteoarthritis patients: a randomized controlled trial. Arch Orthop Trauma Surg. 2023 Feb;143(2):729-38. + + + Jayakumar P, Moore MG, Furlough KA, Uhler LM, Andrawis JP, Koenig KM, Aksan N, Rathouz PJ, Bozic KJ. Comparison of an artificial intelligence–enabled patient decision aid vs educational material on decision quality, shared decision-making, patient experience, and functional outcomes in adults with knee osteoarthritis: a randomized clinical trial. JAMA Netw Open. 2021 Feb 1;4(2):e2037107. + + + Page MJ, McKenzie JE, Bossuyt PM, Boutron I, Hoffmann TC, Mulrow CD, Shamseer L, Tetzlaff JM, Akl EA, Brennan SE, Chou R, Glanville J, Grimshaw JM, Hróbjartsson A, Lalu MM, Li T, Loder EW, Mayo-Wilson E, McDonald S, McGuinness LA, Stewart LA, Thomas J, Tricco AC, Welch VA, Whiting P, Moher D. The PRISMA 2020 statement: an updated guideline for reporting systematic reviews. BMJ. 2021 Mar 29;372:n71. + + + Sataloff RT, Bush ML, Chandra R, Chepeha D, Rotenberg B, Fisher EW, Goldenberg D, Hanna EY, Kerschner JE, Kraus DH, Krouse JH, Li D, Link M, Lustig LR, Selesnick SH, Sindwani R, Smith RJ, Tysome J, Weber PC, Welling DB. Systematic and other reviews: criteria and complexities. Ear Nose Throat J. 2021 Jul;100(6):403-6. + + + Liu X, Rivera SC, Moher D, Calvert MJ, Denniston AK; SPIRIT-AI and CONSORT-AI Working Group. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI Extension. BMJ. 2020 Sep 9;370:m3164. + + + Anderson JM, Howard C, Staggs J, Steele R, Strasser T, Small T, Vassar M, Checketts JX. Inadequate reporting of complications in randomized controlled trials cited as supporting evidence underpinning AAOS CPG recommendations for hip and knee osteoarthritis: application of the CONSORT Harms checklist. J Arthroplasty. 2022 Dec;37(12):2466-2472.e2. + + + Marcus E, Teuwen J. Artificial intelligence and explanation: How, why, and when to explain black boxes. Eur J Radiol. 2024 Apr;173:111393. + + + Wyles CC, Saniei S, Mulford KL, Girod MM, Taunton MJ. Reporting Guidelines for Artificial Intelligence Use in Orthopaedic Surgery Research. J Arthroplasty. 2025 Oct;40(10):2737-2743.e1. + + + Martindale APL, Llewellyn CD, de Visser RO, Ng B, Ngai V, Kale AU, Ferrante di Ruffano L, Golub RM, Collins GS, Moher D, McCradden MD, Oakden-Rayner L, Cruz Rivera S, Calvert M, Kelly CJ, Lee CS, Yau C, Chan AW, Keane PA, Beam AL, Denniston AK, Liu X. Concordance of randomized controlled trials for artificial intelligence interventions with the CONSORT-AI reporting guidelines. Nature Communications. 2024;15(1):1619. + + + Shahzad R, Ayub B, Siddiqui MAR. Quality of reporting of randomised controlled trials of artificial intelligence in healthcare: a systematic review. BMJ Open. 2022 Sep 5;12(9):e061519. + + + Misir A, Yuce A. AI in Orthopedic Research: A Comprehensive Review. J Orthop Res. 2025 Aug;43(8):1508-27. + + + +
+ + + 42213782 + + 2026 + 05 + 29 + +
+ + 2211-1247 + + 45 + 6 + + 2026 + May + 28 + + + Cell reports + Cell Rep + + Non-centromeric CENP-A regulates epithelial-mesenchymal plasticity and heterogeneity in human cells. + + 117405 + 117405 + + 10.1016/j.celrep.2026.117405 + S2211-1247(26)00483-3 + + Centromere protein A (CENP-A), a centromeric histone H3 variant highly expressed in aggressive cancers, promotes epithelial-mesenchymal transition (EMT), yet its underlying mechanisms remain unresolved. Here, we used a reversible high-CENP-A expression system in human cells to follow EMT-state trajectories and CENP-A localization over time. Sustained CENP-A elevation shifted hybrid populations toward mesenchymal states and increased both centromeric loading and ectopic chromatin incorporation. Chromatin immunoprecipitation revealed ectopic CENP-A enrichment at EMT-associated loci. Single-nucleus multi-omics further resolved two EMT programs engaged at distinct cell cycle stages: CENP-A strengthened a pre-existing inflammatory program and triggered a developmental program. Importantly, restoring basal CENP-A levels erased these transcriptional programs and eliminated ectopic incorporation, consistent with a reversible, non-genetic mechanism. Together, our findings uncover a non-centromeric function for CENP-A in shaping epithelial-mesenchymal plasticity and cellular heterogeneity. + Copyright © 2026 The Author(s). Published by Elsevier Inc. All rights reserved. + + + + Renaud-Pageot + Charlène + C + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Capocefalo + Daniele + D + + Institut Pasteur, Université Paris Cité, CNRS, UMR 3738, Machine Learning for Integrative Genomics Lab, 75015 Paris, France. + + + + Lemaire + Sébastien + S + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Forest + Audrey + A + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Cantini + Laura + L + + Institut Pasteur, Université Paris Cité, CNRS, UMR 3738, Machine Learning for Integrative Genomics Lab, 75015 Paris, France. + + + + Almouzni + Geneviève + G + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. Electronic address: genevieve.almouzni@curie.fr. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + Cell Rep + 101573691 + + IM + + CENP-A + CP: developmental biology + CP: molecular biology + cell cycle + centromere + chromatin + epigenetics + epithelial-mesenchymal transition + single-nucleus multi-omics + + Declaration of interests The authors declare no competing interests. +
+ + + + 2025 + 10 + 1 + + + 2026 + 2 + 10 + + + 2026 + 4 + 27 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 52 + + + aheadofprint + + 42213782 + 10.1016/j.celrep.2026.117405 + S2211-1247(26)00483-3 + + +
+ + + 42213739 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + TransGrid-CostOpt: A hybrid transformer framework for cost prediction and optimization of distribution network assets. + + e0350026 + e0350026 + + 10.1371/journal.pone.0350026 + + The prediction and optimization of distribution network asset costs is a complex problem in the power industry, involving the optimization of multiple objectives and the response to dynamic demands. Traditional methods often struggle to effectively address fluctuations in power load and the uncertainties in the supply chain, limiting their effectiveness in complex environments. To solve this issue, we propose the TransGrid-CostOpt model, an intelligent cost optimization model that integrates deep learning, multi-objective optimization, time-series forecasting, and optimization decision-making modules. TransGrid-CostOpt optimizes load forecasting and cost allocation for the distribution network by combining multi-source data, time-series load forecasting, and reinforcement learning decision strategies, reducing operational costs, improving load forecasting accuracy, and enhancing decision adaptability. Experimental results show that TransGrid-CostOpt outperforms traditional models and other advanced methods on the BuildingsBench and PJM Hourly Load Data datasets, exhibiting higher accuracy and efficiency in forecasting, cost optimization, and multi-objective balancing. Compared to classical baseline models and cutting-edge approaches, TransGrid-CostOpt demonstrates a 15% to 30% overall performance improvement. Ablation experiments confirm the critical role of each module, especially the time-series forecasting module and optimization decision-making module, in significantly enhancing the model's performance. TransGrid-CostOpt strengthens the cost management capability of the distribution network and shows strong adaptability in dynamic electricity market environments, with broad application potential. + Copyright: © 2026 Xiong et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Xiong + Wei + W + + State Grid Hubei Electric Power Co., Ltd, Wuhan, Hubei, China. + + + + Xia + Jie + J + + State Grid Hubei Electric Power Co., Ltd. Jingzhou Power Supply Company, Jingzhou, Hubei, China. + + + + Yu + YiBo + Y + + Wuhan Anju Supply Chain Co., Ltd, Wuhan, Hubei, China. + + + + Xiong + SanMing + S + + International Education College of North China Electric Power University (Baoding), Baoding, Hebei, China. + + + + Hu + HaiYang + H + + State Grid Hubei Electric Power Co., Ltd. Jingzhou Power Supply Company, Jingzhou, Hubei, China. + + + + Wan + Peng + P + 0009-0006-8464-084X + + Hubei Power Grid Design Co., Ltd., Wuhan, Hubei, China. + + + + Li + Dan + D + + Yunxia Electric Energy (Yunnan) Co., Ltd, Kunming, Yunnan, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Reinforcement Machine Learning + + + Prediction Algorithms + + + Forecasting + methods + + + Predictive Learning Models + + + The authors declare that they have no competing interests. There is no financial, personal, or professional conflict that could be perceived as influencing the research or the writing of this manuscript. +
+ + + + 2025 + 12 + 18 + + + 2026 + 5 + 7 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 44 + + + epublish + + 42213739 + 10.1371/journal.pone.0350026 + PONE-D-25-67221 + + +
+ + + 42213730 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1553-7358 + + 22 + 5 + + 2026 + May + + + PLoS computational biology + PLoS Comput Biol + + A prototype-augmented graph representation learning framework for identifying brain disorder-associated genes and facilitating drug repurposing. + + e1014323 + e1014323 + + 10.1371/journal.pcbi.1014323 + + Many genetic loci were identified as associated with neuropsychiatric disorders and neurodegenerative disorders by Genome-wide association studies (GWAS). How these loci impact these diseases is unclear. Advances in deep-learning approaches and multi-omics data have the potential to link GWAS findings with disease mechanisms. Here, we proposed the Multi-omics Graph Transformer Network (MOGT), a semi-supervised graph neural network that leverages graph representation learning to model biological networks derived from multi-omics data to predict disease-associated genes. MOGT outperforms the current approaches in disease gene prediction for two psychiatric disorders and three neurodegenerative/neurological diseases. High-risk genes (HRGs) for Parkinson's disease (PD) predicted by MOGT were used to drug discovery by integrating with the CMAP database. Finally, 10 drugs were identified as potential candidates. Among them, the effect of drug UK-356618 was experimentally verified in a primary neuron model, showing that UK-356618 reversed the abnormal expression of PD-associated genes and improved the cell-level phenotypes of PD. Together, these results indicate that MOGT can be used to identify HRGs for brain disorders, and these predicted HRGs provide high-level insights into the mechanisms and treatments of brain disorders. + Copyright: © 2026 Li et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Li + Jiafang + J + 0009-0006-5493-5305 + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + Guangdong Provincial Key Laboratory of Malignant Tumor Epigenetics and Gene Regulation, Guangzhou, Guangdong, China. + + + + Li + Yifei + Y + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + Guangdong Provincial Key Laboratory of Malignant Tumor Epigenetics and Gene Regulation, Guangzhou, Guangdong, China. + + + + Lin + Siying + S + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + School of Computer Science and Engineering, Sun Yat-sen University, Guangzhou, Guangdong, China. + + + + Rao + Jiahua + J + + School of Computer Science and Engineering, Sun Yat-sen University, Guangzhou, Guangdong, China. + + + + Zhao + Huiying + H + 0000-0001-9134-536X + + Department of Medical Research Center, Sun Yat-Sen Memorial Hospital, Sun Yat-Sen University, Guangzhou, Guangdong, China. + + + Guangdong Provincial Key Laboratory of Malignant Tumor Epigenetics and Gene Regulation, Guangzhou, Guangdong, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS Comput Biol + 101238922 + 1553-734X + + IM + + + Graph Neural Networks + + + Drug Repositioning + methods + + + Genome-Wide Association Study + + + Humans + + + Computational Biology + methods + + + Brain Diseases + genetics + drug therapy + + + Representation Machine Learning + + + Genetic Predisposition to Disease + genetics + + + Parkinson Disease + genetics + + + Animals + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 12 + 1 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 43 + + + epublish + + 42213730 + 10.1371/journal.pcbi.1014323 + PCOMPBIOL-D-25-02551 + + +
+ + + 42213726 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + Machine learning models based on magnetic resonance imaging for predicting Lymphovascular Invasion in Invasive Breast Cancer. + + e0350085 + e0350085 + + 10.1371/journal.pone.0350085 + + Treatment strategies for invasive breast cancer require accurate lymphovascular invasion (LVI) predictions. This study aimed to investigate the feasibility and effectiveness of delta radiomics signature based on dynamic contrast-enhanced magnetic resonance imaging (DCE-MRI) and radiomics signature based on T2-weighted fat suppressed imaging(T2FS) for assessing LVI in invasive breast cancer. + A total of 166 patients with resectable invasive breast cancer who underwent preoperative DCE-MRI and T2FS from July 10, 2020 to December 31, 2023 were enrolled. Radiomics features were extracted from pre-contrast phase (RFpre), second post-contrast phase (RFpost), and Delta radiomics features (RFDelta) calculated as RFpost minus RFpre. Then four radiomics signatures (RST2, RSpre, RSpost, RSDelta) were further developed based on the Random Forest model for RFT2, RFpre, RFpost and RFDelta, respectively. The predictive performance of all signatures was evaluated by receiver operating characteristic (ROC) analysis, with accuracy and area under the curve (AUC) as the main quantitative metrics. + In the test set, RSDelta (10 features) achieved the highest accuracy of 0.717 and an AUC of 0.764; RSpost (8 features) had an accuracy of 0.565 and an AUC of 0.610; RSpre (7 features) and RST2 (6 features) both showed an accuracy of 0.565 with AUCs of 0.535 and 0.662, respectively. Statistical differences were observed in predictive performance between RSDelta and RSpre, RSpost (both p < 0.05), while no significant difference was found between RSDelta and RST2 (p = 0.239). + RST2, RSpre, RSpost and RSDelta are all feasible for predicting LVI in invasive breast cancer, and RSDelta outperforms the other three radiomics signatures, which can serve as a potential non-invasive imaging biomarker for LVI prediction in clinical practice. + Copyright: © 2026 Li et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Li + Hong + H + 0000-0002-4531-7541 + + Department of Radiology, the Second Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + Huang + Jieling + J + + Department of Radiology, Guangzhou Geriatric Hospital, Guangzhou, Guangdong, China. + + + + Hou + Jianning + J + + Department of Radiology, Guangzhou Women And Children's Medical Center, Guangzhou, China. + + + + Chen + Xinxin + X + + Department of Breast surgery, the Second Affiliated Hospital, Guangzhou Medical University,‌‌ Guangzhou, Guangdong, China. + + + + Zhi + Cheng + C + + Department of Pathology, the Second Affiliated Hospital, Guangzhou Medical University, ‌‌Guangzhou, Guangdong, China. + + + + Li + Zhiming + Z + + Department of Radiology, the Second Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Humans + + + Breast Neoplasms + diagnostic imaging + pathology + + + Female + + + Radiomics + + + Dynamic Contrast Enhanced Magnetic Resonance Imaging + + + Machine Learning + + + Neoplasm Invasiveness + + + Magnetic Resonance Imaging + methods + + + Middle Aged + + + Predictive Learning Models + + + Lymphatic Metastasis + diagnostic imaging + + + Random Forest + + + ROC Curve + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 7 + 28 + + + 2026 + 5 + 8 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 43 + + + epublish + + 42213726 + 10.1371/journal.pone.0350085 + PONE-D-25-38600 + + +
+ + + 42213702 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2767-3170 + + 5 + 5 + + 2026 + May + + + PLOS digital health + PLOS Digit Health + + Video-based detection of Delirium in hospitalized adults. + + e0001462 + e0001462 + + 10.1371/journal.pdig.0001462 + + Delirium, a dynamic neuropsychiatric condition associated with morbidity and mortality, remains underdiagnosed due to reliance on subjective, intermittent screening tools. Objective and potentially continuous identification is needed to improve clinical care. We developed and validated an analytic framework for delirium classification based on automatically extracted video features. In this prospective cohort study, patients (≥ 18 years) admitted to the inpatient medical or neurological ward of a tertiary academic center between August 2020 and March 2022 with an expected stay longer than one night were enrolled. Daily structured delirium assessments and brief video recordings were performed in consenting patients. Videos were analyzed using deep learning pose estimation to extract keypoints and calculate behavioral features based on eye, face, and limb postures and movements. Four machine learning models (logistic regression, gradient boosting, support vector machines, and random forests) were trained to predict delirium status from extracted features. Model performance was evaluated on 20 repetitions of three-fold cross-validation using the area under the curve of the receiver operating characteristics curve (AUC ROC). The cohort included 109 videos from 25 male and 25 female participants (median age: 72, IQR: 63.25-78). Twenty videos (18%) were from patients with delirium. Keypoints for this dataset were more accurately extracted using a customized ResNet-101 model developed with DeepLabCut (sensitivity 0.94, specificity 0.89, compared to human-labeled gold standards) than using off-the-shelf models. Keypoints were then used to generate behavioral features summarizing movement and postures throughout the video. A support vector machine model achieved an average delirium classification AUC ROC of 0.79 (SD ± 0.09), sensitivity of 0.71 (SD ± 0.16), and specificity of 0.78 (SD ± 0.07). This study demonstrates the feasibility of identifying delirium using brief videos in clinically heterogeneous cohorts and reveals novel features for objective identification. + Copyright: © 2026 Mendu et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Mendu + Maanasa + M + 0000-0002-0409-1769 + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Tesh + Ryan A + RA + 0000-0002-6154-6248 + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + Department of Neurology, Beth Israel Deaconess Medical Center, Boston, Massachusetts, United States of America. + + + + Pellerin + Kyle + K + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Steward + Grace E + GE + 0000-0002-0226-0880 + + Department of Neurology, Northwestern University, Chicago, Illinois, United States of America. + + + + Cerda + Ivo H + IH + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Williams + Marta + M + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Colman + Mia + M + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Shah + Simran + S + 0000-0001-6298-7558 + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Lam + Alice D + AD + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Cash + Sydney S + SS + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + + Westover + M Brandon + MB + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + Department of Neurology, Beth Israel Deaconess Medical Center, Boston, Massachusetts, United States of America. + + + + Kimchi + Eyal Y + EY + + Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts, United States of America. + + + Department of Neurology, Northwestern University, Chicago, Illinois, United States of America. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLOS Digit Health + 9918335064206676 + 2767-3170 + + I have read the journal’s policy and the authors of this manuscript have the following competing interests: Dr. Cash and Dr. Westover report being a cofounder of, serving as a scientific advisor and consultant to, and having a personal equity interest in Beacon Biosignals outside the submitted work. Beacon Biosignals had no role in the design, data analysis, interpretation, or writing of the manuscript. +
+ + + + 2025 + 10 + 23 + + + 2026 + 5 + 11 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 34 + + + epublish + + 42213702 + 10.1371/journal.pdig.0001462 + PDIG-D-25-00896 + + +
+ + + 42213697 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + A hybrid BiLSTM-transformer-GCN architecture with API fusion for adaptive transportation resource analytics. + + e0349787 + e0349787 + + 10.1371/journal.pone.0349787 + + Intelligent Transportation Systems (ITS) generate large volumes of heterogeneous spatiotemporal data from connected vehicles, road infrastructure, and external contextual services. Effectively discovering, classifying, and managing these transportation resources in real time remains challenging due to dynamic traffic conditions and nonlinear dependencies. This paper proposes a novel hybrid deep learning framework that integrates Bidirectional Long Short-Term Memory (BiLSTM), Transformer encoders, and Graph Convolutional Networks (GCN) with API-based contextual feature fusion for adaptive resource discovery and classification. A multi-objective learning strategy jointly optimizes supervised classification and unsupervised anomaly discovery through reconstruction-based latent feature refinement. Experiments conducted on the Barcelona Accident dataset and the Metro Interstate Traffic Volume dataset demonstrate the superiority of the proposed method. On the combined dataset, the framework achieves an accuracy of 0.882, F1-score of 0.864, and AUC of 0.911, outperforming traditional baselines such as Random Forest (accuracy 0.839) and deep CNN-LSTM (accuracy 0.857). For anomaly discovery, it obtains an AUROC of 0.836 and AUPRC of 0.784 on the Barcelona dataset, and AUROC of 0.819 on the Metro dataset, while achieving the lowest reconstruction error of 0.198. The ablation study shows performance degradation when API fusion (-4.1% accuracy) or GCN modeling (-2.8% accuracy) is removed, confirming their contribution. Inference latency analysis further demonstrates practical deployability with a competitive accuracy-latency trade-off. + Copyright: © 2026 Javeed et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Javeed + Mohammed Saad + MS + + Information Science, Trine University, Michigan,‌‌ Allen Park, United States of America‌. + + + + Biswas + Arindam Kishor + AK + + University of the Cumberlands, Williamsburg, Kentucky, United States of America. + + + + Hasan + Md Nahid + MN + + University of Wisconsin-Milwaukee, Milwaukee, Wisconsin, United States of America. + + + + Maua + Jannatul + J + + Department of Computer Science and Engineering, Bangladesh University of Business and Technology, Dhaka, Bangladesh. + + + + Islam + Rahomotul + R + 0009-0007-1948-0322 + + Department of Computer Science and Engineering, Bangladesh University of Business and Technology, Dhaka, Bangladesh. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Long Short Term Memory + + + Graph Neural Networks + + + Transportation + + + Data Analytics + + + Deep Learning + + + Intelligent Systems + + + Algorithms + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 10 + 26 + + + 2026 + 5 + 5 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 34 + + + epublish + + 42213697 + 10.1371/journal.pone.0349787 + PONE-D-25-57885 + + +
+ + + 42213657 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1932-6203 + + 21 + 5 + + 2026 + + + PloS one + PLoS One + + Towards intelligent railway monitoring: A novel hybrid deep learning architecture for railway obstacle detection. + + e0349562 + e0349562 + + 10.1371/journal.pone.0349562 + + Railways are among the most efficient modes of transportation, capable of moving large quantities of goods and passengers over long distances at relatively low cost. However, accidents frequently occur due to objects or individuals present on the tracks, as trains are unable to swerve and require long braking distances. While the localization of objects within the track bed is a well-explored topic, the reliable and high-performance classification of such obstacles across all relevant categories remains an unresolved challenge. This study proposes an innovative hybrid architecture that leverages the specific visual characteristics of track bed imagery, setting a new benchmark in this domain. The hybrid design effectively leverages the strengths of ResNet50 and Swin Transformer V2, allowing the model to capture both local and global features. In addition, an Efficient Attention Module is integrated to further emphasize the most relevant features for robust obstacle classification. Using stratified five-fold cross-validation on a dataset of 2,003 images across six classes (iron bar, boulder, person, branch, canister, and barrel), the model achieved an average balanced accuracy of 99.46%. The results have implications for accident prevention, improving operational efficiency, and modernizing railway safety systems, thereby enabling the future application of automatic railway surveillance systems to ultimately enhance operational security. + Copyright: © 2026 Mai et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. + + + + Mai + Christopher + C + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + Eisentraut + Luca + L + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + Schadt + Merlin + M + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + Buettner + Ricardo + R + 0000-0003-2263-6408 + + Chair of Hybrid Intelligence, Helmut-Schmidt-University/University of the Federal Armed Forces Hamburg, Hamburg, Germany. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + PLoS One + 101285081 + 1932-6203 + + IM + + + Railroads + + + Deep Learning + + + Humans + + + Detection Algorithms + + + Convolutional Neural Networks + + + Image Processing, Computer-Assisted + methods + + + The authors have declared that no competing interests exist. +
+ + + + 2025 + 11 + 7 + + + 2026 + 5 + 1 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 33 + + + epublish + + 42213657 + 10.1371/journal.pone.0349562 + PONE-D-25-60054 + + +
+ + + 42213596 + + 2026 + 05 + 29 + +
+ + 1944-8252 + + + 2026 + May + 29 + + + ACS applied materials & interfaces + ACS Appl Mater Interfaces + + 3D-Printed Conductive Aerogel Humidity Sensor for Advanced Wearable Sleep and Health Monitoring. + 10.1021/acsami.6c01464 + + Recent advances in personalized sleep medicine and home-based health monitoring have grown rapidly, yet progress remains limited by the lack of comfortable, reliable, and durable sensors for long-term respiration tracking. Here, we present a flexible humidity sensor fabricated through a freeze-drying-assisted direct-ink-writing (DIW) 3D printing strategy. This sensor is constructed from a poly(vinyl alcohol)/nanocellulose/graphene/multiwalled carbon nanotubes (PVA/CNF/Gr/MWCNTs, PCGM) composite aerogel, with a hierarchically porous conductive architecture. This aerogel was stabilized by a biocompatible PVA matrix reinforced by nanocellulose, while graphene ensures high conductivity, and it was further enhanced by carbon nanotubes in the 3D structure. Moreover, the considerable hydrogen bonding and π-π conjugation within this hybrid material contribute to exceptional interfacial stability, water-adsorption capacity, and electrical conductivity, resulting in a remarkable humidity-sensing performance with high sensitivity, fast response/recovery times, and excellent stability across a broad humidity range. Remarkably, the sensor can accurately differentiate diverse sleep postures and respiratory patterns, including normal, snoring, and coughing. Furthermore, we further enabled a 600-sample-trained deep convolutional neural network and achieved a high-precision pattern recognition, with 100% accuracy in respiratory state classification and 97% accuracy for spoken-word recognition classification. Our work provides an integrated strategy for next-generation high-performance wearable health monitoring and human-machine interaction systems. + + + + Chen + Xiaojun + X + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + Department of Food Science and Technology, National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + + Lin + Xitong + X + + School of Mechanical Engineering, Guangdong Ocean University, Zhanjiang 524088, China. + + + + Huang + Yuanyu + Y + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + + Li + Yihuan + Y + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + + Lian + Haishan + H + + School of Mechanical and Electrical Engineering, Lingnan Normal University, Zhanjiang 524048, China. + + + + Zhao + Zhihao + Z + + Department of Food Science and Technology, National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + + Zhou + Jiangtao + J + 0000-0003-4248-2207 + + Department of Food Science and Technology, National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + Bezos Centre for Sustainable Protein at the National University of Singapore, 2 Science Drive 2, Singapore 117542, Singapore. + + + National University of Singapore (Suzhou) Research Institute, 377 Linquan Street, Suzhou Industrial Park, Jiangsu 215123, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + ACS Appl Mater Interfaces + 101504991 + 1944-8244 + + IM + + 3D printing + Composite aerogel + Deep learning + Flexible humidity sensor + Respiration monitoring + +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 13 + 12 + + + aheadofprint + + 42213596 + 10.1021/acsami.6c01464 + + +
+ + + 42213487 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2564-1891 + + 6 + + 2026 + May + 29 + + + JMIR infodemiology + JMIR Infodemiology + + Early Depression Detection in Social Media: Monitoring of Individual Nighttime Dynamics and Large Language Model Analysis. + + e87138 + e87138 + + 10.2196/87138 + + Depression has become a major global public health challenge, and early intervention is critical for improving patient outcomes. Current depression detection techniques based on social media data (traditional risk detection) rely heavily on users' complete historical information, which cannot meet the timeliness requirements of early intervention. This underscores the need for early risk detection (ERD) methods emphasizing early-stage, real-time warning. However, existing ERD studies have notable limitations such as (1) they overlook temporal activity patterns hidden in posting time stamps, missing vital warning signals; and (2) they depend on static templates or resource-intensive sequence models, resulting in limited interpretability and inefficient use of early data, ultimately constraining their clinical applicability for early intervention. + This study aims to develop an efficient, reliable, and interpretable ERD model. The core objectives are to extract temporal activity patterns features from posting time stamps, thereby enriching feature dimensions for risk detection; to leverage large language models (LLMs) for improved text filtering precision and depression-related factor analysis; and to achieve accurate early detection of depression to support clinical intervention. + We propose the Monitoring of Individual Nighttime Dynamics (MIND) and LLM analysis model, which integrates two key innovations: (1) circadian activity dynamics: posting time stamps are transformed into temporal activity patterns, analyzing fluctuations in posting frequency and timing to derive sleep-related features, thereby compensating for the limitations of text-only approaches, and (2) LLM depression profiler: LLMs are used for dynamic text filtering, automatically removing irrelevant noise and focusing on potential depression-related cues. Based on LLM semantic understanding, latent depression risk factors are identified, enhancing interpretability for clinical treatment and robustness to noise. + Experiments on the eRisk2017 (data source: Reddit [Reddit Inc]) benchmark dataset demonstrated that MIND significantly outperformed existing baseline models in early detection sensitivity, specificity, and accuracy. By combining sleep-related features with text analysis, the model achieved interpretable, traceable predictions that can support clinical treatment. ALL relevant experimental code is publicly available. + The MIND model combines temporal activity pattern features with LLM-based text analysis, addressing the challenges of poor interpretability and inefficient use of early-stage data in existing ERD methods. It significantly enhances early detection performance, offering a new paradigm for applying social media data in ERD, thereby enabling earlier intervention and reducing the public health burden of depression. + ©Bicheng Yu, Zhichang Zhang, Lulu Ma, Jiongfu Cai, Yuanyuan Zhang. Originally published in JMIR Infodemiology (https://infodemiology.jmir.org), 29.05.2026. + + + + Yu + Bicheng + B + 0009-0009-8280-6414 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Zhang + Zhichang + Z + 0000-0003-3306-8493 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Ma + Lulu + L + 0009-0009-1573-3534 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Cai + Jiongfu + J + 0009-0006-0608-6097 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + Zhang + Yuanyuan + Y + 0009-0002-0645-3409 + + College of Artificial Intelligence and Computer Science, Northwest Normal University, Lanzhou, Gansu, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Infodemiology + 9918249014806676 + 2564-1891 + + IM + + + Humans + + + Large Language Models + + + Social Media + statistics & numerical data + + + Depression + diagnosis + + + Early Diagnosis + + + + circadian rhythm + depression + early risk detection + large language model + sleep analysis + +
+ + + + 2025 + 11 + 5 + + + 2026 + 4 + 29 + + + 2026 + 3 + 30 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 11 + 53 + + + epublish + + 42213487 + 10.2196/87138 + v6i1e87138 + + +
+ + + 42213480 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2369-3762 + + 12 + + 2026 + May + 29 + + + JMIR medical education + JMIR Med Educ + + Performance of Large Language Models on the Brazilian National Medical Education Examination: Comparative Benchmark Study. + + e89839 + e89839 + + 10.2196/89839 + + Large language models (LLMs) are rapidly incorporated into medical education and examination preparation; yet, most benchmarking evidence is derived from English-language material. Whether frontier commercial models and Brazilian Portuguese domain-specialized systems perform equivalently on high-stakes Brazilian medical examinations remains unclear. + This study aims to quantify and compare the performance of 9 frontier commercial LLMs and 1 Brazilian Portuguese domain-specialized system (Charcot, Voa Health) on 2026 Brazilian National Medical Education Examination (Exame Nacional de Avaliação da Formação Médica [ENAMED] 2026) and to describe the patterns of systematic between-model error as complementary quality signal. + All 100 items of ENAMED 2026 (99 valid after annulment) were administered to 10 frontier-panel models across 5 independent runs under identical Portuguese prompts (temperature=0; top-p=.95). Commercial models were accessed through a unified OpenRouter client layer (DeepSeek provider-pinned). The primary outcome was mean accuracy against the preliminary key; the secondary outcomes were convergence error (CE), normalized mean response time (NMRT), and intermodel agreement. Accuracy was analyzed with Shapiro-Wilk, Levene, Kruskal-Wallis (ε2), Dunn-Holm post hoc, and a binomial generalized linear mixed model with question and run random intercepts. NMRT excluded Charcot (different stack) and Grok 4 (latency outlier). A total of 7 open-weight and small language models were assessed as a small language model (SLM) substudy. + Frontier-panel accuracy ranged from 73.74% (365/495) for GPT-4o-mini to 96.97% (480/495) for Charcot. Accuracy was nonnormal (Shapiro-Wilk, W=0.82; P<.001) with homogeneous variance (Levene P=.26). Kruskal-Wallis showed large between-model differences (H9=47.65; P<.001; ε2=0.97). Dunn-Holm flagged 8 of 45 pairs: Charcot was separable from GPT-4o-mini, DeepSeek v3.2-exp, and Grok 4, but not from the top frontier cluster. The generalized linear mixed model preserved the ranking (all comparators odds ratio<1 vs Charcot; upper CI<1 except GPT-5). A total of 9 items met the default CE criterion; item 77 showed 10-of-10 convergence, later confirmed by Instituto Nacional de Estudos e Pesquisas Educacionais Anísio Teixeira rectification, and sensitivity analysis preserved the CE set (5-20 items). Intermodel agreement was high (Fleiss κ=0.852; Krippendorff α=.852). Among 8 retained commercial models, NMRT correlated positively with accuracy (Spearman ρ=0.74; P=.04); these results are interpreted as descriptive of an orchestration-level latency-accuracy law. SLM accuracy ranged from 47.47% (Gemma 3 4B) to 82.22% (GPT-OSS 120B), with lower agreement (Fleiss κ=0.508) and 17 CE items. The best SLM-panel model lagged every frontier-panel model except GPT-4o-mini, with a 12-15 percentage-point gap against the top cluster. + On ENAMED 2026, a Brazilian Portuguese domain-specialized system ranked first, indistinguishable from frontier commercial cluster and above subfrontier and open-weight systems. Charcot's architecture is not publicly disclosed; these findings should be interpreted as comparative black-box evidence of performance and not as mechanistic evidence of specialization. CE was stable, and it prospectively flagged 1 rectified item, supporting its use as a quality assurance screen. + ©Francys de Luca Fernandes da Silva, Eduardo Augusto Roeder, João Victor Bruneti Severino, Matheus Nespolo Berger, Pedro Angelo Basei de Paula, Davi Ferreira, Maria Han Veiga, Thyago Proença de Moraes, Gustavo Lenci Marques. Originally published in JMIR Medical Education (https://mededu.jmir.org), 29.05.2026. + + + + Fernandes da Silva + Francys de Luca + FL + 0000-0001-9214-691X + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + + Roeder + Eduardo Augusto + EA + 0000-0002-1016-3319 + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Bruneti Severino + João Victor + JV + 0000-0002-8649-6494 + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Nespolo Berger + Matheus + M + 0009-0000-0815-3288 + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Basei de Paula + Pedro Angelo + PA + 0009-0000-6271-6862 + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + Ferreira + Davi + D + 0000-0003-1151-9652 + + Instituto Tecnológico de Aeronáutica, São José dos Campos, São Paulo, Brazil. + + + + Han Veiga + Maria + M + 0009-0008-8261-5258 + + The Ohio State University, Columbus, OH, United States. + + + + de Moraes + Thyago Proença + TP + 0000-0002-2983-3968 + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + + Lenci Marques + Gustavo + G + 0000-0002-6057-0350 + + R. Imac. Conceição, 1155 - Prado Velho, Pontifícia Universidade Católica do Paraná, Curitiba, Paraná, Brazil. + + + Universidade Federal do Paraná, Curitiba, Paraná, Brazil. + + + + eng + + Journal Article + Comparative Study + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Med Educ + 101684518 + 2369-3762 + + IM + + + Large Language Models + + + Brazil + + + Humans + + + Benchmarking + methods + + + Educational Measurement + methods + standards + statistics & numerical data + + + Education, Medical + standards + methods + + + + Brazilian Portuguese + ENAMED + Exame Nacional de Avaliação da Formação Médica + artificial intelligence + benchmarking + clinical reasoning + large language models + medical education + +
+ + + + 2025 + 12 + 20 + + + 2026 + 5 + 8 + + + 2026 + 4 + 28 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 11 + 52 + + + epublish + + 42213480 + 10.2196/89839 + v12i1e89839 + + +
+ + + 42213376 + + 2026 + 05 + 29 + +
+ + 1573-501X + + + 2026 + May + 29 + + + Molecular diversity + Mol Divers + + M-Tune: imbalanced data handling in machine learning by tuning the decision threshold. + 10.1007/s11030-026-11600-8 + + Overprediction of the majority class and poor predictive performance are the major issues when training machine learning classifiers with imbalanced data. This eventually leads to a larger misclassification rate and bias towards the majority class. This is a real-world problem, especially when dealing with biological datasets. There are several popular methods, including Random Under Sampling (RUS), Synthetic Minority Oversampling Technique (SMOTE), and Generalized tHreshOld ShifTing (GHOST). However, these methods either articulate the no. of samples or are biased towards the majority class. In this study, we developed a novel strategy, "M-Tune", a simple yet powerful technique for addressing the class imbalance problem. This procedure employs an ensemble approach that incorporates threshold shifting and majority voting. This new method can effectively predict the minority class. The developed method was rigorously tested with 138 drug discovery datasets. We further rigorously evaluate the performance of the M-Tune method for two classifiers with eleven different fingerprints and find that classifiers benefit from M-Tune in effectively classifying the minority class. The M-Tune method outperformed the other strategies, including the GHOST method and SMOTE and achieved comparable performance with RUS in identifying minority classes. In conclusion, we demonstrated a new threshold procedure that can be effectively applied to real-world imbalanced datasets, i.e., drug discovery data sets where the class datasets are highly imbalanced. This method aids in identifying the minority class in highly imbalanced datasets, in general, and in drug discovery datasets, in particular. Although M-Tune increases false positive predictions relative to conservative thresholding strategies, it provides a practical advantage in applications where maximizing active compound recovery is prioritized. + © 2026. The Author(s), under exclusive licence to Springer Nature Switzerland AG. + + + + Dutta + Tapos + T + + School of Computing Science, The Assam Kaziranga University, Jorhat, 785006, India. + + + + Chutia + Hillul + H + + Advanced Computation and Data Sciences Division, CSIR-North East Institute of Science and Technology, Jorhat, 785006, India. + + + + Nagamani + Selvaraman + S + + Advanced Computation and Data Sciences Division, CSIR-North East Institute of Science and Technology, Jorhat, 785006, India. nagamaniselvaraman@gmail.com. + + + Academy of Scientific and Innovative Research (AcSIR), Ghaziabad, 201002, India. nagamaniselvaraman@gmail.com. + + + + eng + + + BT/PR40188/BTIS/137/27/2021 + Department of Biotechnology, Ministry of Science and Technology, India + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + Mol Divers + 9516534 + 1381-1991 + + IM + + Bioactive datasets + Class imbalance problem + Data handling + Machine learning + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 7 + 18 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 11 + 20 + + + aheadofprint + + 42213376 + 10.1007/s11030-026-11600-8 + 10.1007/s11030-026-11600-8 + + + + Abd Elrahman SM, Abraham A (2013) A review of class imbalance problem. J Netw Innovative Comput 1:332–340 + + + Haixiang G, Yijing L, Shassng J, Mingyun G, Yuanyue H, Bing G (2017) Learning from class-imbalanced data: review of methods and applications. Expert Syst Appl 73:220–239 + + 10.1016/j.eswa.2016.12.035 + + + + Tong X, Feng Y, Li JJ (2018) Neyman-Pearson classification algorithms and NP receiver operating characteristics. Sci Adv 4:1–10 + + 10.1126/sciadv.aao1659 + + + + Kaur H, Pannu HS, Malhi AK (2019) A systematic review on imbalanced data challenges in machine learning: applications and solutions. ACM Comput Surv 52:1–36 + + + Weiss GM (2004) Mining with rarity: a unifying framework. SIGKDD Explor Newsl 6:7–19 + + 10.1145/1007730.1007734 + + + + Provost F, Fawcett T (2001) Robust classification for imprecise environments. Mach Learn 42:203–231 + + 10.1023/A:1007601015854 + + + + Japkowicz N, Stephen S (2002) The class imbalance problem: a systematic study. Intell Data Anal 6:429–449 + + 10.3233/IDA-2002-6504 + + + + López V, Fernández A, García S, Palade V, Herrera F (2013) An insight into classification with imbalanced data: empirical results and current trends on using data intrinsic characteristics. Inf Sci 250:113–141 + + 10.1016/j.ins.2013.07.007 + + + + Wellintz J, Jain S, Hochuli JE, Maxfield T, Muratov EN, Tropsha A, Zakharov AV (2025) One size does not fit all: revising traditional paradigms for assessing accuracy of QSAR models used for virtual screening. J Cheminform 17:7 + + 10.1186/s13321-025-00948-y + + + + Seal S, Mahale M, Ortegon MG (2025) Machine learning for toxicity prediction using chemical structures: pillars for success in the real world. Chem Res Toxicol 38:759–807 + + + Sun Y, Wong AK, Kamel MS (2009) Classification of imbalanced data: a review. Int J Pattern Recognit Artif Intell 23:687–719 + + 10.1142/S0218001409007326 + + + + V Ganganwar (2012) An overview of classification algorithms for imbalanced datasets. Int J Emerg Technol Adv Eng 2:42–47 + + + Estabrooks A, Jo T, Japkowicz N (2004) A multiple resampling method for learning from imbalanced data sets. Comput Intell 20:18–36 + + 10.1111/j.0824-7935.2004.t01-1-00228.x + + + + García V, Sánchez JS, Mollineda RA (2012) On the effectiveness of preprocessing methods when dealing with different levels of class imbalance. Knowl -Based Syst 25:13–21 + + 10.1016/j.knosys.2011.06.013 + + + + Fernández A, García S, Galar M, Prati RC, Krawczyk B, Herrera F (2018) Learning from imbalanced data sets. Springer, 123 – 146 + + 10.1007/978-3-319-98074-4 + + + + Elkan C (2001) Foundations of cost-sensitive learning. In: Proceedings of the 17th international joint conference on artificial intelligence, pp 973 – 978 + + + Galar M, Fernandez A, Barrenechea E, Bustince H, Herrera F (2012) A review on ensembles for the class imbalance problem: bagging-, boosting-, and hybrid-based approaches. IEEE Trans Syst Man Cybern C Appl Rev 42:463–484 + + 10.1109/TSMCC.2011.2161285 + + + + Cao H, Li X-L, Woon DY-K, Ng S-K (2013) Integrated oversampling for imbalanced time series classification. IEEE Trans Knowl Data Eng 25:2809–2822 + + 10.1109/TKDE.2013.37 + + + + Nekooeimehr I, Lai-Yuen SK (2016) Adaptive semi-unsupervised weighted oversampling (A-SUWO) for imbalanced datasets. Expert Syst Appl 46:405–416 + + 10.1016/j.eswa.2015.10.031 + + + + Kumar NS, Rao KN, Govardhan A, Reddy KS, Mahmood AM (2014) Undersampled K-means approach for handling imbalanced distributed data. Prog Artif Intell 3:29–38 + + 10.1007/s13748-014-0045-6 + + + + Anand A, Pugalenthi G, Fogel GB, Suganthan P (2010) An approach for classification of highly imbalanced data using weighting and undersampling. Amino Acids 39:1385–1391 + + 20411285 + 10.1007/s00726-010-0595-2 + + + + Song J, Huang X, Qin S, Song QA (2016) Bi-directional Sampling Based on K-means method for imbalance text classification. In: 2016 IEEE/ACIS 15th international conference on computer and, science I (ICIS), pp 1 – 5 + + + Cateni S, Colla V, Vannucci M (2014) A method for resampling imbalanced datasets in binary classification tasks for real-world problems. Neurocomput 135:32–41 + + 10.1016/j.neucom.2013.05.059 + + + + Al-Stouhi S, Reddy CK (2016) Transfer learning for class imbalance problems with inadequate data. Knowl Inf Syst 48:201–228 + + 27378821 + 10.1007/s10115-015-0870-3 + + + + Saha US, Vendruscolo M, Carpenter AE, Singh S, Bender A, Seal S (2024) Step forward cross validation for bioactivity prediction: Out of distribution validation in drug discovery bioRxiv Jul 4:07.02.601740 + + + Sheng VS, Ling CX (2006) Thresholding for making classifiers cost-sensitive. In: Proceedings of the 21st national conference on AI, pp 476 – 481 + + + King G, Zeng L (2001) Logistic regression in rare events data. Polit Anal 9:137–163 + + 10.1093/oxfordjournals.pan.a004868 + + + + Zou Q, Xie S, Lin Z, Wu M, Ju Y (2016) Finding the best classification threshold in imbalanced classification. Big Data Res 5:2–8 + + 10.1016/j.bdr.2015.12.001 + + + + Johnson JM, Khoshgoftaar TM (2021) In Deep learning applications. Wani MA, Khoshgoftaar TM, Palade V (Eds) Springer, Singapore, vol 2, pp 199 – 227 + + + Korkmaz S (2020) Deep learning-based imbalanced data classification for drug discovery. J Chem Inf Model 60:4180–4190 + + 32573225 + 10.1021/acs.jcim.9b01162 + + + + Esposito C, Wang S, Lange UE, Oellien F, Riniker S (2020) Combining machine learning and molecular dynamics to predict PGlycoprotein substrates. J Chem Inf Model 60:4730–4749 + + 32786699 + 10.1021/acs.jcim.0c00525 + + + + Ruopp MD, Perkins NJ, Whitcomb BW, EF Schisterman (2008) Youden index and optimal cut-point estimated from observations affected by a lower limit of detection. Biom J 50:419–430 + + 18435502 + 2515362 + 10.1002/bimj.200710415 + + + + Song B, Zhang G, Zhu W, Liang Z (2014) ROC operating point selection for classification of imbalanced data with application to computer-aided polyp detection in CT colonography. Int J Comput Assist Radiol Surg 9:79–89 + + 23797823 + 3835757 + 10.1007/s11548-013-0913-8 + + + + Fawcett T (2006) An introduction to ROC analysis. Pattern Recognit Lett 27:861–874 + + 10.1016/j.patrec.2005.10.010 + + + + Yu H, Mu C, Sun C, Yang W, Yang X, Zuo X (2015) SupportVector machine-based optimized decision threshold adjustment strategy for classifying imbalanced. Data. Knowl -Based Syst 76:67–78 + + 10.1016/j.knosys.2014.12.007 + + + + Mazumdar B, Sarma PKD, Mahanta HJ, Sastry GN (2023) Machine learning based dynamic consensus model for predicting blood-brain barrier permeability. Comput Biol Med 160:106984 + + 37137267 + 10.1016/j.compbiomed.2023.106984 + + + + John L, Mahanta HJ, Soujanya Y, Sastry GN (2023) Assessing machine learning approaches for predicting failures of investigational drug candidates during clinical trials. Comput Biol Med 153:106494 + + 36587568 + 10.1016/j.compbiomed.2022.106494 + + + + Madugula SS, John L, Nagamani S, Gaur AS, Poroikov VV, Sastry GN (2021) Molecular descriptor analysis of approved drugs using unsupervised learning for drug repurposing. Comput Biol Med 138:104856 + + 34555571 + 10.1016/j.compbiomed.2021.104856 + + + + Korkmaz S (2020) Deep learning-based imbalanced data classification for drug discovery. J Chem Inf Model 60:4180–4190 + + 32573225 + 10.1021/acs.jcim.9b01162 + + + + Gadaleta D, Vukovic K, Toma C, Lavado GJ, Karmaus AL, Mansouri K, Kleinstreuer NC, Benfenati E, Roncaglioni A (2019) SAR and QSAR modeling of a large collection of LD50 rat acute oral toxicity data. J Cheminf 11:58 + + 10.1186/s13321-019-0383-2 + + + + Esposito C, Landrum GA, Schneider N, Stiefl N, Riniker (2021) GHOST: adjusting the decision threshold to handle imbalanced data in machine learning. J Chem Inf Model 61:2623–2640 + + 34100609 + 10.1021/acs.jcim.1c00160 + + + + He H (2009) Learning from imbalanced data. IEEE Trans Knowl Data Shar 21:1263–1284 + + 10.1109/TKDE.2008.239 + + + + Chawla NV, Bowyer KW, Hall LO, Kegelmeyer WP (2002) Synthetic minority over-sampling technique. J Artif Intell Res 16:321–357 + + 10.1613/jair.953 + + + + Awale M, JL Reymond (2014) Atom pair 2D-fingerprints perceive 3D-molecular shape and pharmacophores for very fast virtual screening of ZINC and GDB-17. J Chem Inf Model 54:1892–1907 + + 24988038 + 10.1021/ci500232g + + + + Willighagen EL, Mayfield JW, Alvarsson J, Berg A, Carlsson L, Jeliazkova N, Kuhn S, Pluskal T, Rojas-Chertó M, Spjuth O, Torrance G, Evelo CT, Guha R, C Steinbeck (2017) The Chemistry Development Kit (CDK) v2.0: atom typing, depiction, molecular formulas, and substructure searching. Aust J Chem 9:33 + + + Hall LH, LB Kier (1995) Electrotopological state indices for atom types: a novel combination of electronic, topological, and valence state information. J Chem Inf Comput Sci 35:1039–1045 + + 10.1021/ci00028a014 + + + + Klekota J, FP Roth (2008) Chemical substructures that enrich for biological activity. Bioinformatics 24:2518–2525 + + 18784118 + 2732283 + 10.1093/bioinformatics/btn479 + + + + Durant JL, Leland BA, Henry DR, Nourse JG (2002) Reoptimization of MDL keys for use in drug discovery. J Chem Inf Comput Sci 42:1273–1280 + + 12444722 + 10.1021/ci010132r + + + + Kim S, Thiessen PA, Bolton EE, Chen J, Fu G, Gindulyte A, Han L, He J, He S, Shoemaker BA, Wang J, Yu B, Zhang J, Bryant SH (2016) PubChem substance and compound databases. Nucleic Acids Res 44:D1202–D1213 + + 26400175 + 10.1093/nar/gkv951 + + + + CW Yap (2011) PaDEL-descriptor: an open source software to calculate molecular descriptors and fingerprints. J Comput Chem 32:1466–1474 + + 21425294 + 10.1002/jcc.21707 + + + + Lemaître G, Nogueira F, Aridas CK (2017) Imbalanced-learn: a python toolbox to tackle the curse of imbalanced datasets in machine learning. J Mach Learn Res 18:559–563 + + + Chen T, Guestrin C (2016) XGBoost: a scalable tree boosting system. In: 22nd SIGKDD conference on knowledge discovery and data mining + + + Prokhorenkova L 1, Gusev G, Vorobev A, Dorogush AV, Gulin A (2018) CatBoost: unbiased boosting with categorical features. In: 32nd conference on neural information processing systems (NIPS 2018); Montréal, Canada + + + Wilcoxon F (1992) Breakthroughs in Statistics. Springer, 196 – 202 + + + Virtanen P, Gommers R, Oliphant TE, Haberland M, Reddy T, Cournapeau D, Burovski E, Peterson P, Weckesser W, Bright J, van der Walt SJ, Brett M, Wilson J, Jarrod Millman K, Mayorov N, Nelson ARJ, Jones E, Kern R, Larson E, Carey C, Polat l, Feng Y, Moore EW, erPlas JV, Laxalde D, Perktold J, Cimrman R, Henriksen I, Quintero EA, Harris CR, Archibald AM, Ribeiro AH, Pedregosa F, van Mulbregt P (2020) SciPy 1.0: fundamental algorithms for scientific computing in python. Nat Methods 17:261–272 + + 32015543 + 7056644 + 10.1038/s41592-019-0686-2 + + + + C Bonferroni (1936) Teoria Statistica delle Classi e Calcolo delle Probabilita. Pubblicazioni del R Istituto Superiore di Scienze Economiche e Commericiali di Firenze. 8:3– 62 + + + Raudys SJ, AK Jain (1991) Small sample size effects in statistical pattern recognition: recommendations for practitioners. IEEE Trans Pattern Anal Mach Intell 13:252–264 + + 10.1109/34.75512 + + + + Napieral ́ a K, Stefanowski J, Wilk S (2010) Learning from imbalanced data in presence of noisy and borderline examples. In: International conference on rough sets and current trends in computing, vol 6086, pp 158 – 167 + + + Holte RC, Acker L, Porter BW (1989) Concept learning and the problem of small disjuncts. In: Proceedings of the 11th IJCAI, pp 813– 818 + + + +
+ + + 42213288 + + 2026 + 05 + 29 + +
+ + 1880-344X + + + 2026 + May + 29 + + + Journal of echocardiography + J Echocardiogr + + Explainable machine learning for estimation of elevated left ventricular filling pressure: a multicenter validation. + 10.1007/s12574-026-00738-x + + Guideline-recommended algorithms (GL-algorithm) often results in indeterminate left ventricular filling pressure (LVFP). Despite high accuracy, machine learning (ML) methods lack interpretability, which necessitates the development of explainable ML models for clinical use. + To develop an explainable ML model for estimating LVFP, providing patient-level interpretation using gold-standard right heart catheterization (RHC) data. + We retrospectively enrolled 956 patients who underwent echocardiography and RHC at three hospitals within a median of 3 days. Two extreme gradient boosting models were trained using data from two hospitals (n = 621) to estimate elevated pulmonary artery wedge pressure (PAWP ≥ 18 mmHg) as a surrogate for elevated LVFP. Model 1 used variables from GL-algorithm, while Model 2 used variables selected based on Shapley additive explanations (SHAP) values. Models' area under the receiver-operating characteristic curve (AUROC) for elevated LVFP were compared using external test data from the other hospital (n = 335). + Overall, 31.0% had elevated PAWP, and 42.7% were classified as indeterminate LVFP by GL-algorithm, whereas the ML models classified all patients. AUROCs of Model 1 (0.82, 95% CI 0.73-0.92) and Model 2 (0.83, 95% CI 0.75-0.91) in classifiable cases by GL-algorithm significantly outperformed that of GL-algorithm (0.72, 95% CI 0.60-0.83, p = 0.020 and 0.016, respectively), Model 2 performed equally well for indeterminate cases. SHAP force plots visualized each variable's contribution to the ML model's decision for each patient. + Explainable ML outperformed GL-algorithm in estimating LVFP, providing a user-friendly tool for clinicians with patient-level interpretability. + © 2026. Japanese Society of Echocardiography. + + + + Nakamura + Yutaka + Y + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Kagiyama + Nobuyuki + N + 0000-0002-2305-0049 + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. kgnb_27_hot@yahoo.co.jp. + + + Data Science Course, Juntendo University, Tokyo, Japan. kgnb_27_hot@yahoo.co.jp. + + + Department of Cardiovascular Medicine, Juntendo University Graduate School of Medicine, 2-1-1 Hongo, Tokyo, 113-0021, Japan. kgnb_27_hot@yahoo.co.jp. + + + + Shrestha + Sirish + S + + Center for Creative Leadership, Greensboro, USA. + + + + Akama + Yuka + Y + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Kito + Shusuke + S + + Data Science Course, Juntendo University, Tokyo, Japan. + + + + Takamatsu + Sachiko + S + + Department of Nursing, The Sakakibara Heart Institute of Okayama, Okayama, Japan. + + + + Toki + Misako + M + + Department of Clinical Laboratory, The Sakakibara Heart Institute of Okayama, Okayama, Japan. + + + + Kitai + Takeshi + T + + Department of Cardiovascular Medicine, Kobe City Medical Center General Hospital, Kobe, Japan. + + + Department of Heart Failure, National Cerebral and Cardiovascular Center, Suita, Japan. + + + + Okada + Taiji + T + + Department of Cardiovascular Medicine, Kobe City Medical Center General Hospital, Kobe, Japan. + + + Division of Cardiology, Shimane University Faculty of Medicine, Izumo, Japan. + + + + Murata + Azusa + A + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Kaneko + Tomohiro + T + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Matsue + Yuya + Y + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Miyazaki + Sakiko + S + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Okazaki + Shinya + S + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + Minamino + Tohru + T + + Department of Cardiovascular Biology and Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan. + + + + eng + + + 25K19371 + Japan Society for the Promotion of Scienc + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Japan + J Echocardiogr + 101263153 + 1349-0222 + + IM + + Explainable AI + Heart failure + Left ventricular filling pressure + Machine learning + SHAP + +
+ + + + 2025 + 12 + 21 + + + 2026 + 5 + 12 + + + 2026 + 5 + 2 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 11 + 18 + + + aheadofprint + + 42213288 + 10.1007/s12574-026-00738-x + 10.1007/s12574-026-00738-x + + + + GBD 2017 Disease and Injury Incidence and Prevalence Collaborators. Global, regional, and national incidence, prevalence, and years lived with disability for 354 diseases and injuries for 195 countries and territories. Lancet. 2018;392:1789–858. + + + Bozkurt B, Ahmad T, Alexander KM, Baker WL, Bosak K, Breathett K, et al. Heart failure epidemiology and outcomes statistics: a report of the Heart Failure Society of America. J Card Fail. 2023;29:1412–51. + + 10.1016/j.cardfail.2023.07.006 + 37797885 + 10864030 + + + + Shimokawa H, Miura M, Nochioka K, Sakata Y. Heart failure as a general pandemic in Asia. Eur J Heart Fail. 2015;17:884–92. + + 10.1002/ejhf.319 + 26222508 + + + + Savarese G, Becher PM, Lund LH, Seferovic P, Rosano GMC, Coats AJS. Global burden of heart failure: a comprehensive and updated review of epidemiology. Cardiovasc Res. 2023;118:3272–87. + + 10.1093/cvr/cvac013 + 35150240 + + + + Nagueh SF, Smiseth OA, Appleton CP, Byrd BF 3rd, Dokainish H, Edvardsen T, et al. Recommendations for the evaluation of Left ventricular diastolic function by echocardiography: an update from the American Society of Echocardiography and the European Association of Cardiovascular Imaging. J Am Soc Echocardiogr. 2016;29:277–314. + + 10.1016/j.echo.2016.01.011 + 27037982 + + + + Andersen OS, Smiseth OA, Dokainish H, Abudiab MM, Schutt RC, Kumar A, et al. Estimating left ventricular filling pressure by echocardiography. J Am Coll Cardiol. 2017;69:1937–48. + + 10.1016/j.jacc.2017.01.058 + 28408024 + + + + Lancellotti P, Galderisi M, Edvardsen T, Donal E, Goliasch G, Cardim N, et al. Echo-Doppler estimation of left ventricular filling pressure: results of the multicentre EACVI Euro-Filling study. Eur Heart J Cardiovasc Imaging. 2017;18:961–8. + + 10.1093/ehjci/jex067 + 28444160 + + + + Sato K, Grant ADM, Negishi K, Cremer PC, Negishi T, Kumar A, et al. Reliability of updated left ventricular diastolic function recommendations in predicting elevated left ventricular filling pressure and prognosis. Am Heart J. 2017;189:28–39. + + 10.1016/j.ahj.2017.03.022 + 28625379 + + + + Playford D, Strange G, Celermajer DS, Evans G, Scalia GM, Stewart S, et al. Diastolic dysfunction and mortality in 436 360 men and women: the National Echo Database Australia (NEDA). Eur Heart J Cardiovasc Imaging. 2021;22:505–15. + + 10.1093/ehjci/jeaa253 + 33245344 + 8081414 + + + + Kagiyama N, Shrestha S, Farjo PD, Sengupta PP. Artificial intelligence: practical primer for clinical research in cardiovascular disease. J Am Heart Assoc. 2019;8:e012788. + + 10.1161/JAHA.119.012788 + 31450991 + 6755846 + + + + Tamura Y, Nomura A, Kagiyama N, Mizuno A, Node K. Digitalomics, digital intervention, and designing future: the next frontier in cardiology. J Cardiol. 2024;83:318–22. + + 10.1016/j.jjcc.2023.12.002 + 38135148 + + + + Farjo PD, Yanamala N, Kagiyama N, Patel HB, Casaclang-Verzosa G, Nezarat N, et al. Prediction of coronary artery calcium scoring from surface electrocardiogram in atherosclerotic cardiovascular disease: a pilot study. Eur Heart J Digit Health. 2020;1:51–61. + + 10.1093/ehjdh/ztaa008 + 37056293 + 10087019 + + + + Misumi K, Matsue Y, Nogi K, Fujimoto Y, Kagiyama N, Kasai T, et al. Derivation and validation of a machine learning-based risk prediction model in patients with acute heart failure. J Cardiol. 2023;81:531–6. + + 10.1016/j.jjcc.2023.02.006 + 36858175 + + + + Pandey A, Kagiyama N, Yanamala N, Segar MW, Cho JS, Tokodi M, et al. Deep-learning models for the echocardiographic assessment of diastolic dysfunction. JACC Cardiovasc Imaging. 2021;14:1887–900. + + 10.1016/j.jcmg.2021.04.010 + 34023263 + + + + Lancaster MC, Salem Omar AM, Narula S, Kulkarni H, Narula J, Sengupta PP. Phenotypic clustering of left ventricular diastolic function parameters: patterns and prognostic relevance. JACC Cardiovasc Imaging. 2019;12:1149–61. + + 10.1016/j.jcmg.2018.02.005 + 29680357 + + + + Lang RM, Badano LP, Mor-Avi V, Afilalo J, Armstrong A, Ernande L, et al. Recommendations for cardiac chamber quantification by echocardiography in adults: an update from the American Society of Echocardiography and the European Association of Cardiovascular Imaging. J Am Soc Echocardiogr. 2015;28:1-39.e14. + + 10.1016/j.echo.2014.10.003 + 25559473 + + + + Nagueh SF, Sanborn DY, Oh JK, Anderson B, Billick K, Derumeaux G, et al. Recommendations for the evaluation of left ventricular diastolic function by echocardiography and for heart failure with preserved ejection fraction diagnosis: an update from the American Society of Echocardiography. J Am Soc Echocardiogr. 2025;38:537–69. + + 10.1016/j.echo.2025.03.011 + 40617625 + + + + Heidenreich PA, Bozkurt B, Aguilar D, Allen LA, Byun JJ, Colvin MM, et al. 2022 AHA/ACC/HFSA guideline for the management of heart failure: a report of the American College of Cardiology/American Heart Association Joint Committee on clinical practice guidelines. J Am Coll Cardiol. 2022;79:e263–421. + + 10.1016/j.jacc.2021.12.012 + 35379503 + + + + McDonagh TA, Metra M, Adamo M, Gardner RS, Baumbach A, Böhm M, et al. 2021 ESC Guidelines for the diagnosis and treatment of acute and chronic heart failure: developed by the task force for the diagnosis and treatment of acute and chronic heart failure of the European Society of Cardiology (ESC) With the special contribution of the Heart Failure Association (HFA) of the ESC. Eur Heart J. 2021;42:3599–726. + + 10.1093/eurheartj/ehab368 + 34447992 + + + + Forrester JS, Diamond GA, Swan HJ. Correlative classification of clinical and hemodynamic function after acute myocardial infarction. Am J Cardiol. 1977;39:137–45. + + 10.1016/S0002-9149(77)80182-3 + 835473 + + + + Chen T, Guestrin C. XGBoost a scalable tree boosting system. Knowl discovery data Min. 2016. https://doi.org/10.48550/arXiv.1603.02754 + + 10.48550/arXiv.1603.02754 + + + + Lundberg S, Lee S-I. A unified approach to interpreting model predictions. Neural information processing systems. 2017. https://doi.org/10.48550/arXiv.1705.07874 + + + van de Bovenkamp AA, Enait V, de Man FS, Oosterveer FTP, Bogaard HJ, Vonk Noordegraaf A, et al. Validation of the 2016 ASE/EACVI guideline for diastolic dysfunction in patients with unexplained dyspnea and a preserved left ventricular ejection fraction. J Am Heart Assoc. 2021;10:e021165. + + 10.1161/JAHA.121.021165 + 34476984 + 8649534 + + + + Almeida JG, Fontes-Carvalho R, Sampaio F, Ribeiro J, Bettencourt P, Flachskampf FA, et al. Impact of the 2016 ASE/EACVI recommendations on the prevalence of diastolic dysfunction in the general population. Eur Heart J Cardiovasc Imaging. 2018;19:380–6. + + 10.1093/ehjci/jex252 + 29236978 + + + + Luke P, Eggett C, Spyridopoulos I, Irvine T. A comparative analysis of British and American Society of Echocardiography recommendations for the assessment of left ventricular diastolic function. Echo Res Pract. 2018;5:139–47. + + 10.1530/ERP-18-0024 + 30400022 + 6215898 + + + + Kusunose K, Ooka S, Yamada H, Sata M. The 2025 echocardiographic diastolic function algorithm is associated with improved risk stratification in hospitalized patients with heart failure. J Am Soc Echocardiogr. 2026;39:373–84. + + 10.1016/j.echo.2025.12.008 + 41475581 + + + + Harada T, Sorimachi H, Obokata M, Naser JA, Ibe T, Tada A, et al. Echocardiographic diastolic function grading in HFpEF: testing the updated 2025 ASE criteria. J Am Coll Cardiol. 2026;87:1261–75. + + 10.1016/j.jacc.2025.11.024 + 41532943 + + + + Inoue K, Obokata M. Clinical utility of the left atrial strain analysis. J Echocardiogr. 2025;23:145–55. + + 10.1007/s12574-025-00695-x + 40608278 + 12378494 + + + + Luo Y, Wang Z, Wang C. Improvement of APACHE II score system for disease severity based on XGBoost algorithm. BMC Med Inform Decis Mak. 2021;21:237. + + 10.1186/s12911-021-01591-x + 34362354 + 8344327 + + + + Hou N, Li M, He L, Xie B, Wang L, Zhang R, et al. Predicting 30-days mortality for MIMIC-III patients with sepsis-3: a machine learning approach using XGboost. J Transl Med. 2020;18:462. + + 10.1186/s12967-020-02620-5 + 33287854 + 7720497 + + + + Wu TT, Lin XQ, Mu Y, Li H, Guo YS. Machine learning for early prediction of in-hospital cardiac arrest in patients with acute coronary syndromes. Clin Cardiol. 2021;44:349–56. + + 10.1002/clc.23541 + 33586214 + 7943901 + + + + Hirata Y, Tsuji T, Kotoku J, Sata M, Kusunose K. Echocardiographic artificial intelligence for pulmonary hypertension classification. Heart. 2024;110:586–93. + + 10.1136/heartjnl-2023-323320 + 38296266 + + + + Saito Y, Omae Y, Mizobuchi S, Fujito H, Miyagawa M, Kitano D, et al. Prognostic significance of pulmonary arterial wedge pressure estimated by deep learning in acute heart failure. ESC Heart Fail. 2023;10:1103–13. + + 10.1002/ehf2.14282 + 36583242 + + + + Hummel YM, Liu LCY, Lam CSP, Fonseca-Munoz DF, Damman K, Rienstra M, et al. Echocardiographic estimation of left ventricular and pulmonary pressures in patients with heart failure and preserved ejection fraction: a study utilizing simultaneous echocardiography and invasive measurements. Eur J Heart Fail. 2017;19:1651–60. + + 10.1002/ejhf.957 + 28984057 + + + + +
+ + + 42213198 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1573-4951 + + 40 + 1 + + 2026 + May + 29 + + + Journal of computer-aided molecular design + J Comput Aided Mol Des + + Target-aware molecule SMILES generation using a large language model with retrieval-augmented generation, multi-turn memory, and a predictive model. + 134 + 10.1007/s10822-026-00834-1 + + Given the vastness of chemical space and the cost and time requirements of high-throughput screening, resource-efficient computational strategies are needed to prioritize candidate drug molecules. Here, we evaluated whether an open-weight large language model (LLM) augmented with retrieval-augmented generation (RAG), multi-turn memory, and a pretrained drug-target interaction predictor can generate target-aware molecules without task-specific retraining. Protein-ligand-pKi examples retrieved from BindingDB, Davis, and KIBA were used as contextual guidance, while DeepPurpose provided the optimization signal during iterative SMILES refinement. Our approach produced a statistically significant increase in predicted pKi across successive multi-turn memory iterations, indicating that retrieval- and memory-guided refinement may improve target-conditioned molecular generation. The proposed framework also showed favorable molecular generation characteristics, with novelty reaching 100%, diversity up to 0.882, and uniqueness up to 1.0, suggesting that retrieval did not reduce the process to simple reproduction of known ligands but instead supported exploration of new regions of chemical space. In addition, the approach yielded supportive docking results consistent with the generation of chemically relevant candidate ligands. However, the increase in predicted affinity was accompanied by trade-offs in molecular quality, including reduced validity and drug-likeness in later iterations. Taken together, these findings suggest that this framework provides a flexible and comparatively resource-efficient strategy for target-aware de novo molecular design, while further multi-objective optimization and independent validation remain necessary. + © 2026. The Author(s). + + + + Karabowicz + Piotr + P + 0000-0002-8072-2104 + + Department of Clinical Molecular Biology, Medical University of Bialystok, 15-269, Bialystok, Poland. piotr.karabowicz@umb.edu.pl. + + + + Charkiewicz + Radosław + R + + Department of Clinical Molecular Biology, Medical University of Bialystok, 15-269, Bialystok, Poland. + + + Center of Experimental Medicine, Medical University of Bialystok, 15-369, Bialystok, Poland. + + + + Charkiewicz + Alicja + A + + Department of Analysis and Bioanalysis of Medicines, Medical University of Bialystok, 15-089, Bialystok, Poland. + + + + Nikliński + Jacek + J + + Department of Clinical Molecular Biology, Medical University of Bialystok, 15-269, Bialystok, Poland. + + + + eng + + + B.SUB.26.512 + Uniwersytet Medyczny w Bialymstoku + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + J Comput Aided Mol Des + 8710425 + 0920-654X + + + + 0 + Ligands + + + 0 + Proteins + + + 0 + Small Molecule Libraries + + + IM + + + Large Language Models + + + Ligands + + + Proteins + chemistry + + + Drug Discovery + methods + + + Small Molecule Libraries + chemistry + + + Drug Design + + + Humans + + + + Drug discovery + Large language models + Multi-turn memory + Retrieval-augmented generation + SMILES generation + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 8 + + + 2026 + 5 + 9 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 11 + 15 + + + epublish + + 42213198 + 10.1007/s10822-026-00834-1 + 10.1007/s10822-026-00834-1 + + + + Skinnider MA (2024) Invalid SMILES are beneficial rather than detrimental to chemical language models. Nat Mach Intell 6:437–448. https://doi.org/10.1038/s42256-024-00821-x + + 10.1038/s42256-024-00821-x + + + + Zheng Y, Koh HY, Ju J et al (2025) Large language models for drug discovery and development. Patterns 6:101346. https://doi.org/10.1016/j.patter.2025.101346 + + 10.1016/j.patter.2025.101346 + 41142906 + 12546459 + + + + Mienye ID, Jere N, Obaido G et al (2025) Large language models: an overview of foundational architectures, recent trends, and a new taxonomy. Discov Appl Sci 7:1027. https://doi.org/10.1007/s42452-025-07668-w + + 10.1007/s42452-025-07668-w + + + + Umer MS, Nabeel M, Athar U et al (2025) Large language models meet molecules: a systematic review of advances and challenges in AI-driven cheminformatics. Arch Computat Methods Eng. https://doi.org/10.1007/s11831-025-10437-y + + 10.1007/s11831-025-10437-y + + + + Bagal V, Aggarwal R, Vinod PK, Priyakumar UD (2022) MolGPT: molecular generation using a transformer-decoder model. J Chem Inf Model 62:2064–2076. https://doi.org/10.1021/acs.jcim.1c00600 + + 10.1021/acs.jcim.1c00600 + 34694798 + + + + Sheikholeslami M, Mazrouei N, Gheisari Y et al (2025) DrugGen enhances drug discovery with large language models and reinforcement learning. Sci Rep 15:13445. https://doi.org/10.1038/s41598-025-98629-1 + + 10.1038/s41598-025-98629-1 + 40251288 + 12008224 + + + + Song B, Li X, Chao X et al (2025) Advancements in large language models ( LLMS ): empowering drug discovery. WIREs Comput Mol Sci 15:e70054. https://doi.org/10.1002/wcms.70054 + + 10.1002/wcms.70054 + + + + Ma J, Liu J, Xu D et al (2025) Application and prospects of large language models in small-molecule drug discovery. Anal Chem 97:27453–27477. https://doi.org/10.1021/acs.analchem.5c04083 + + 10.1021/acs.analchem.5c04083 + 41366732 + 12750412 + + + + Öztürk H, Özgür A, Ozkirimli E (2018) DeepDTA: deep drug–target binding affinity prediction. Bioinformatics 34:i821–i829. https://doi.org/10.1093/bioinformatics/bty593 + + 10.1093/bioinformatics/bty593 + 30423097 + 6129291 + + + + Mswahili ME, Jeong Y-S (2024) Transformer-based models for chemical SMILES representation: a comprehensive literature review. Heliyon 10:e39038. https://doi.org/10.1016/j.heliyon.2024.e39038 + + 10.1016/j.heliyon.2024.e39038 + 39640612 + 11620068 + + + + Gao Y, Xiong Y, Gao X, et al (2023) Retrieval-augmented generation for large language models: a survey + + + Zhang P, Peng X, Han R et al (2025) Rag2Mol: structure-based drug design based on retrieval augmented generation. Briefings Bioinform 26:bbaf265. https://doi.org/10.1093/bib/bbaf265 + + 10.1093/bib/bbaf265 + + + + Hu Y, Wang Y, McAuley J (2025) Evaluating memory in LLM agents via incremental multi-turn interactions + + + OpenAI, Agarwal S, Ahmad L, et al (2025) gpt-oss-120b &amp; gpt-oss-20b Model Card + + + Grattafiori A, Dubey A, Jauhri A, et al (2024) The Llama 3 Herd of Models + + + Liu T, Hwang L, Burley SK et al (2025) BindingDB in 2024: a FAIR knowledgebase of protein-small molecule binding data. Nucleic Acids Res 53:D1633–D1644. https://doi.org/10.1093/nar/gkae1075 + + 10.1093/nar/gkae1075 + 39574417 + 11701568 + + + + Huang K, Fu T, Glass LM et al (2021) DeepPurpose: a deep learning library for drug–target interaction prediction. Bioinformatics 36:5545–5547. https://doi.org/10.1093/bioinformatics/btaa1005 + + 10.1093/bioinformatics/btaa1005 + 33275143 + 8016467 + + + + Eberhardt J, Santos-Martins D, Tillack AF, Forli S (2021) AutoDock Vina 1.2.0: new docking methods, expanded force field, and Python bindings. J Chem Inf Model 61:3891–3898. https://doi.org/10.1021/acs.jcim.1c00203 + + 10.1021/acs.jcim.1c00203 + 34278794 + 10683950 + + + + Fleming J, Magana P, Nair S et al (2025) AlphaFold Protein Structure Database and 3D-Beacons: new data and capabilities. J Mol Biol 437:168967. https://doi.org/10.1016/j.jmb.2025.168967 + + 10.1016/j.jmb.2025.168967 + 40133787 + + + + Laban P, Hayashi H, Zhou Y, Neville J (2025) LLMs Get Lost In Multi-Turn Conversation + + + +
+ + + 42213197 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1438-7948 + + 26 + 1 + + 2026 + May + 29 + + + Functional & integrative genomics + Funct Integr Genomics + + An integrated computational-experimental approach identifies Malate Synthase G as therapeutic target to disrupt carbon metabolism in chronic Pseudomonas aeruginosa infection. + 116 + 10.1007/s10142-026-01889-x + + Pseudomonas aeruginosa is a leading cause of nosocomial infections, particularly in individuals with a compromised immune system. Due to its strong adaptive ability, P. aeruginosa tends to develop antibiotic resistance and establish chronic infection, making its eradication through traditional antibiotics challenging. Thus, the development of novel therapeutic targets and corresponding inhibitors is urgently required. We conducted bioinformatics analyses of gene-chip datasets (GSE10362, GSE21966) of P. aeruginosa from patients with cystic fibrosis (CF) in the Gene Expression Omnibus (GEO) database, ranging from early to late stages of infection. Differentially expressed gene (DEG) analysis, Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment, and Weighted Gene Co-expression Network Analysis (WGCNA) were performed to identify key functional DEGs. Among these genes, candidate genes were refined using three machine learning algorithms: LASSO regression, random forest (RF), and support vector machine (SVM). Using this integrated approach and published reports, target gene was identified consequently. With reported inhibitors, a structure-based virtual screening model against the target protein was established to screen inhibitors from an FDA-approved drug library. Screened hits were experimentally validated through in vitro MIC and checkerboard broth microdilution assays to determine their antibacterial activity and the synergistic effect of tobramycin (TOB) and amikacin (AMK). Enzyme activity was measured to evaluate target protein inhibition. Transcriptome sequencing analysis was performed to explain the effect of target inhibition and reveal the possible mechanism of inhibition. We identified 210 upregulated genes in the late stage of infection. KEGG functional enrichment demonstrated that the up-regulated genes were mainly enriched in metabolic pathways. Eight metabolism-related key DEGs were obtained by the intersection of genes from metabolic pathways and genes from the key module of WGCNA. Machine learning algorithms (LASSO, RF, and SVM) and literature investigation results identified glcB, which encodes malate synthase G (MS), as a therapeutic target for developing inhibitors. In virtual screening, we formulated four rules for a screening model based on the docking results, and finally identified three FDA-approved drugs prednisolone, dienogest and carbinoxamine maleate salt (CAR) as candidates. In vitro MIC assay and checkerboard assay suggested that CAR had an antibacterial effect with a concentration-dependent trend and could enhance the effect of tobramycin and amikacin. Consistent with MIC assay, the inhibition rate in MS activity assay showed a concentration-dependent trend. Transcriptome sequencing analysis showed that carbon metabolism was remodeled when MS was inhibited, thus impairing the growth of P. aeruginosa, and the synergistic effect with TOB and AMK may be explained by the impaired ability to combat oxidative stress. This study identified and validated drug target glcB (encodes MS) and potential inhibitor CAR in treating chronic P. aeruginosa infection based on an integrated method of bioinformatics, virtual screening, and in vitro experiments. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Chen + Geping + G + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. + + + + Tan + Qiutong + Q + + College of Pharmacy, Jinan University, Guangzhou, 510632, China. + + + + Zhou + Haochuan + H + + College of Pharmacy, Jinan University, Guangzhou, 510632, China. + + + + Wang + Rui + R + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. + + + + Mo + Jingyi + J + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. + + + + Xu + Jun + J + + College of Pharmacy, Jinan University, Guangzhou, 510632, China. xujun@jnu.edu.cn. + + + + Chen + Wenying + W + + Department of Pharmacy, The Third Affiliated Hospital, Southern Medical University, Guangzhou, 510630, China. chenwenying2016@163.com. + + + + eng + + + CPA: 2023ZYS09 + Guangdong Pharmaceutical Association + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Funct Integr Genomics + 100939343 + 1438-793X + + + + EC 2.3.3.9 + Malate Synthase + + + 0 + Anti-Bacterial Agents + + + 7440-44-0 + Carbon + + + 0 + Bacterial Proteins + + + IM + + + Pseudomonas aeruginosa + drug effects + genetics + pathogenicity + metabolism + + + Humans + + + Malate Synthase + antagonists & inhibitors + genetics + metabolism + chemistry + + + Pseudomonas Infections + drug therapy + genetics + microbiology + metabolism + + + Anti-Bacterial Agents + pharmacology + + + Carbon + metabolism + + + Bacterial Proteins + genetics + metabolism + antagonists & inhibitors + + + Cystic Fibrosis + microbiology + + + Computational Biology + + + Molecular Docking Simulation + + + + Pseudomonas aeruginosa + Bioinformatics + Carbon metabolism + Malate synthase + Virtual screening + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 11 + + + 2026 + 5 + 18 + + + 2026 + 4 + 29 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 44 + + + 2026 + 5 + 29 + 11 + 15 + + + epublish + + 42213197 + 10.1007/s10142-026-01889-x + 10.1007/s10142-026-01889-x + + + + Ahn S, Jung J, Jang I-A et al (2016) Role of Glyoxylate Shunt in Oxidative Stress Response. J Biol Chem 291:11928–11938. https://doi.org/10.1074/jbc.M115.708149 + + 10.1074/jbc.M115.708149 + 27036942 + 4882458 + + + + Allison KR, Brynildsen MP, Collins JJ (2011) Metabolite-enabled eradication of bacterial persisters by aminoglycosides. Nature 473:216–220. https://doi.org/10.1038/nature10069 + + 10.1038/nature10069 + 21562562 + 3145328 + + + + Baldelli V, Carrasco Aliaga SJ, Colque CA et al (2026) The Pseudomonas aeruginosa sirB2 gene is a fitness determinant of anaerobic growth and its inactivation affects virulence and rugose small colony variants emergence. Virulence 17:2605800. https://doi.org/10.1080/21505594.2025.2605800 + + 10.1080/21505594.2025.2605800 + 41408422 + + + + Chen H, Malengo G, Wang L et al (2025) Coordination of virulence factors and lifestyle transition in Pseudomonas aeruginosa through single-cell analysis. Commun Biol 8:1236. https://doi.org/10.1038/s42003-025-08693-6 + + 10.1038/s42003-025-08693-6 + 40819180 + 12357884 + + + + Clinical and Laboratory Standards Institute (2018) Methods for dilution antimicrobial susceptibility tests for bacteria That grow aerobically (M07). Wayne, PA + + + Diaz MR, King JM, Yahr TL (2011) Intrinsic and Extrinsic Regulation of Type III Secretion Gene Expression in Pseudomonas Aeruginosa. Front Microbiol 2:89. https://doi.org/10.3389/fmicb.2011.00089 + + 10.3389/fmicb.2011.00089 + 21833328 + 3153048 + + + + Díaz-Pérez AL, Román-Doval C, Díaz-Pérez C et al (2007) Identification of the aceA gene encoding isocitrate lyase required for the growth of Pseudomonas aeruginosa on acetate, acyclic terpenes and leucine. FEMS Microbiol Lett 269:309–316. https://doi.org/10.1111/j.1574-6968.2007.00654.x + + 10.1111/j.1574-6968.2007.00654.x + 17319879 + + + + Dolan SK, Welch M (2018) The Glyoxylate Shunt, 60 Years On. Annu Rev Microbiol 72:309–330. https://doi.org/10.1146/annurev-micro-090817-062257 + + 10.1146/annurev-micro-090817-062257 + 30200852 + + + + Dolan SK, Kohlstedt M, Trigg S et al (2020) Contextual Flexibility in Pseudomonas aeruginosa Central Carbon Metabolism during Growth in Single Carbon Sources. mBio 11:e02684–e02619. https://doi.org/10.1128/mBio.02684-19 + + 10.1128/mBio.02684-19 + 32184246 + 7078475 + + + + Dunn MF, Ramírez-Trujillo JA, Hernández-Lucas I (2009) Major roles of isocitrate lyase and malate synthase in bacterial and fungal pathogenesis. Microbiol Read Engl 155:3166–3175. https://doi.org/10.1099/mic.0.030858-0 + + 10.1099/mic.0.030858-0 + + + + Fahnoe KC, Flanagan ME, Gibson G et al (2012) Non-traditional antibacterial screening approaches for the identification of novel inhibitors of the glyoxylate shunt in gram-negative pathogens. PLoS ONE 7:e51732. https://doi.org/10.1371/journal.pone.0051732 + + 10.1371/journal.pone.0051732 + 23240059 + 3519852 + + + + Fan Q, Wang H, Yuan S et al (2025) Pyruvate formate lyase regulates fermentation metabolism and virulence of Streptococcus suis. Virulence 16:2467156. https://doi.org/10.1080/21505594.2025.2467156 + + 10.1080/21505594.2025.2467156 + 39977342 + 11845055 + + + + Flynn JM, Niccum D, Dunitz JM, Hunter RC (2016) Evidence and Role for Bacterial Mucin Degradation in Cystic Fibrosis Airway Disease. PLoS Pathog 12:e1005846. https://doi.org/10.1371/journal.ppat.1005846 + + 10.1371/journal.ppat.1005846 + 27548479 + 4993466 + + + + Harrington NE, Kottara A, Cagney K et al (2024) Global genomic diversity of Pseudomonas aeruginosa in bronchiectasis. J Infect 89:106275. https://doi.org/10.1016/j.jinf.2024.106275 + + 10.1016/j.jinf.2024.106275 + 39293722 + 7618805 + + + + Hoboth C, Hoffmann R, Eichner A et al (2009) Dynamics of adaptive microevolution of hypermutable Pseudomonas aeruginosa during chronic pulmonary infection in patients with cystic fibrosis. J Infect Dis 200:118–130. https://doi.org/10.1086/599360 + + 10.1086/599360 + 19459782 + + + + Hogardt M, Heesemann J (2010) Adaptation of Pseudomonas aeruginosa during persistence in the cystic fibrosis lung. Int J Med Microbiol IJMM 300:557–562. https://doi.org/10.1016/j.ijmm.2010.08.008 + + 10.1016/j.ijmm.2010.08.008 + 20943439 + + + + Kohanski MA, Dwyer DJ, Hayete B et al (2007) A common mechanism of cellular death induced by bactericidal antibiotics. Cell 130:797–810. https://doi.org/10.1016/j.cell.2007.06.049 + + 10.1016/j.cell.2007.06.049 + 17803904 + + + + Kornberg HL, Krebs HA (1957) Synthesis of cell constituents from C2-units by a modified tricarboxylic acid cycle. Nature 179:988–991. https://doi.org/10.1038/179988a0 + + 10.1038/179988a0 + 13430766 + + + + La Rosa R, Johansen HK, Molin S (2019) Adapting to the Airways: Metabolic Requirements of Pseudomonas aeruginosa during the Infection of Cystic Fibrosis Patients. Metabolites 9:234. https://doi.org/10.3390/metabo9100234 + + 10.3390/metabo9100234 + 31623245 + 6835255 + + + + La Rosa R, Johansen HK, Molin S (2022) Persistent Bacterial Infections, Antibiotic Treatment Failure, and Microbial Adaptive Evolution. Antibiotics 11:419. https://doi.org/10.3390/antibiotics11030419 + + 10.3390/antibiotics11030419 + 35326882 + 8944626 + + + + La Rosa R, Molin S, Johansen HK (2025) Pseudomonas aeruginosa: persistence beyond antibiotic resistance. Trends Microbiol 33:1076–1084. https://doi.org/10.1016/j.tim.2025.05.004 + + 10.1016/j.tim.2025.05.004 + 40441928 + + + + Langton Hewer SC, Smyth AR (2009) Antibiotic strategies for eradicating Pseudomonas aeruginosa in people with cystic fibrosis. Cochrane Database Syst Rev CD004197. https://doi.org/10.1002/14651858.CD004197.pub3 + + 10.1002/14651858.CD004197.pub3 + + + + Langton Hewer SC, Smith S, Rowbotham NJ et al (2023) Antibiotic strategies for eradicating Pseudomonas aeruginosa in people with cystic fibrosis. Cochrane Database Syst Rev 6:CD004197. https://doi.org/10.1002/14651858.CD004197.pub6 + + 10.1002/14651858.CD004197.pub6 + 37268599 + 10237531 + + + + Laverty G, Gorman SP, Gilmore BF (2014) Biomolecular Mechanisms of Pseudomonas aeruginosa and Escherichia coli Biofilm Formation. Pathogens 3:596–632. https://doi.org/10.3390/pathogens3030596 + + 10.3390/pathogens3030596 + 25438014 + 4243431 + + + + Letizia M, Diggle SP, Whiteley M (2025) Pseudomonas aeruginosa: ecology, evolution, pathogenesis and antimicrobial susceptibility. Nat Rev Microbiol 23:701–717. https://doi.org/10.1038/s41579-025-01193-8 + + 10.1038/s41579-025-01193-8 + 40442328 + 13064840 + + + + Linzner N, Loi VV, Antelmann H (2022) The Catalase KatA Contributes to Microaerophilic H2O2 Priming to Acquire an Improved Oxidative Stress Resistance in Staphylococcus aureus. Antioxidants 11:1793. https://doi.org/10.3390/antiox11091793 + + 10.3390/antiox11091793 + 36139867 + 9495333 + + + + Lopatkin AJ, Bening SC, Manson AL et al (2021) Clinically relevant mutations in core metabolic genes confer antibiotic resistance. Science 371:eaba0862. https://doi.org/10.1126/science.aba0862 + + 10.1126/science.aba0862 + 33602825 + 8285040 + + + + Mall MA, Burgel P-R, Castellani C et al (2024) Cystic fibrosis. Nat Rev Dis Primer 10:53. https://doi.org/10.1038/s41572-024-00538-6 + + 10.1038/s41572-024-00538-6 + + + + Maloy SR, Bohlander M, Nunn WD (1980) Elevated levels of glyoxylate shunt enzymes in Escherichia coli strains constitutive for fatty acid degradation. J Bacteriol 143:720–725. https://doi.org/10.1128/jb.143.2.720-725.1980 + + 10.1128/jb.143.2.720-725.1980 + 7009561 + 294349 + + + + McVey AC, Medarametla P, Chee X et al (2017) Structural and Functional Characterization of Malate Synthase G from Opportunistic Pathogen Pseudomonas aeruginosa. Biochemistry 56:5539–5549. https://doi.org/10.1021/acs.biochem.7b00852 + + 10.1021/acs.biochem.7b00852 + 28985053 + + + + McVey AC, Bartlett S, Kajbaf M et al (2020) 2-Aminopyridine Analogs Inhibit Both Enzymes of the Glyoxylate Shunt in Pseudomonas aeruginosa. Int J Mol Sci 21:2490. https://doi.org/10.3390/ijms21072490 + + 10.3390/ijms21072490 + 32260167 + 7177833 + + + + Meylan S, Porter CBM, Yang JH et al (2017) Carbon Sources Tune Antibiotic Susceptibility in Pseudomonas aeruginosa via Tricarboxylic Acid Cycle Control. Cell Chem Biol 24:195–206. https://doi.org/10.1016/j.chembiol.2016.12.015 + + 10.1016/j.chembiol.2016.12.015 + 28111098 + 5426816 + + + + Moradali MF, Ghods S, Rehm BHA (2017) Pseudomonas aeruginosa Lifestyle: A Paradigm for Adaptation, Survival, and Persistence. Front Cell Infect Microbiol 7:39. https://doi.org/10.3389/fcimb.2017.00039 + + 10.3389/fcimb.2017.00039 + 28261568 + 5310132 + + + + National Institute of Diabetes and Digestive and Kidney Diseases (2012) LiverTox: Clinical and research information on drug-induced liver injury. Bethesda, MD + + + Negi A, Sharma R (2024) The significance of persisters in tuberculosis drug discovery: Exploring the potential of targeting the glyoxylate shunt pathway. Eur J Med Chem 265:116058. https://doi.org/10.1016/j.ejmech.2023.116058 + + 10.1016/j.ejmech.2023.116058 + 38128237 + + + + Pang Z, Raudonis R, Glick BR et al (2019) Antibiotic resistance in Pseudomonas aeruginosa: mechanisms and alternative therapeutic strategies. Biotechnol Adv 37:177–192. https://doi.org/10.1016/j.biotechadv.2018.11.013 + + 10.1016/j.biotechadv.2018.11.013 + 30500353 + + + + Parkins MD, Somayaji R, Waters VJ (2018) Epidemiology, Biology, and Impact of Clonal Pseudomonas aeruginosa Infections in Cystic Fibrosis. Clin Microbiol Rev 31:e00019–e00018. https://doi.org/10.1128/CMR.00019-18 + + 10.1128/CMR.00019-18 + 30158299 + 6148191 + + + + Prayle A, Watson A, Fortnum H, Smyth A (2010) Side effects of aminoglycosides on the kidney, ear and balance in cystic fibrosis. Thorax 65:654–658. https://doi.org/10.1136/thx.2009.131532 + + 10.1136/thx.2009.131532 + 20627927 + 2921289 + + + + Puckett S, Trujillo C, Wang Z et al (2017) Glyoxylate detoxification is an essential function of malate synthase required for carbon assimilation in Mycobacterium tuberculosis. Proc Natl Acad Sci U S A 114:E2225–E2232. https://doi.org/10.1073/pnas.1617655114 + + 10.1073/pnas.1617655114 + 28265055 + 5358392 + + + + Reynolds D, Kollef M (2021) The Epidemiology and Pathogenesis and Treatment of Pseudomonas aeruginosa Infections: An Update. Drugs 81:2117. https://doi.org/10.1007/s40265-021-01635-6 + + 10.1007/s40265-021-01635-6 + 34743315 + 8572145 + + + + Sauvage S, Gaviard C, Tahrioui A et al (2022) Impact of Carbon Source Supplementations on Pseudomonas aeruginosa Physiology. J Proteome Res 21:1392–1407. https://doi.org/10.1021/acs.jproteome.1c00936 + + 10.1021/acs.jproteome.1c00936 + 35482949 + + + + Singh J, Solomon M, Iredell J, Selvadurai H (2025) Overcoming Pseudomonas aeruginosa in Chronic Suppurative Lung Disease: Prevalence, Treatment Challenges, and the Promise of Bacteriophage Therapy. Antibiot Basel Switz 14:427. https://doi.org/10.3390/antibiotics14050427 + + 10.3390/antibiotics14050427 + + + + Souche A, Vandenesch F, Doléans-Jordheim A, Moreau K (2023) How Staphylococcus aureus and Pseudomonas aeruginosa Hijack the Host Immune Response in the Context of Cystic Fibrosis. Int J Mol Sci 24:6609. https://doi.org/10.3390/ijms24076609 + + 10.3390/ijms24076609 + 37047579 + 10094765 + + + + Stefani S, Campana S, Cariani L et al (2017) Relevance of multidrug-resistant Pseudomonas aeruginosa infections in cystic fibrosis. Int J Med Microbiol IJMM 307:353–362. https://doi.org/10.1016/j.ijmm.2017.07.004 + + 10.1016/j.ijmm.2017.07.004 + 28754426 + + + + Stokes JM, Lopatkin AJ, Lobritz MA, Collins JJ (2019) Bacterial Metabolism and Antibiotic Efficacy. Cell Metab 30:251–259. https://doi.org/10.1016/j.cmet.2019.06.009 + + 10.1016/j.cmet.2019.06.009 + 31279676 + 6990394 + + + + Su S, Panmanee W, Wilson JJ et al (2014) Catalase (KatA) plays a role in protection against anaerobic nitric oxide in Pseudomonas aeruginosa. PLoS ONE 9:e91813. https://doi.org/10.1371/journal.pone.0091813 + + 10.1371/journal.pone.0091813 + 24663218 + 3963858 + + + + Su Y, Peng B, Han Y et al (2015) Fructose restores susceptibility of multidrug-resistant Edwardsiella tarda to kanamycin. J Proteome Res 14:1612–1620. https://doi.org/10.1021/pr501285f + + 10.1021/pr501285f + 25675328 + + + + Sun Z, Kang Y, Norris MH et al (2014) Blocking phosphatidylcholine utilization in Pseudomonas aeruginosa, via mutagenesis of fatty acid, glycerol and choline degradation pathways, confirms the importance of this nutrient source in vivo. PLoS ONE 9:e103778. https://doi.org/10.1371/journal.pone.0103778 + + 10.1371/journal.pone.0103778 + 25068317 + 4113454 + + + + Terry JM, Piña SE, Mattingly SJ (1992) Role of energy metabolism in conversion of nonmucoid Pseudomonas aeruginosa to the mucoid phenotype. Infect Immun 60:1329–1335. https://doi.org/10.1128/iai.60.4.1329-1335.1992 + + 10.1128/iai.60.4.1329-1335.1992 + 1372292 + 257000 + + + + Wang Y, Wang Z, Chen W et al (2024) A KDPG sensor RccR governs Pseudomonas aeruginosa carbon metabolism and aminoglycoside antibiotic tolerance. Nucleic Acids Res 52:967–976. https://doi.org/10.1093/nar/gkad1201 + + 10.1093/nar/gkad1201 + 38096062 + 10810197 + + + + Xia Y, Wang D, Pan X et al (2020) TpiA is a Key Metabolic Enzyme That Affects Virulence and Resistance to Aminoglycoside Antibiotics through CrcZ in Pseudomonas aeruginosa. mBio 11:e02079–e02019. https://doi.org/10.1128/mBio.02079-19 + + 10.1128/mBio.02079-19 + 31911486 + 6946797 + + + + Yang H, Zhou Y, Luo Q et al (2023) L-leucine increases the sensitivity of drug-resistant Salmonella to sarafloxacin by stimulating central carbon metabolism and increasing intracellular reactive oxygen species level. Front Microbiol 14:1186841. https://doi.org/10.3389/fmicb.2023.1186841 + + 10.3389/fmicb.2023.1186841 + 37250042 + 10213264 + + + + Yang J, Xu J-F, Liang S (2025) Antibiotic resistance in Pseudomonas aeruginosa: mechanisms and emerging treatment. Crit Rev Microbiol 51:841–859. https://doi.org/10.1080/1040841X.2024.2429599 + + 10.1080/1040841X.2024.2429599 + 39556143 + + + + +
+ + + 42213195 + + 2026 + 05 + 29 + +
+ + 1432-0584 + + + 2026 + May + 29 + + + Annals of hematology + Ann Hematol + + A macrophage-related efferocytosis-based two-gene prognostic model for acute myeloid leukemia identified by multi-omics and machine learning. + 10.1007/s00277-026-07044-7 + + Background Acute myeloid leukemia (AML) remains a lethal hematologic malignancy with high heterogeneity. Macrophage-mediated efferocytosis in the tumor microenvironment is implicated in immune suppression and disease progression. Methods We integrated single-cell and bulk transcriptomic data from public cohorts to identify genes associated with macrophages and efferocytosis in AML. Candidate genes were screened for prognosis using univariate Cox regression. A comprehensive machine learning framework, evaluating 117 algorithm combinations, was employed to construct a robust prognostic model. The optimal LASSO and random survival forest approach identified CD52 and S100A4 as core prognostic genes. The resulting two-gene model was rigorously validated using Kaplan-Meier analysis, time-dependent ROC curves, and calibration plots across multiple independent cohorts. The associations of the risk score with the immune microenvironment and drug sensitivity were further analyzed. SHapley Additive exPlanations (SHAP) analysis was applied to interpret the model's decision-making. Results The two-gene signature demonstrated stable and powerful predictive performance for overall survival in both training and external validation sets. The risk score was an independent prognostic factor and showed significant correlations with immune cell infiltration patterns and response to chemotherapeutic agents. SHAP analysis confirmed the consistent and biologically plausible contributions of CD52 and S100A4. Single-cell resolution analysis revealed their specific enrichment in distinct AML-associated macrophage subpopulations. Conclusions We developed a novel macrophage efferocytosis-based prognostic model using a multi-omics and machine learning approach. This model provides valuable insights into the immune microenvironment of AML and offers a potential tool for risk stratification and therapeutic guidance. + © 2026. The Author(s). + + + + Li + Xiaoning + X + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. + + + + Zhang + Yujie + Y + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. + + + + Wei + Xiaoying + X + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. + + + + Huang + Rui + R + + Department of Hematology, Zhujiang Hospital, Southern Medical University, Guangzhou, Guangdong, China. rachelchn@163.com. + + + Guangdong Engineering Research Center of Precision Immune Cell Therapy Technology, Guangzhou, Guangdong, China. rachelchn@163.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Ann Hematol + 9107334 + 0939-5555 + + IM + + Acute myeloid leukemia + Biomarkers + Efferocytosis + Machine learning + Prognostic model + + Declarations. Consent for publication: All authors have read and approved the final version of the manuscript and agree to the publication of this research in the journal. Ethics and consent to participate declarations: Not applicable.  Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 12 + 2 + + + 2026 + 4 + 26 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 11 + 15 + + + aheadofprint + + 42213195 + 10.1007/s00277-026-07044-7 + 10.1007/s00277-026-07044-7 + + +
+ + + 42213145 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2561-326X + + 10 + + 2026 + May + 29 + + + JMIR formative research + JMIR Form Res + + Machine Learning-Based Prediction Model for 30-Day Emergency Department Revisits in a Medically Underserved Tertiary Hospital: Formative Retrospective Cohort Study. + + e87289 + e87289 + + 10.2196/87289 + + Emergency department (ED) revisits are critical quality indicators, particularly in medically underserved areas, where traditional prediction tools show limited performance. Machine learning (ML) approaches may offer improved predictive performance for identifying high-risk patients. + This formative study aimed to develop and validate an ML-based model for predicting 30-day ED revisits using electronic health records from a tertiary hospital serving a medically underserved area in South Korea and to evaluate its clinical utility through interpretability analysis and risk stratification. + This retrospective cohort study analyzed 36,230 adult patients visiting the Gangneung Asan Hospital ED in 2023. We developed and compared 3 ML models (extreme gradient boosting [XGBoost], random forest, and ElasticNet) using electronic health records. Model interpretability was ensured through Shapley additive explanations (SHAP) analysis, and clinical utility was evaluated through 5-tier risk stratification. + Among 36,230 patients, 798 (2.2%) revisited within 30 days. XGBoost achieved superior performance with an area under the receiver operating characteristic curve of 0.90 (95% CI 0.88-0.92), a sensitivity of 0.94, and a specificity of 0.69. The SHAP analysis identified ED length of stay, oxygen saturation, systolic blood pressure, computed tomography performance, antibiotic use, and liver disease as key predictors. Risk stratification demonstrated a 25-fold difference in the actual revisit rates between the lowest (152/8450, 1.8%) and the highest (686/1500, 45.7%) risk groups. + The XGBoost model demonstrated excellent predictive performance with high interpretability for 30-day ED revisit predictions. The implementation of this model could enable risk-stratified interventions and more efficient resource allocation in medically underserved settings, potentially reducing unnecessary revisits and improving patient outcomes. This formative study establishes feasibility and provides a foundation for future multicenter validation studies in similar medically underserved settings. + © Kyongmin Sun. Originally published in JMIR Formative Research (https://formative.jmir.org). + + + + Sun + Kyongmin + K + 0000-0002-2977-0880 + + Department of Emergency Medicine, College of Medicine, Gangneung Asan Hospital, Gangneung, Gangwon-do, Republic of Korea. + + + Department of Health Administration, Graduate School, Yonsei University Mirae Campus, 1 Yonsedae-gil, Heungeop-myeon, Wonju, Gangwon-do, 26493, Republic of Korea, 82 337602418. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Form Res + 101726394 + 2561-326X + + IM + + + Retrospective Studies + + + Humans + + + Tertiary Care Centers + statistics & numerical data + organization & administration + + + Emergency Room Visits + statistics & numerical data + + + Emergency Service, Hospital + statistics & numerical data + organization & administration + + + Machine Learning + + + Republic of Korea + + + Medically Underserved Area + + + Female + + + Predictive Learning Models + + + Male + + + Middle Aged + + + Adult + + + Aged + + + Boosting Machine Learning Algorithms + + + Cohort Studies + + + + SHAP + Shapley additive explanations + XGBoost + emergency department + extreme gradient boosting + machine learning + medically underserved area + prediction model + revisit + +
+ + + + 2025 + 11 + 6 + + + 2026 + 4 + 9 + + + 2026 + 4 + 28 + + + 2026 + 5 + 29 + 15 + 43 + + + 2026 + 5 + 29 + 15 + 42 + + + 2026 + 5 + 29 + 11 + 13 + + + epublish + + 42213145 + 10.2196/87289 + v10i1e87289 + + +
+ + + 42213103 + + 2026 + 05 + 29 + +
+ + 1432-5241 + + + 2026 + May + 29 + + + Aesthetic plastic surgery + Aesthetic Plast Surg + + Does Patient History Influence Capsular Contracture? An Exploratory Analysis with Machine Learning. + 10.1007/s00266-026-05919-8 + + Capsular contracture (CC) is a frequent and distressing complication of breast augmentation and reconstruction. Although numerous patient-, surgical-, and implant-related risk factors have been proposed, reliable population-level predictors remain inconsistent across studies. This study evaluates whether administrative medical history, as encoded by ICD and CPT codes, contains sufficient predictive signal to identify patients at risk for CC using machine learning. + Patients were queried from the MerativeTM MarketScan® Research Databases from 2003 to 2017 with CPT codes for implant-based breast reconstruction and augmentation. ICD codes were then used to identify all events and conditions of a patient's history. Hyperparameter-tuned random forest models were combined with multivariable logistic regression models to validate risk factors for the development of CC. + A total of 112,489 patients were included, and the rate of capsular contracture was 9.55%. In total, 4,825 common conditions and procedures were included as features in the model. The random forest's error rate was 9.54%. Prior CC was the most important variable in the model. When removed, model accuracy decreased by 0.0011% (p <0.001). Removing prior irradiation as a feature decreased model accuracy by 0.00014% (p < 0.001). In line with the previous literature, prior CC (OR = 2.47, p <0.001) and irradiation (OR = 1.16, p <0.001) were significantly associated with CC development in a multivariable logistic regression model. + Administrative medical history alone demonstrated limited predictive utility for CC development. Although established associations such as prior CC and irradiation were confirmed, their incremental contribution to predictive performance was negligible. These associations do not meaningfully enhance a clinician's ability to reliably predict which patients are at increased risk for CC. + This journal requires that authors assign a level of evidence to each article. For a full description of these Evidence-Based Medicine ratings, please refer to the Table of Contents or the online Instructions to Authors www.springer.com/00266 . + © 2026. The Author(s). + + + + Johnstone + Thomas M + TM + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. + + + + Najafali + Daniel + D + 0000-0003-1509-9229 + + Carle Illinois College of Medicine, University of Illinois Urbana-Champaign, Urbana, IL, USA. danieln6@illinois.edu. + + + + Shah + Jennifer K + JK + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. + + + + Camacho + Justin M + JM + + Drexel University College of Medicine, Philadelphia, PA, USA. + + + + Johnstone + Chancellor + C + + Air Force Institute of Technology, Wright-Patterson AFB, Dayton, OH, USA. + + + + Nazerali + Rahim S + RS + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. + + + + Lee + Gordon K + GK + + Division of Plastic and Reconstructive Surgery, Stanford University School of Medicine, Stanford, CA, USA. gordokl1@hs.uci.edu. + + + Department of Plastic Surgery, University of California, Irvine, Orange, CA, USA. gordokl1@hs.uci.edu. + + + + eng + + + UL1TR003142 + TR + NCATS NIH HHS + United States + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Aesthetic Plast Surg + 7701756 + 0364-216X + + IM + + Alloplastic reconstruction + Artificial intelligence + Breast + Breast implants + Breast reconstruction + Capsular contracture + Complications + Contracture formation + Implant + Implant capsular contracture + Implant-based reconstruction + Machine learning + Mammaplasty + Outcomes prediction + Postoperative complications + Supervised machine learning + + Declarations. Conflict of interest: The authors declare that they have no conflicts of interest to disclose. Human and Animal Rights: Statement of human and animal rights, or ethical approval: This article does not contain any studies with human participants or animals performed by any of the authors. Data for this project were accessed using the Stanford Center for Population Health Sciences Data Core. The PHS Data Core is supported by a National Institutes of Health National Center for Advancing Translational Science Clinical and Translational Science Award (UL1TR003142) and from Internal Stanford funding. The content is solely the responsibility of the authors and does not necessarily represent the official views of the NIH. Informed Consent: For this type of study, informed consent is not required. +
+ + + + 2025 + 1 + 24 + + + 2026 + 4 + 17 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 11 + 12 + + + aheadofprint + + 42213103 + 10.1007/s00266-026-05919-8 + 10.1007/s00266-026-05919-8 + + + + ISAPS international survey on aesthetic/cosmetic procedures performed in 2019. 2020. https://www.isaps.org/discover/about-isaps/global-statistics/global-survey-2019-full-report-and-press-releases-english/ . Accessed 2024. + + + Pasca A, Bonci EA, Chiuzan C, et al. Treatment and prevention of periprosthetic capsular contracture in breast surgery with prosthesis using leukotriene receptor antagonists: a meta-analysis. Aesthet Surg J. 2022;42(5):483–94. https://doi.org/10.1093/asj/sjab355 . + + 10.1093/asj/sjab355 + 34618886 + + + + Vinsensia M, Schaub R, Meixner E, et al. Incidence and risk assessment of capsular contracture in breast cancer patients following post-mastectomy radiotherapy and implant-based reconstruction. Cancers. 2024. https://doi.org/10.3390/cancers16020265 . + + 10.3390/cancers16020265 + 39682174 + 11640044 + + + + Wells HJ, Yang JCC, Edelstein-Keshet L, Isaac KV. Implant texture and capsular contracture: a review of cellular and molecular pathways. Plast Reconstr Surg Glob Open. 2024;12(5):e5802. https://doi.org/10.1097/GOX.0000000000005802 . + + 10.1097/GOX.0000000000005802 + 38746946 + 11093578 + + + + Domanskis E, Owsley JQ Jr. Histological investigation of the etiology of capsule contracture following augmentation mammaplasty. Plast Reconstr Surg. 1976;58(6):689–93. https://doi.org/10.1097/00006534-197612000-00006 . + + 10.1097/00006534-197612000-00006 + 792918 + + + + Steiert AE, Boyce M, Sorg H. Capsular contracture by silicone breast implants: possible causes, biocompatibility, and prophylactic strategies. Med Devices (Auckl). 2013;6:211–8. https://doi.org/10.2147/MDER.S49522 . + + 10.2147/MDER.S49522 + 24324348 + 3855100 + + + + Adams WP Jr. Capsular contracture: what is it? What causes it? How can it be prevented and managed? Clin Plast Surg. 2009;36(1):119–26. https://doi.org/10.1016/j.cps.2008.08.007 . + + 10.1016/j.cps.2008.08.007 + 19055967 + + + + Larsen A, Rasmussen LE, Rasmussen LF, et al. Histological analyses of capsular contracture and associated risk factors: a systematic review. Aesthetic Plast Surg. 2021;45(6):2714–28. https://doi.org/10.1007/s00266-021-02473-3 . + + 10.1007/s00266-021-02473-3 + 34312696 + + + + Montemurro P, Demir IA, Cheema M, Heden P. Exploring the genetic role of capsular contracture in three family generations with a case report and a literature review. Aesthet Surg J. 2017;38(1):NP6–9. https://doi.org/10.1093/asj/sjx176 . + + 10.1093/asj/sjx176 + 29091998 + + + + Mohan AS, Sullivan J, Tenenbaum MM, Broderick KB, Myckatyn TM. Toward a consensus aproach for assessing capsular contracture severity and progression: a systematic review. Plast Reconstr Surg. 2024;153(1):7–22. https://doi.org/10.1097/PRS.0000000000010573 . + + 10.1097/PRS.0000000000010573 + 37075286 + + + + Wong CH, Samuel M, Tan BK, Song C. Capsular contracture in subglandular breast augmentation with textured versus smooth breast implants: a systematic review. Plast Reconstr Surg. 2006;118(5):1224–36. https://doi.org/10.1097/01.prs.0000237013.50283.d2 . + + 10.1097/01.prs.0000237013.50283.d2 + 17016195 + + + + Headon H, Kasem A, Mokbel K. Capsular contracture after breast augmentation: an update for clinical practice. Arch Plast Surg. 2015;42(5):532–43. https://doi.org/10.5999/aps.2015.42.5.532 . + + 10.5999/aps.2015.42.5.532 + 26430623 + 4579163 + + + + de Kerckhove M, Iwahira Y. Risk factors for capsular contracture: a retrospective study in immediate reconstruction versus delayed reconstruction. Plast Reconstr Surg Glob Open. 2020;8(5):e2864. https://doi.org/10.1097/GOX.0000000000002864 . + + 10.1097/GOX.0000000000002864 + 33133911 + 7572041 + + + + Galdiero M, Larocca F, Iovene MR, et al. Microbial evaluation in capsular contracture of breast implants. Plast Reconstr Surg. 2018;141(1):23–30. https://doi.org/10.1097/PRS.0000000000003915 . + + 10.1097/PRS.0000000000003915 + 29280857 + + + + Sobti N, Weitzman RE, Nealon KP, et al. Evaluation of capsular contracture following immediate prepectoral versus subpectoral direct-to-implant breast reconstruction. Sci Rep. 2020;10(1):1137. https://doi.org/10.1038/s41598-020-58094-4 . + + 10.1038/s41598-020-58094-4 + 31980737 + 6981172 + + + + Calobrace MB, Stevens WG, Capizzi PJ, Cohen R, Godinez T, Beckstrand M. Risk factor analysis for capsular contracture: a 10-year Sientra study using round, smooth, and textured implants for breast augmentation. Plast Reconstr Surg. 2018;141:20–8. https://doi.org/10.1097/PRS.0000000000004351 . + + 10.1097/PRS.0000000000004351 + + + + Bavaro DA, Fanizzi A, Iacovelli S, et al. A machine learning approach for predicting capsular contracture after postmastectomy radiotherapy in breast cancer patients. Healthcare. 2023. https://doi.org/10.3390/healthcare11071042 . + + 10.3390/healthcare11071042 + 37046969 + 10094026 + + + + Chen Y, Wang ML, Black GG, et al. Machine-learning prediction of capsular contraction after two-stage breast reconstruction. JPRAS Open. 2023;38:1–13. https://doi.org/10.1016/j.jpra.2023.07.008 . + + 10.1016/j.jpra.2023.07.008 + 37662866 + 10472234 + + + + Stanford Center for Population Health Sciences. 2024. MarketScan Databases. Redivis (RRID:SCR_023111). https://med.stanford.edu/phs/data/marketscan-data.html . + + + Mantelakis A, Assael Y, Sorooshian P, Khajuria A. Machine learning demonstrates high accuracy for disease diagnosis and prognosis in plastic surgery. Plast Reconstr Surg Glob Open. 2021;9(6):e3638. https://doi.org/10.1097/GOX.0000000000003638 . + + 10.1097/GOX.0000000000003638 + 34235035 + 8225366 + + + + Seu MY, Rezania N, Murray CE, et al. Predicting reduction mammaplasty total resection weight with machine learning. Ann Plast Surg. 2024;93(2):246–52. https://doi.org/10.1097/SAP.0000000000004016 . + + 10.1097/SAP.0000000000004016 + 38833662 + + + + Najafali D, Johnstone T, Pergakis M, et al. Prediction of blood pressure variability during thrombectomy using supervised machine learning and outcomes of patients with ischemic stroke from large vessel occlusion. J Thromb Thrombolysis. 2023;56(1):12–26. https://doi.org/10.1007/s11239-023-02796-9 . + + 10.1007/s11239-023-02796-9 + 37041431 + + + + Chen Y, Cao W, Gao X, Ong H, Ji T. Predicting postoperative complications of head and neck squamous cell carcinoma in elderly patients using random forest algorithm model. BMC Med Inform Decis Mak. 2015;15:44. https://doi.org/10.1186/s12911-015-0165-3 . + + 10.1186/s12911-015-0165-3 + 26054335 + 4459053 + + + + R Core Team. R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. 2024. https://www.R-project.org/ + + + Luvsannyam E, Patel D, Hassan Z, Nukala S, Somagutta MR, Hamid P. Overview of risk factors and prevention of capsular contracture following implant-based breast reconstruction and cosmetic surgery: A systematic review. Cureus. 2020;12(9):e10341. https://doi.org/10.7759/cureus.10341 . + + 10.7759/cureus.10341 + 33062465 + 7549852 + + + + Maita KC, Avila FR, Torres-Guzman RA, et al. The usefulness of artificial intelligence in breast reconstruction: a systematic review. Breast Cancer. 2024;31(4):562–71. https://doi.org/10.1007/s12282-024-01582-6 . + + 10.1007/s12282-024-01582-6 + 38619786 + + + + Kyle DJ, Harvey AG, Shih B, Tan KT, Chaudhry IH, Bayat A. Identification of molecular phenotypic descriptors of breast capsular contracture formation using informatics analysis of the whole genome transcriptome. Wound Repair Regen. 2013;21(5):762–9. https://doi.org/10.1111/wrr.12077 . + + 10.1111/wrr.12077 + 23941504 + + + + Tan KT, Wijeratne D, Shih B, Baildam AD, Bayat A. Tumour necrosis factor-alpha expression is associated with increased severity of periprosthetic breast capsular contracture. Eur Surg Res. 2010;45(3–4):327–32. https://doi.org/10.1159/000321009 . + + 10.1159/000321009 + 21042029 + + + + Hameed MR, Erlandson R, Rosen PP. Capsular synovial-like hyperplasia around mammary implants similar to detritic synovitis. A morphologic and immunohistochemical study of 15 cases. Am J Surg Pathol. 1995;19(4):433–8. https://doi.org/10.1097/00000478-199504000-00004 . + + 10.1097/00000478-199504000-00004 + 7694944 + + + + Prantl L, Schreml S, Fichtner-Feigl S, et al. Clinical and morphological conditions in capsular contracture formed around silicone breast implants. Plast Reconstr Surg. 2007;120(1):275–84. https://doi.org/10.1097/01.prs.0000264398.85652.9a . + + 10.1097/01.prs.0000264398.85652.9a + 17572576 + + + + Fraldi M, Esposito L, Cutolo A, Carotenuto AR, Adamo C, Molea G. Stealthy role of size-driven stresses in biomechanics of breast implants capsular contracture. J Mech Behav Biomed Mater. 2016;64:199–208. https://doi.org/10.1016/j.jmbbm.2016.07.028 . + + 10.1016/j.jmbbm.2016.07.028 + 27508316 + + + + Montemurro P, Lehnhardt M, Behr B, Wallner C. A machine learning approach to identify previously unconsidered causes for complications in aesthetic breast augmentation. Aesthetic Plast Surg. 2022;46(6):2669–76. https://doi.org/10.1007/s00266-022-02997-2 . + + 10.1007/s00266-022-02997-2 + 35802149 + + + + Burkhardt BR, Fried M, Schnur PL, Tofield JJ. Capsules, infection, and intraluminal antibiotics. Plast Reconstr Surg. 1981;68(1):43–9. https://doi.org/10.1097/00006534-198107000-00010 . + + 10.1097/00006534-198107000-00010 + 7243999 + + + + Mao Y, Hou X, Fu S, Luan J. Transcriptomic and machine learning analyses identify hub genes of metabolism and host immune response that are associated with the progression of breast capsular contracture. Genes Dis. 2024;11(3):101087. https://doi.org/10.1016/j.gendis.2023.101087 . + + 10.1016/j.gendis.2023.101087 + 38292203 + + + + Kwon TY, Ham S, Kang M, Shin JH. AI-based cell classification based on mechanical features of heterogeneous capsular contracture fibroblasts. Biophys J. 2024;123(3):280a–1a. + + 10.1016/j.bpj.2023.11.1749 + + + + Naoum GE, Ho AY, Shui A, et al. Risk of developing breast reconstruction complications: A machine-learning nomogram for individualized risk estimation with and without postmastectomy radiation therapy. Plast Reconstr Surg. 2022;149(1):1e–12e. https://doi.org/10.1097/PRS.0000000000008635 . + + 10.1097/PRS.0000000000008635 + 34758003 + + + + +
+ + + 42213093 + + 2026 + 05 + 29 + +
+ + 1613-6829 + + + 2026 + May + 29 + + + Small (Weinheim an der Bergstrasse, Germany) + Small + + Harnessing and Suppressing Electron Spin-State Transitions: From Decoding to Rational Design of High-Performance Cathodes for Alkali-Ion Batteries. + + e73936 + e73936 + + 10.1002/smll.73936 + + The electron spin state of transition metal ions represents a fundamental quantum property that is increasingly recognized as a pivotal design dimension for tuning the performance of cathode materials in Li/Na/K‑ion batteries. This review begins by consolidating the foundational principles through which spin states govern electrochemical properties, establishing a robust theoretical framework that bridges atomic-scale coordination environments with macroscopic electrode behavior. It further discusses advanced experimental and computational techniques for probing complex spin states and, critically, for establishing clear structure-spin-performance relationships. A central focus is placed on the rational design of spin configurations, whether via proactive engineering or suppression of unfavorable transitions, to optimize key electrochemical processes: modulating cationic vs. anionic redox competition, enhancing structural stability by mitigating Jahn-Teller distortions and magnetic frustration, and improving charge and ion transport. The review also highlights the emerging role of spin‑sensitive machine learning as an accelerated pathway for discovering superior cathode materials. By integrating theoretical insights, methodological advances, and application‑oriented studies, this work provides a comprehensive mechanistic framework and practical guidelines for the design of next‑generation high‑performance cathodes through deliberate spin‑state control. + © 2026 Wiley‐VCH GmbH. + + + + Peng + Tao + T + 0000-0002-0234-0477 + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Ma + Mengzhen + M + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Liu + Shaonan + S + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + He + Junbao + J + + Henan International Joint Laboratory of MXene Materials Microstructure, Collaborative Innovation Center of Intelligent Explosion-Proof Equipment of Henan Province, College of Physics and Electronic Engineering, Nanyang Normal University, Nanyang, China. + + + + Wang + Yuanyuan + Y + + College of Aerospace Science and Engineering, National University of Defense Technology, Changsha, China. + + + + Yang + Ya + Y + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Lu + Yang + Y + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + + Luo + Yongsong + Y + + Key Laboratory of Microelectronics and Energy of Henan Province, School of Physics and Electronic Engineering, Xinyang Normal University, Xinyang, China. + + + Henan International Joint Laboratory of MXene Materials Microstructure, Collaborative Innovation Center of Intelligent Explosion-Proof Equipment of Henan Province, College of Physics and Electronic Engineering, Nanyang Normal University, Nanyang, China. + + + + Sun + Weiwei + W + 0000-0003-4079-4063 + + College of Aerospace Science and Engineering, National University of Defense Technology, Changsha, China. + + + + eng + + + 52272219 + National Natural Science Foundation of China + + + + 52472254 + National Natural Science Foundation of China + + + + 262300421381 + Natural Science Foundation of Henan Province + + + + 242300421191 + Natural Science Foundation of Henan Province + + + + 24ZDYF016 + Key Research and Development Program of Nanyang City + + + + Nanhu Scholars Program for Young Scholars of Xinyang Normal University + + + + 2026JJ50116 + the Natural Science Foundation of Hunan Province + + + + 2026JJ50116 + the Natural Science Foundation of Hunan Province + + + + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + Germany + Small + 101235338 + 1613-6810 + + IM + + Li/Na/K‐ion batteries + cathode materials + electron spin state + machine learning + structure‐spin‐performance relationship + +
+ + + + 2026 + 5 + 9 + + + 2026 + 2 + 28 + + + 2026 + 5 + 14 + + + 2026 + 5 + 29 + 15 + 43 + + + 2026 + 5 + 29 + 15 + 43 + + + 2026 + 5 + 29 + 11 + 3 + + + aheadofprint + + 42213093 + 10.1002/smll.73936 + + + + X. Lu, Y. Wang, X. Xu, B. Yan, T. Wu, and L. Lu, “Polymer‐Based Solid‐State Electrolytes for High‐Energy‐Density Lithium‐Ion Batteries—Review,” Advanced Energy Materials 13 (2023): 2301746, https://doi.org/10.1002/aenm.202301746. + + + W. Dou, M. Zheng, W. Zhang, et al., “Review on the Binders for Sustainable High‐Energy‐Density Lithium Ion Batteries: Status, Solutions, and Prospects,” Advanced Functional Materials 33 (2023): 2305161, https://doi.org/10.1002/adfm.202305161. + + + Z. Lin, O. Sheng, X. Cai, et al., “Solid Polymer Electrolytes in All‐Solid‐State Lithium Metal Batteries: From Microstructures to Properties,” Journal of Energy Chemistry 81 (2023): 358. + + + Y. Zhang, W. Tang, H. Gao, et al., “Monolithic Layered Silicon Composed of a Crystalline–Amorphous Network for Sustainable Lithium‐Ion Battery Anodes,” ACS Nano 18 (2024): 15671–15680, https://doi.org/10.1021/acsnano.4c01814. + + + Y. Liu, Y. Yu, F. Yang, et al., “Reversible Iron Oxyfluoride (FeOF)‐Graphene Composites as Sustainable Cathodes for High Energy Density Lithium Batteries,” Small 19 (2023): 2206947, https://doi.org/10.1002/smll.202206947. + + + J. Xiang, Y. Wei, Y. Zhong, et al., “Building Practical High‐Voltage Cathode Materials for Lithium‐Ion Batteries,” Advanced Materials 34 (2022): 2200912, https://doi.org/10.1002/adma.202200912. + + + C. Liu, F. Roters, and D. Raabe, “Role of Grain‐Level Chemo‐Mechanics in Composite Cathode Degradation of Solid‐State Lithium Batteries,” Nature Communications 15 (2024): 7970, https://doi.org/10.1038/s41467‐024‐52123‐w. + + + K. Jin, L. Li, H. Tian, et al., “Three Birds With One Stone: Reducing Gases Manipulate Surface Reconstruction of Li‐Rich Mn‐Based Oxide Cathodes for High‐Energy Lithium‐Ion Batteries,” Energy Storage Materials 77 (2025): 104202, https://doi.org/10.1016/j.ensm.2025.104202. + + + H. Qian, H. Ren, Y. Zhang, et al., “Surface Doping vs. Bulk Doping of Cathode Materials for Lithium‐Ion Batteries: A Review,” Electrochemical Energy Reviews 5 (2022): 2. + + + Q. Fan, K. Lin, S. Yang, et al., “Constructing Effective TiO2 Nano‐Coating for High‐Voltage Ni‐Rich Cathode Materials for Lithium Ion Batteries by Precise Kinetic Control,” Journal of Power Sources 477 (2020): 228745, https://doi.org/10.1016/j.jpowsour.2020.228745. + + + G.‐T. Park, S.‐B. Kim, J.‐I. Yoon, et al., “Unraveling the New Role of Manganese in Nano and Microstructural Engineering of Ni‐Rich Layered Cathode for Advanced Lithium‐Ion Batteries,” Advanced Energy Materials 14 (2024): 2400130, https://doi.org/10.1002/aenm.202400130. + + + Y. Zhao, Q. Liu, X. Zhao, et al., “Structure Evolution of Layered Transition Metal Oxide Cathode Materials for Na‐Ion Batteries: Issues, Mechanism and Strategies,” Materials Today 62 (2023): 271–295, https://doi.org/10.1016/j.mattod.2022.11.024. + + + C. Xu, L. Zhou, T. Gao, et al., “Development of High‐Performance Iron‐Based Phosphate Cathodes Toward Practical Na‐Ion Batteries,” Journal of the American Chemical Society 146 (2024): 9819–9827, https://doi.org/10.1021/jacs.3c14452. + + + Q. Zhou, H. K. Liu, S. X. Dou, and S. Chong, “Defect‐Free Prussian Blue Analogue as Zero‐Strain Cathode Material for High‐Energy‐Density Potassium‐Ion Batteries,” ACS Nano 18 (2024): 7287–7297, https://doi.org/10.1021/acsnano.4c00251. + + + A. Li, Y. Man, J. Liao, L. Duan, X. Ji, and X. Zhou, “KI‐Assisted Formation of Spindle‐Like Prussian White Nanoparticles for High‐Performance Potassium‐Ion Battery Cathodes,” Nano Letters 23 (2023): 10066–10073, https://doi.org/10.1021/acs.nanolett.3c03558. + + + S. Liu, L. Kang, and S. C. Jun, “Challenges and Strategies Toward Cathode Materials for Rechargeable Potassium‐Ion Batteries,” Advanced Materials 33 (2021): 2004689, https://doi.org/10.1002/adma.202004689. + + + H. Xu, Q. Yan, W. Yao, C.‐S. Lee, and Y. Tang, “Mainstream Optimization Strategies for Cathode Materials of Sodium‐Ion Batteries,” Small Structures 3 (2022): 2100217, https://doi.org/10.1002/sstr.202100217. + + + Z. Jiang, K. Zhang, Q. Ding, et al., “Metal–Ligand Spin‐Lock Strategy for Inhibiting Anion Dimerization in Li‐Rich Cathode Materials,” Journal of the American Chemical Society 147 (2025): 3062–3071, https://doi.org/10.1021/jacs.4c10815. + + + J. Yao, X. Wang, P. Hu, et al., “Local Electron Spin‐State Modulation at Mn Site for Advanced Sodium‐Ion Batteries With Fast‐Kinetic NaNi0.33Fe0.33Mn0.33O2 Cathode,” Advanced Functional Materials 34 (2024): 2419967. + + + H. Xia, Y. Hu, Z. Li, H. Lan, and J. Zhang, “Electron Spin Polarization in Rechargeable Batteries: Theoretical Foundation and Practical Applications,” Advanced Functional Materials 35 (2025): 2413491, https://doi.org/10.1002/adfm.202413491. + + + H. Ma, F. Wang, M. Shen, Y. Tong, H. Wang, and H. Hu, “Advances of LiCoO2 in Cathode of Aqueous Lithium‐Ion Batteries,” Small Methods 8 (2024): 2300820, https://doi.org/10.1002/smtd.202300820. + + + X. Liang, J.‐Y. Hwang, and Y.‐K. Sun, “Practical Cathodes for Sodium‐Ion Batteries: Who Will Take the Crown?,” Advanced Energy Materials 13 (2023): 2301975, https://doi.org/10.1002/aenm.202301975. + + + M. Sha, L. Liu, H. Zhao, and Y. Lei, “Review on Recent Advances of Cathode Materials for Potassium‐Ion Batteries,” Energy & Environmental Materials 3 (2020): 56–66, https://doi.org/10.1002/eem2.12060. + + + D. I. Khomskii and S. V. Streltsov, “Orbital Effects in Solids: Basics, Recent Progress, and Opportunities,” Chemical Reviews 121 (2021): 2992–3030, https://doi.org/10.1021/acs.chemrev.0c00579. + + + S. He, Y. Chen, J. Fang, Y. Liu, and Z. Lin, “Optimizing Photocatalysis via Electron Spin Control,” Chemical Society Reviews 54 (2025): 2154–2187, https://doi.org/10.1039/D4CS00317A. + + + J. Tian, Y. Rao, S. Xu, et al., “The Volcano Relationship Between dz2 Electronic States and Sulfur Redox Reaction Kinetics in Lithium–Sulfur Batteries,” Nano Letters 25 (2025): 6918–6926, https://doi.org/10.1021/acs.nanolett.5c00128. + + + Q. Lv, Y. Sun, B. Li, C. Li, Q. Zhang, and L. Wang, “Metal–Organic Frameworks With Axial Cobalt–Oxygen Coordination Modulate Polysulfide Redox for Lithium–Sulfur Batteries,” Advanced Energy Materials 15 (2025): 2403223, https://doi.org/10.1002/aenm.202403223. + + + L. Wang, Z. Mei, Q. An, et al., “Modulating the Electronic Spin State of Atomically Dispersed Iron Sites by Adjacent Zinc Atoms for Enhanced Spin‐Dependent Oxygen Electrocatalysis,” Chem Catalysis 3 (2023): 100758. + + + Y. Zhang, Q. Wu, J. Z. Y. Seow, Y. Jia, X. Ren, and Z. J. Xu, “Spin States of Metal Centers in Electrocatalysis,” Chemical Society Reviews 53 (2024): 8123–8136, https://doi.org/10.1039/D3CS00913K. + + + M. K. Aydinol, A. F. Kohan, G. Ceder, K. Cho, and J. Joannopoulos, “Ab Initio Study of Lithium Intercalation in Metal Oxides and Metal Dichalcogenides,” Physical Review B 56 (1997): 1354–1365, https://doi.org/10.1103/PhysRevB.56.1354. + + + C. Lin, J. Li, Z.‐W. Yin, et al., “Structural Understanding for High‐Voltage Stabilization of Lithium Cobalt Oxide,” Advanced Materials 36 (2024): 2307404, https://doi.org/10.1002/adma.202307404. + + + J. H. Yang, H. Kim, and G. Ceder, “Insights Into Layered Oxide Cathodes for Rechargeable Batteries,” Molecules 26 (2021): 3173, https://doi.org/10.3390/molecules26113173. + + + L. Shi, Z. Liu, K. Li, et al., “YIG‐Inspired Fe 3d Spin Rearrangement to Construct Built‐in Electric Field Achieving Fast‐Charging Layered Cathode for Wide‐Temperature Sodium‐Ion Battery,” Advanced Functional Materials 36 (2026): 18348, https://doi.org/10.1002/adfm.202518348. + + + J. Wang, K. Wang, Q. Liu, H. Su, and H. Zhu, “Modifying Anionic Sites for Fe Spin Activation to Enhance Performance in NASICON Cathodes,” Chemical Engineering Journal 514 (2025): 163122, https://doi.org/10.1016/j.cej.2025.163122. + + + Q. Zhou, Y. Xin, Y. Wang, et al., “Modulating the Electron Spin States of Na2FePO4F Cathode via High Entropy Strategy for Enhanced Sodium Storage and Ultra‐High Cycling Stability,” Chemical Engineering Journal 503 (2025): 158475, https://doi.org/10.1016/j.cej.2024.158475. + + + L. Yang, Z. Liu, X. Shen, et al., “Effect of Vacancy‐Tailored Mn3+ Spinning on Enhancing Structural Stability,” Energy Storage Materials 44 (2022): 231–238, https://doi.org/10.1016/j.ensm.2021.10.024. + + + P. C. Mondal, W. Mtangi, and C. Fontanesi, “Chiro‐Spintronics: Spin‐Dependent Electrochemistry and Water Splitting Using Chiral Molecular Films,” Small Methods 2 (2018): 1700313, https://doi.org/10.1002/smtd.201700313. + + + A. Vadakkayil, C. Clever, K. N. Kunzler, S. Tan, B. P. Bloom, and D. H. Waldeck, “Chiral Electrocatalysts Eclipse Water Splitting Metrics Through Spin Control,” Nature Communications 14 (2023): 1067, https://doi.org/10.1038/s41467‐023‐36703‐w. + + + D. Barik, U. Utkarsh, and K. B. Ghosh, “Spin‐Controlled Electrocatalysis: An Out‐of‐the‐Box Strategy for the Advancement of Electrochemical Water Splitting,” Chemical Communications 61 (2025): 6226–6245, https://doi.org/10.1039/D5CC01305D. + + + H. Im, S. Ma, H. Lee, et al., “Elucidating the Chirality Transfer Mechanisms During Enantioselective Synthesis for the Spin‐Controlled Oxygen Evolution Reaction,” Energy & Environmental Science 16 (2023): 1187–1199, https://doi.org/10.1039/D2EE03853F. + + + J. Ran, M. Si, and D. Gao, “Co@CoO Chiral Nanostructures Enabling Efficient Oxygen Electrocatalysis by Modulated Spin‐Polarization,” Chemical Engineering Journal 493 (2024): 152545, https://doi.org/10.1016/j.cej.2024.152545. + + + N. Yuran, B. Muniyandi, A. Saha, et al., “Chiral Molecular Coating of a LiNiCoMnO2 Cathode for High‐Rate Capability Lithium‐Ion Batteries,” The Journal of Physical Chemistry Letters 15 (2024): 2682–2689, https://doi.org/10.1021/acs.jpclett.4c00171. + + + H. Gong, Y. Cao, B. Zhang, et al., “Noninvasive Rejuvenation Strategy of Nickel‐Rich Layered Positive Electrode for Li‐Ion Battery Through Magneto‐Electrochemical Synergistic Activation,” Nature Communications 15 (2024): 10243, https://doi.org/10.1038/s41467‐024‐54641‐z. + + + D. Xue, P. Yuan, S. Jiang, et al., “Altering the Spin State of Fe‐N‐C Through Ligand Field Modulation of Single‐Atom Sites Boosts the Oxygen Reduction Reaction,” Nano Energy 105 (2023): 108020, https://doi.org/10.1016/j.nanoen.2022.108020. + + + X. Li, J. Qin, Q. Lin, et al., “Electron Spin Broken‐Symmetry of Fe–Co Diatomic Pairs to Promote Kinetics of Bifunctional Oxygen Electrocatalysis for Zinc–Air Batteries,” Advanced Science 11 (2024): 2401187, https://doi.org/10.1002/advs.202401187. + + + S. Ye, S. Xie, Y. Lei, et al., “Modulating the Electronic Spin State by Constructing Dual‐Metal Atomic Pairs for Activating the Dynamic Site of Oxygen Reduction Reaction,” Nano Research 16 (2023): 1869–1877, https://doi.org/10.1007/s12274‐022‐4979‐x. + + + D. Xue, Y. Zhao, J. Cao, Y. Wang, X. Li, and T. Ma, “Spin Engineering of Dual‐Atom Site Catalysts for Efficient Electrochemical Energy Conversion,” Advanced Materials 37 (2025): 2504213, https://doi.org/10.1002/adma.202504213. + + + C. Huang, J. Yu, C. Y. Zhang, et al., “Electronic Spin Alignment Within Homologous NiS2/NiSe2 Heterostructures to Promote Sulfur Redox Kinetics in Lithium‐Sulfur Batteries,” Advanced Materials 36 (2024): 2400810, https://doi.org/10.1002/adma.202400810. + + + L. Yang, R. He, M. Botifoll, et al., “Enhanced Oxygen Evolution and Zinc‐Air Battery Performance via Electronic Spin Modulation in Heterostructured Catalysts,” Advanced Materials 36 (2024): 2400572, https://doi.org/10.1002/adma.202400572. + + + J. Chen, J. Xiao, S. Liao, et al., “Spin Polarization in Bi/FeS Heterostructure Enables High‐Performance Sodium Ion Storage,” Energy Storage Materials 82 (2025): 104631, https://doi.org/10.1016/j.ensm.2025.104631. + + + E. M. Mozur and R. Seshadri, “Methods and Protocols: Practical Magnetic Measurement,” Chemistry of Materials 35 (2023): 3450–3463, https://doi.org/10.1021/acs.chemmater.3c00297. + + + M. A. Halim, S. Karmakar, S. S. Das, W. J. Geerts, A. Haque, and G. W. Beall, “Crystallite Size‐Dependent Magnetic Moment in Hydrogen Bridged Manganese Tetracyanonickelate Based Two‐Dimensional Metal‐Organic Frameworks,” Journal of Magnetism and Magnetic Materials 571 (2023): 170573, https://doi.org/10.1016/j.jmmm.2023.170573. + + + J. Kim, K. Lee, T. Takabatake, H. Kim, M. Kim, and M.‐H. Jung, “Magnetic Transition to Antiferromagnetic Phase in Gadolinium Substituted Topological Insulator Bi2Te3,” Scientific Reports 5 (2015): 10309, https://doi.org/10.1038/srep10309. + + + Y. Xi, X. Wang, H. Wang, et al., “Optimizing the Electron Spin States of Na4Fe3(PO4)2P2O7 Cathodes via Mn/F Dual‐Doping for Enhanced Sodium Storage,” Advanced Functional Materials 34 (2024): 2309701, https://doi.org/10.1002/adfm.202309701. + + + X. Wang, J. Li, Q. Wang, et al., “Balancing Electron Spin States of Na3.12Fe2.44(P2O7)2 Through F‐Doping Realized High Performance on Sodium Ions Storage,” Advanced Energy Materials 15 (2025): 2502300, https://doi.org/10.1002/aenm.202502300. + + + A. Niemöller, P. Jakes, R.‐A. Eichel, and J. Granwehr, “In Operando EPR Investigation of Redox Mechanisms in LiCoO2,” Chemical Physics Letters 716 (2019): 231–236, https://doi.org/10.1016/j.cplett.2018.12.022. + + + H. Nguyen and R. J. Clément, “Rechargeable Batteries From the Perspective of the Electron Spin,” ACS Energy Letters 5 (2020): 3848–3859, https://doi.org/10.1021/acsenergylett.0c02074. + + + H. Nguyen, E. N. Bassey, E. E. Foley, D. A. Kitchaev, R. Giovine, and R. J. Clément, “Operando Electron Spin Probes for the Study of Battery Processes,” Journal of Magnetic Resonance 368 (2024): 107772, https://doi.org/10.1016/j.jmr.2024.107772. + + + M. Tang, A. Dalzini, X. Li, et al., “Operando EPR for Simultaneous Monitoring of Anionic and Cationic Redox Processes in Li‐Rich Metal Oxide Cathodes,” The Journal of Physical Chemistry Letters 8 (2017): 4009–4016, https://doi.org/10.1021/acs.jpclett.7b01425. + + + A. Niemöller, P. Jakes, S. Eurich, et al., “Monitoring Local Redox Processes in LiNi0.5Mn1.5O4 Battery Cathode Material by in Operando EPR Spectroscopy,” The Journal of Chemical Physics 148 (2018): 014705, https://doi.org/10.1063/1.5008251. + + + Z. Su, Z. Li, X. Yang, X. Li, L. Wang, and W. Lü, “In Situ Balanced Synthesis of High‐Activity Low‐Spin Iron Cathode Prussian Blue for Enhanced Sodium‐Ion Storage,” Nano Letters 25 (2025): 957–965, https://doi.org/10.1021/acs.nanolett.4c03985. + + + Z. Wang, K. Nie, M. T. Sougrati, et al., “Charge Transfer Induced Highly Active Low‐Spin Iron of Prussian Blue Cathode Through Calcination Strategy for High Performance Sodium‐Ion Batteries,” Chemical Engineering Journal 488 (2024): 151090, https://doi.org/10.1016/j.cej.2024.151090. + + + Z. Yao, T. Fu, T. Pan, et al., “Modulating the Spin State to Stabilize the Surface and Bulk Structure for Durable 4.6 V LiCoO2 Cathodes,” Advanced Functional Materials 34 (2024): 2408152, https://doi.org/10.1002/adfm.202408152. + + + C. Zheng, Y. Wang, H. Mao, et al., “Superexchange Interaction Regulates Ni/Mn Spin States Triggering Ni‐t2G/O‐2p Reductive Coupling Enabling Stable Lithium‐Rich Cathode,” Nature Communications 16 (2025): 3900, https://doi.org/10.1038/s41467‐025‐59159‐6. + + + Y. Fan, X. Wang, G. Bo, et al., “Operando Synchrotron X‐Ray Absorption Spectroscopy: A Key Tool for Cathode Material Studies in Next‐Generation Batteries,” Advanced Science 12 (2025): 2414480, https://doi.org/10.1002/advs.202414480. + + + W. Lee, S. Yun, H. Li, et al., “Anionic Redox Chemistry as a Clue for Understanding the Structural Behavior in Layered Cathode Materials,” Small 16 (2020): 1905875, https://doi.org/10.1002/smll.201905875. + + + Y. S. Byeon, W. Lee, S. Park, et al., “Comprehensive Understanding of Elemental Doping and Substitution of Ni‐Rich Cathode Materials for Lithium‐Ion Batteries via In Situ Operando Analyses,” Small Science 4 (2024): 2400165. + + + M. Fehse, N. Etxebarria, L. Otaegui, et al., “Influence of Transition‐Metal Order on the Reaction Mechanism of LNMO Cathode Spinel: An Operando X‐Ray Absorption Spectroscopy Study,” Chemistry of Materials 34 (2022): 6529–6540, https://doi.org/10.1021/acs.chemmater.2c01360. + + + A. Mullaliu, G. Aquilanti, P. Conti, et al., “Copper Electroactivity in Prussian Blue‐Based Cathode Disclosed by Operando XAS,” The Journal of Physical Chemistry C 122 (2018): 15868–15877, https://doi.org/10.1021/acs.jpcc.8b03429. + + + J. Zhang, D. Wong, Q. Zhang, et al., “Reducing Co/O Band Overlap Through Spin State Modulation for Stabilized High Capability of 4.6 V LiCoO2,” Journal of the American Chemical Society 145 (2023): 10208–10219, https://doi.org/10.1021/jacs.3c01128. + + + Y. Cheng, X. Gong, S. Tao, et al., “Mechano‐Thermal Milling Synthesis of Atomically Dispersed Platinum With Spin Polarization Induced by Cobalt Atoms Towards Enhanced Oxygen Reduction Reaction,” Nano Energy 98 (2022): 107341, https://doi.org/10.1016/j.nanoen.2022.107341. + + + F. Zhou, Z. Gong, R. Wang, et al., “Band Structure and Spin‐State‐Induced Electronic Configuration Regulation for Efficient Sulfur Redox Reaction,” Advanced Functional Materials 35 (2025): 2417730, https://doi.org/10.1002/adfm.202417730. + + + J. Yu, C. Huang, O. Usoltsev, et al., “Promoting Polysulfide Redox Reactions Through Electronic Spin Manipulation,” ACS Nano 18 (2024): 19268–19282, https://doi.org/10.1021/acsnano.4c05278. + + + C. Li, J. Yu, D. Yang, et al., “Balancing Electronic Spin State via Atomically‐Dispersed Heteronuclear Fe–Co Pairs for High‐Performance Sodium–Sulfur Batteries,” Journal of the American Chemical Society 147 (2025): 8250–8259, https://doi.org/10.1021/jacs.4c15408. + + + Y. Liu, X. Wu, H. Qu, et al., “Regulating the Local Spin States in Spinel Oxides to Promote the Activity of Li‐CO2 Batteries,” Advanced Materials 37 (2025): 2411652, https://doi.org/10.1002/adma.202411652. + + + J. Qian, T. Wang, Z. Zhang, Y. Liu, J. Li, and D. Gao, “Engineered Spin State in Ce Doped LaCoO3 With Enhanced Electrocatalytic Activity for Rechargeable Zn‐Air Batteries,” Nano Energy 74 (2020): 104948, https://doi.org/10.1016/j.nanoen.2020.104948. + + + Y. Bao, J. Xiao, Y. Huang, et al., “Regulating Spin Polarization via Axial Nitrogen Traction at Fe−N5 Sites Enhanced Electrocatalytic CO2 Reduction for Zn−CO2 Batteries,” Angewandte Chemie International Edition 63 (2024): 202406030. + + + B. Li, H. Wang, Y. Shen, et al., “Selective Adsorption‐Catalysis Sites of Lithium Polysulfides Induced by the Competition Between Spin Polarization and Electronegativity in High‐Entropy Alloy Electrocatalysts,” ACS Nano 19 (2025): 12021–12032, https://doi.org/10.1021/acsnano.4c17661. + + + Q. Li, Z. Ma, M. Liu, et al., “High Spin‐State Modulation of Catalytic Centers by Weak Ligand Field for Promoting Sulfur Redox Reaction in Lithium‐Sulfur Batteries,” Angewandte Chemie 137 (2025): 202416176, https://doi.org/10.1002/ange.202416176. + + + Y. Pan, K. Li, A. Hu, et al., “Manipulating Li2O2 Deposition Morphology by Surface Spin Modulation of Cobalt‐Based Spinel Oxide Catalysts in Lithium−Oxygen Batteries,” Chemical Engineering Journal 477 (2023): 147209, https://doi.org/10.1016/j.cej.2023.147209. + + + C. Zhang, X. Wang, Z. Ma, et al., “Spin State Modulation on Dual Fe Center by Adjacent Ni Sites Enabling the Boosted Activities and Ultra‐Long Stability in Zn‐Air Batteries,” Science Bulletin 68 (2023): 2042–2053, https://doi.org/10.1016/j.scib.2023.07.049. + + + J. Chen, H. Chen, S. Zhang, et al., “Structure/Interface Coupling Effect for High‐Voltage LiCoO2 Cathodes,” Advanced Materials 34 (2022): 2204845, https://doi.org/10.1002/adma.202204845. + + + M. Zhang, S. Xu, H. Xu, et al., “Enabling Reversible O1 Phase Transition in 4.8 V‐Level LiCoO2 Through Local Oxygen Coordination Engineering,” Advanced Energy Materials 15 (2025): 2500577, https://doi.org/10.1002/aenm.202500577. + + + Z. Lu, J. Zhang, Q. Zhang, et al., “Oxygen Anion Redox Chemistry Correlated With Spin State in Ni‐Rich Layered Cathodes,” Advanced Science 10 (2023): 2206442, https://doi.org/10.1002/advs.202206442. + + + Y. Zuo, H. Shang, J. Hao, et al., “Regulating the Potential of Anion Redox to Reduce the Voltage Hysteresis of Li‐Rich Cathode Materials,” Journal of the American Chemical Society 145 (2023): 5174–5182, https://doi.org/10.1021/jacs.2c11640. + + + L. Yang, Q. Liu, M. Wan, et al., “Surface Passivation of NaxFe[Fe(CN)6] Cathode to Improve Its Electrochemical Kinetics and Stability in Sodium‐Ion Batteries,” Journal of Power Sources 448 (2020): 227421, https://doi.org/10.1016/j.jpowsour.2019.227421. + + + T.‐U. Wi, C. Park, S. Ko, et al., “Cathode Electrolyte Interphase Engineering for Prussian Blue Analogues in Lithium‐Ion Batteries,” Nano Letters 24 (2024): 7783–7791, https://doi.org/10.1021/acs.nanolett.4c01971. + + + H. Zhang, J. Peng, L. Li, et al., “Low‐Cost Zinc Substitution of Iron‐Based Prussian Blue Analogs as Long Lifespan Cathode Materials for Fast Charging Sodium‐Ion Batteries,” Advanced Functional Materials 33 (2023): 2210725, https://doi.org/10.1002/adfm.202210725. + + + J. Sun, H. Ye, J. A. S. Oh, et al., “Elevating the Discharge Plateau of Prussian Blue Analogs Through Low‐Spin Fe Redox Induced Intercalation Pseudocapacitance,” Energy Storage Materials 43 (2021): 182–189, https://doi.org/10.1016/j.ensm.2021.09.004. + + + Z. Wang, M. T. Sougrati, Y. He, et al., “Sodium Storage and Capacity Retention Behavior Derived from High‐Spin/Low‐Spin Fe Redox Reaction in Monoclinic Prussian Blue Based on Operando Mössbauer Characterization,” Nano Energy 109 (2023): 108256, https://doi.org/10.1016/j.nanoen.2023.108256. + + + D. Yang, H. Wang, Y. Zhao, et al., “Achieving Ultra‐Fast and Stable Sodium‐Ion Batteries Through Deep Activation of Low‐Spin Iron in Prussian Blue,” Advanced Functional Materials 35 (2025): 2503067, https://doi.org/10.1002/adfm.202503067. + + + Z. Xiao, F. Xia, L. Xu, et al., “Suppressing the Jahn–Teller Effect in Mn‐Based Layered Oxide Cathode Toward Long‐Life Potassium‐Ion Batteries,” Advanced Functional Materials 32 (2022): 2108244, https://doi.org/10.1002/adfm.202108244. + + + T. Shang, A. Gao, D. Xiao, et al., “An Orbital Strategy for Regulating the Jahn–Teller Effect,” National Science Review 11 (2024): nwae255, https://doi.org/10.1093/nsr/nwae255. + + + M. Atanasov, S. V. Rao, and F. Neese, “A Reflection on Modelling and Examination of Paramagnetic Molecules for Magnetic Storage and Molecular Spintronics,” Chemical Science 16 (2025): 18985–18989, https://doi.org/10.1039/D5SC90219C. + + + Z.‐F. Huang, X. Meng, C.‐Z. Wang, Y. Sun, and G. Chen, “First‐Principles Calculations on the Jahn–Teller Distortion in Layered LiMnO2,” Journal of Power Sources 158 (2006): 1394–1400, https://doi.org/10.1016/j.jpowsour.2005.10.044. + + + Z.‐F. Huang, F. Du, C.‐Z. Wang, D.‐P. Wang, and G. Chen, “Low‐Spin Mn3+ Ion in Rhombohedral LiMnO2 Predicted by First‐Principles Calculations,” Physical Review B 75 (2007): 054411, https://doi.org/10.1103/PhysRevB.75.054411. + + + A. Choi, T. Kim, M.‐H. Kim, S. W. Lee, Y. H. Jung, and H.‐W. Lee, “Mitigating Jahn–Teller Effects by Fast Electrode Kinetics Inducing Charge Redistribution,” Advanced Functional Materials 32 (2022): 2111901, https://doi.org/10.1002/adfm.202111901. + + + Y. Xiao, T. Liu, J. Liu, et al., “Insight into the Origin of Lithium/Nickel Ions Exchange in Layered Li(NixMnyCoz)O2 Cathode Materials,” Nano Energy 49 (2018): 77–85, https://doi.org/10.1016/j.nanoen.2018.04.020. + + + J. Yin, Z. Wu, K. Fang, et al., “Reassessing Anionic Redox in Conventional Layered Oxide Cathodes for Li‐Ion Batteries: Ionic and Covalent Mechanisms,” Chemical Science 16 (2025): 8268–8281, https://doi.org/10.1039/D5SC00429B. + + + J. Wang and X. Sun, “Understanding and Recent Development of Carbon Coating on LiFePO4 Cathode Materials for Lithium‐Ion Batteries,” Energy & Environmental Science 5 (2012): 5163–5185, https://doi.org/10.1039/C1EE01263K. + + + C. Yang, X. Zhang, M. Huang, J. Huang, and Z. Fang, “Preparation and Rate Capability of Carbon Coated LiNi1/3Co1/3Mn1/3O2 as Cathode Material in Lithium Ion Batteries,” ACS Applied Materials and Interfaces 9 (2017): 12408. + + + Y. Lu, S. Zhang, Y. Li, L. Xue, G. Xu, and X. Zhang, “Preparation and Characterization of Carbon‐Coated NaVPO4 F as Cathode Material for Rechargeable Sodium‐Ion Batteries,” Journal of Power Sources 247 (2014): 770–777, https://doi.org/10.1016/j.jpowsour.2013.09.018. + + + A. Langrock, Y. Xu, Y. Liu, S. Ehrman, A. Manivannan, and C. Wang, “Carbon Coated Hollow Na2FePO4F Spheres for Na‐Ion Battery Cathodes,” Journal of Power Sources 223 (2013): 62–67, https://doi.org/10.1016/j.jpowsour.2012.09.059. + + + R. Pitchai, V. Thavasi, S. G. Mhaisalkar, and S. Ramakrishna, “Nanostructured Cathode Materials: A Key for Better Performance in Li‐Ion Batteries,” Journal of Materials Chemistry 21 (2011): 11040, https://doi.org/10.1039/c1jm10857c. + + + Y. Wang and G. Cao, “Developments in Nanostructured Cathode Materials for High‐Performance Lithium‐Ion Batteries,” Advanced Materials 20 (2008): 2251–2269, https://doi.org/10.1002/adma.200702242. + + + C. Deng and S. Zhang, “1D Nanostructured Na7V4(P2O7)4 (PO4) as High‐Potential and Superior‐Performance Cathode Material for Sodium‐Ion Batteries,” ACS Applied Materials & Interfaces 6 (2014): 9111–9117, https://doi.org/10.1021/am501072j. + + + Z. Gong and Y. Yang, “Recent Advances in the Research of Polyanion‐Type Cathode Materials for Li‐Ion Batteries,” Energy & Environmental Science 4 (2011): 3223, https://doi.org/10.1039/c0ee00713g. + + + T. Jin, H. Li, K. Zhu, P.‐F. Wang, P. Liu, and L. Jiao, “Polyanion‐Type Cathode Materials for Sodium‐Ion Batteries,” Chemical Society Reviews 49 (2020): 2342–2377, https://doi.org/10.1039/C9CS00846B. + + + J. Wang, J. Kang, Z.‐Y. Gu, et al., “Localized Electron Density Redistribution in Fluorophosphate Cathode: Dangling Anion Regulation and Enhanced Na‐Ion Diffusivity for Sodium‐Ion Batteries,” Advanced Functional Materials 32 (2022): 2109694, https://doi.org/10.1002/adfm.202109694. + + + Y.‐J. Li, Y.‐F. Zhu, B.‐B. Chen, et al., “Jahn‐Teller Effect in Sodium Layered Oxide Cathodes: Inducement Mechanisms, Mitigation Strategies, and Rational Utilizations,” Advanced Functional Materials 35 (2025): 2504096, https://doi.org/10.1002/adfm.202504096. + + + X. Zhang, F. Xie, X. Wang, T. Liu, L. Zhang, and J. Yu, “Mitigating the Jahn–Teller Distortion and Phase Transition in the P2‐Na0.67Ni0.33Mn0.67O2 Cathode Through Large Sr2+ Ion Substitution for Improved Performance,” Journal of Materials Chemistry A 12 (2024): 19440–19451, https://doi.org/10.1039/D4TA02993C. + + + Y. Zheng, H. Xie, J. Li, et al., “Insights into the Jahn‐Teller Effect in Layered Oxide Cathode Materials for Potassium‐Ion Batteries,” Advanced Energy Materials 14 (2024): 2400461, https://doi.org/10.1002/aenm.202400461. + + + S. Zhang, Z. Yang, Y. Lu, W. Xie, Z. Yan, and J. Chen, “Insights into Cation Migration and Intermixing in Advanced Cathode Materials for Lithium‐Ion Batteries,” Advanced Energy Materials 14 (2024): 2402068, https://doi.org/10.1002/aenm.202402068. + + + H. Lee, J. Kim, S. Lee, M. Avdeev, W. Yang, and Y.‐M. Kang, “Characterizing Disorders Within Cathode Materials of Lithium‐Ion Batteries,” Angewandte Chemie 137 (2025): 202501958, https://doi.org/10.1002/ange.202501958. + + + G. Ding, S. Wang, X. Huang, et al., “Mitigating Magnetic Frustration to Improve Single‐Crystalline Nonstoichiometric Li1.06Ni0.90Mn0.04O2 for Lithium‐Ion Batteries,” Journal of Materials Chemistry A 12 (2024): 23454–23460, https://doi.org/10.1039/D4TA03933E. + + + T. Ye, Z. Li, H. Yan, et al., “Magnetic Frustration Effect on the Rate Performance of LiNi0.6Co0.4−xMnxO2 Cathodes for Lithium‐Ion Batteries,” Advanced Energy Materials 12 (2022): 2201556, https://doi.org/10.1002/aenm.202201556. + + + Y. Wang, F. Zhang, Q. Long, et al., “Enhancing Cyclic Stability of Mn‐Based Prussian Blue Cathode for Potassium Ion Storage by High‐Spin Fe Substitution Strategy,” Energy Storage Materials 71 (2024): 103399, https://doi.org/10.1016/j.ensm.2024.103399. + + + E. Watanabe, W. Zhao, A. Sugahara, et al., “Redox‐Driven Spin Transition in a Layered Battery Cathode Material,” Chemistry of Materials 31 (2019): 2358–2365, https://doi.org/10.1021/acs.chemmater.8b04775. + + + H. Yu, Y. Qian, M. Otani, et al., “Study of the Lithium/Nickel Ions Exchange in the Layered LiNi0.42Mn0.42Co0.16O2 Cathode Material for Lithium Ion Batteries: Experimental and First‐Principles Calculations,” Energy & Environmental Science 7 (2014): 1068, https://doi.org/10.1039/c3ee42398k. + + + T. Hu, T. Yang, J. Liu, et al., “A Spin‐Dependent Machine Learning Framework for Transition Metal Oxide Battery Cathode Materials,” arXiv Preprint arXiv (2023), https://doi.org/10.48550/arXiv.2309.01146. + + + M. Eckhoff, K. N. Lausch, P. E. Blöchl, and J. Behler, “Predicting Oxidation and Spin States by High‐Dimensional Neural Networks: Applications to Lithium Manganese Oxide Spinels,” The Journal of Chemical Physics 153 (2020): 164107, https://doi.org/10.1063/5.0021452. + + + +
+ + + 42212994 + + 2026 + 05 + 29 + +
+ + 1876-7591 + + + 2026 + May + 28 + + + JACC. Cardiovascular imaging + JACC Cardiovasc Imaging + + Machine Learning Model Using Pre-Cancer Therapy Cardiac Magnetic Resonance Images to Predict Cancer Therapy-Related Cardiac Dysfunction. + S1936-878X(26)00229-9 + 10.1016/j.jcmg.2026.04.007 + + Predicting risk of cancer therapy-related cardiac dysfunction (CTRCD) remains challenging. + The purpose of this study was to assess if deep learning (DL) approaches using cardiac magnetic resonance (CMR) images before cancer therapy can predict subsequent CTRCD and compare them with clinical and conventional imaging models. + Women with HER2+ breast cancer receiving anthracyclines and trastuzumab from 3 prospective studies (Toronto, Canada: EMBRACE-MRI, SPARE-HF; and Calgary, Canada: CIROC) were included. Patients were assessed before cancer therapy, after anthracycline, and trimonthly with repeated echocardiography and CMR. CTRCD was defined according to CMR. We calculated the HFA-ICOS risk score and measured CMR and echocardiography volumetric and functional parameters. Deep convolutional neural network architectures were used with pre-cancer therapy CMR short-axis cine images to develop image-based DL models to predict CTRCD. The Toronto patients were used for model derivation and internal validation; the Calgary patients were used for external validation. + A total of 229 patients (mean age 50.4 ± 9.7 years) were included: 176 in the internal (52 CTRCD events) development cohort and 53 in the external data set (14 CTRCD events). Our pre-cancer therapy CMR DL model demonstrated an AUC of 0.85 (95% CI: 0.69-0.97) and F1 score 0.69 (95% CI: 0.47-0.86) to predict CTRCD. On external validation, the DL model had an AUC of 0.80 (95% CI: 0.58-0.86) and F1 score of 0.55 (95% CI: 0.32-0.69). In comparison, the best-performing models using HFA-ICOS risk score, CMR, and echocardiographic parameters demonstrated, respectively, AUCs of 0.66 (95% CI: 0.53-0.75), 0.59 (95% CI: 0.41-0.73), 0.62 (95% CI: 0.44-0.78) and F1 scores of 0.56 (95% CI: 0.47-0.61), 0.20 (95% CI: 0.00-0.42) and 0.36 (95% CI: 0.12-0.62) to predict CTRCD. + A DL model using pre-cancer therapy CMR short-axis cines can predict future CTRCD risk better than clinical or manually quantified imaging models. + Copyright © 2026 American College of Cardiology Foundation. Published by Elsevier Inc. All rights reserved. + + + + Yu + Christopher + C + + Department of Medicine, Division of Cardiology, Ted Rogers Program in Cardiotoxicity Prevention, Peter Munk Cardiac Centre, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + Peikari + Mohammad + M + + Ted Rogers Computational Program, Ted Rogers Centre for Heart Research, Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + Labib + Dina + D + + Stephenson Cardiac Imaging Centre, Libin Cardiovascular Institute of Alberta, University of Calgary, Alberta, Canada. + + + + Houbois + Christian P + CP + + Sunnybrook Health Science Centre, University of Toronto, Toronto, Ontario, Canada. + + + + Steve Fan + Chun-Po + CP + + Ted Rogers Computational Program, Ted Rogers Centre for Heart Research, Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + White + James A + JA + + Stephenson Cardiac Imaging Centre, Libin Cardiovascular Institute of Alberta, University of Calgary, Alberta, Canada. + + + + Amir + Eitan + E + + Princess Margaret Cancer Centre, University of Toronto, Toronto, Ontario, Canada. + + + + Hanneman + Kate + K + + Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. + + + + J Wintersperger + Bernd + B + + Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Department of Radiology, LMU University Hospital, LMU Munich, Munich, Germany. + + + + Abdel-Qadir + Husam + H + + Department of Medicine, Division of Cardiology, Ted Rogers Program in Cardiotoxicity Prevention, Peter Munk Cardiac Centre, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Women's College Hospital, Toronto, Ontario, Canada. + + + + McIntosh + Chris + C + + Ted Rogers Computational Program, Ted Rogers Centre for Heart Research, Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada; Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Princess Margaret Cancer Centre, Toronto, Ontario, Canada. + + + + Thavendiranathan + Paaladinesh + P + + Department of Medicine, Division of Cardiology, Ted Rogers Program in Cardiotoxicity Prevention, Peter Munk Cardiac Centre, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada; Joint Department of Medical Imaging, Toronto General Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. Electronic address: dinesh.thavendiranathan@uhn.ca. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + JACC Cardiovasc Imaging + 101467978 + 1876-7591 + + IM + + cardio-oncology + cardiotoxicity cancer therapy–related cardiac dysfunction + heart failure + machine learning + + Funding Support and Author Disclosures This study was funded by operating grants 137132, 142456, and 147814 from the Canadian Institutes of Health Research, an Ontario Early Research Award, a Grant Miller Research grant from the University of Toronto, and AHSC AFP Innovation Funds. Dr Thavendiranathan (147814) is supported by a Canada Research Chair in Cardiooncology (CRC-2019-00097) and the Canadian Cancer Society/Canadian Institutes of Health Research W. David Hargraft Grant. All other authors have reported that they have no relationships relevant to the contents of this paper to disclose. +
+ + + + 2025 + 10 + 2 + + + 2026 + 4 + 7 + + + 2026 + 4 + 10 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 15 + 45 + + + 2026 + 5 + 29 + 10 + 31 + + + aheadofprint + + 42212994 + 10.1016/j.jcmg.2026.04.007 + S1936-878X(26)00229-9 + + +
+ + + 42212964 + + 2026 + 05 + 29 + +
+ + 2198-3844 + + + 2026 + May + 29 + + + Advanced science (Weinheim, Baden-Wurttemberg, Germany) + Adv Sci (Weinh) + + Machine Learning Accelerated Non-Adiabatic Molecular Dynamics Elucidates Local Polarization Effects on Non-radiative Recombination in Halide Perovskites. + + e75903 + e75903 + + 10.1002/advs.75903 + + Non-radiative recombination is a critical factor limiting the optoelectronic performance of halide perovskites, yet how local polarization induced by charge redistribution regulates this process remains unclear. To gain deeper insight while reducing the high computational cost of conventional non-adiabatic molecular dynamics (NAMD), we developed Hefei-NAMD-S, a machine learning (ML) framework constructed using stacked models. The relative errors of the ML predicted non-adiabatic coupling and pure-dephasing time, calculated with respect to the first-principles values, remain below 1.10%, while the total computational time is reduced by approximately 78%, demonstrating the accuracy and efficiency of the proposed framework. NAMD simulations further reveal that the B-site local polarization is involved in regulating the non-radiative recombination process. The rubidium-substitution-doped system (FARb) and the cesium interstitial doped system exhibit recombination times of about 280 ns, nearly 2.8 times that of the pristine system, and the enhanced performance of FARb has been supported by previous experimental evidence. These results identify B-site local polarization as one of the important factors in suppressing non-radiative recombination and provide a theoretical foundation for designing perovskite materials through local polarization modulation. + © 2026 The Author(s). Advanced Science published by Wiley‐VCH GmbH. + + + + Yang + Bing + B + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Wei + Xiaoli + X + + School of Biological Science and Medical Engineering, Southeast University, Nanjing, China. + + + + Cai + Bo + B + 0000-0002-6605-5931 + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + Department of Materials Science and Metallurgy, University of Cambridge, Cambridge, UK. + + + + Yang + Yan + Y + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Zhu + Xinghai + X + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Liu + Yi + Y + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Xia + Junmin + J + 0000-0002-9805-5397 + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Liu + Lihui + L + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Cao + Kun + K + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Shen + Wei + W + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Xia + Pengfei + P + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Chen + Shufen + S + 0000-0003-0333-958X + + State Key Laboratory of Flexible Electronics (LoFE) & Institute of Advanced Materials (IAM), Nanjing University of Posts & Telecommunications, Nanjing, China. + + + + Chen + Siyu + S + + Department of Materials Science and Metallurgy, University of Cambridge, Cambridge, UK. + + + TCM Group, Cavendish Laboratory, University of Cambridge, Cambridge, UK. + + + + Zhao + Jin + J + + Department of Physics and ICQD/Hefei National Research Center for Physical Sciences at the Microscale, University of Science and Technology of China, Hefei, China. + + + Hefei National Laboratory, University of Science and Technology of China, Hefei, China. + + + Department of Physics and Astronomy, University of Pittsburgh, Pittsburgh, USA. + + + + eng + + + 62404107 + National Natural Science Foundation of China + + + + 62304111 + National Natural Science Foundation of China + + + + 62474097 + National Natural Science Foundation of China + + + + BK20220396 + Natural Science Foundation of Jiangsu Province + + + + GDX2022010009 + Project of the State Key Laboratory of Flexible Electronics + + + + GZR2023010041 + Project of the State Key Laboratory of Flexible Electronics + + + + BZ2023059 + Science and Technology Cooperation Project of Hong Kong, Macao, and Taiwan + + + + 20KJA510005 + Natural Science Fund for Colleges and Universities in Jiangsu Province + + + + NY223076 + Natural Science Foundation of Nanjing University of Posts and Telecommunications + + + + NY222069 + Natural Science Research Start-up Foundation of Recruiting Talents of Nanjing University of Posts and Telecommunications + + + + CSC202308320240 + China Scholarship Council + + + + KYCX23_1091 + Ministry of Education, as well as the Postgraduate Research & Practice Innovation Program of Jiangsu Province + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Adv Sci (Weinh) + 101664569 + 2198-3844 + + IM + + excited‐state dynamics + local polarization + machine learning + non‐adiabatic molecular dynamics + +
+ + + + 2026 + 5 + 19 + + + 2026 + 3 + 6 + + + 2026 + 5 + 21 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 10 + 22 + + + aheadofprint + + 42212964 + 10.1002/advs.75903 + + + + G. E. Eperon, S. D. Stranks, C. Menelaou, M. B. Johnston, L. M. Herz, and H. J. Snaith, “Formamidinium Lead Trihalide: A Broadly Tunable Perovskite for Efficient Planar Heterojunction Solar Cells,” Energy & Environmental Science 7 (2014): 982, https://doi.org/10.1039/c3ee43822h. + + + A. A. Zhumekenov, M. I. Saidaminov, M. A. Haque, et al., “Formamidinium Lead Halide Perovskite Crystals With Unprecedented Long Carrier Dynamics and Diffusion Length,” ACS Energy Letters 1 (2016): 32–37, https://doi.org/10.1021/acsenergylett.6b00002. + + + A. Amat, E. Mosconi, E. Ronca, et al., “Cation‐Induced Band‐Gap Tuning in Organohalide Perovskites: Interplay of Spin–Orbit Coupling and Octahedra Tilting,” Nano Letters 14 (2014): 3608–3616, https://doi.org/10.1021/nl5012992. + + + Y. X. Shen, T. K. Zhang, G. Y. Xu, et al., “Strain Regulation Retards Natural Operation Decay of Perovskite Solar Cells,” Nature 635 (2024): 882–889, https://doi.org/10.1038/s41586‐024‐08161‐x. + + + Y. Zou, W. J. Yu, H. Q. Guo, et al., “A Crystal Capping Layer for Formation of Black‐Phase FAPbI3 Perovskite in Humid Air,” Science 385 (2024): 161–167, https://doi.org/10.1126/science.adn9646. + + + S. W. He, L. X. Qin, Z. Z. Liu, J. W. Kang, J. J. Luo, and J. Du, “Efficient Thermally Evaporated Near‐Infrared Perovskite Light‐Emitting Diodes via Phase Regulation,” Nano‐Micro Letters 17 (2025): 270, https://doi.org/10.1007/s40820‐025‐01776‐3. + + + Q. F. Han, S. H. Bae, P. Y. Sun, et al., “Single Crystal Formamidinium Lead Iodide (FAPbI 3 ): Insight Into the Structural, Optical, and Electrical Properties,” Advanced Materials 28 (2016): 2253–2258, https://doi.org/10.1002/adma.201505002. + + + N. R. E. L, https://www.nrel.gov/pv/cell‐efficiency, 2025. + + + J. H. Tao, C. H. Zhao, Z. J. Wang, et al., “Suppressing Non‐Radiative Recombination for Efficient and Stable Perovskite Solar Cells,” Energy & Environmental Science 18 (2025): 509–544, https://doi.org/10.1039/D4EE02917H. + + + J. A. Christians, P. A. M. Herrera, and P. V. Kamat, “Transformation of the Excited State and Photovoltaic Efficiency of CH3NH3PbI3 Perovskite upon Controlled Exposure to Humidified Air,” Journal of the American Chemical Society 137 (2015): 1530–1538, https://doi.org/10.1021/ja511132a. + + + M. H. Liu, X. Han, H. Chen, Q. Peng, and H. Huang, “A Molecular Descriptor of Intramolecular Noncovalent Interaction for Regulating Optoelectronic Properties of Organic Semiconductors,” Nature Communications 14 (2023): 2500, https://doi.org/10.1038/s41467‐023‐38078‐4. + + + J. Y. Wang, Y. Xie, K. Chen, H. B. Wu, J. M. Hodgkiss, and X. W. Zhan, “Physical Insights into Non‐Fullerene Organic Photovoltaics,” Nature Reviews Physics 6 (2024): 365–381, https://doi.org/10.1038/s42254‐024‐00719‐y. + + + S. Han, R. Deng, Q. Gu, et al., “Lanthanide‐Doped Inorganic Nanoparticles Turn Molecular Triplet Excitons Bright,” Nature 587 (2020): 594–599, https://doi.org/10.1038/s41586‐020‐2932‐2. + + + B. Cai, Y. Ma, B. Yang, et al., “A New Descriptor for Complicated Effects of Electronic Density of States on Ion Migration,” Advanced Functional Materials 33 (2023): 2300445, https://doi.org/10.1002/adfm.202300445. + + + M. Yang, P. Moroz, E. Miller, et al., “Energy Transport in CsPbBr3 Perovskite Nanocrystal Solids,” ACS Photonics 7 (2020): 154–164. + + + H. Huang, M. I. Bodnarchuk, S. V. Kershaw, M. V. Kovalenko, and A. L. Rogach, “Lead Halide Perovskite Nanocrystals in the Research Spotlight: Stability and Defect Tolerance,” ACS Energy Letters 2 (2017): 2071–2083, https://doi.org/10.1021/acsenergylett.7b00547. + + + W. J. Yin, T. T. Shi, and Y. F. Yan, “Unique Properties of Halide Perovskites as Possible Origins of the Superior Solar Cell Performance,” Advanced Materials 26 (2014): 4653–4658, https://doi.org/10.1002/adma.201306281. + + + B. Yang, B. Cai, J. Xia, et al., “Reducing Nonradiative Recombination in Halide Perovskites Through Appropriate Band Gaps and Heavy Atomic Masses,” The Journal of Physical Chemistry Letters 16 (2025): 1253–1260, https://doi.org/10.1021/acs.jpclett.4c03358. + + + W. Chu, W. A. Saidi, J. Zhao, and O. V. Prezhdo, “Soft Lattice and Defect Covalency Rationalize Tolerance of β‐CsPbI 3 Perovskite Solar Cells to Native Defects,” Angewandte Chemie International Edition 59 (2020): 6435–6441, https://doi.org/10.1002/anie.201915702. + + + X. Qiao, R. Zhu, D. Yan, et al., “Multi‐Point Collaborative Passivation of Surface Defects for Efficient and Stable Perovskite Solar Cells,” Advanced Functional Materials 34 (2024): 2409852, https://doi.org/10.1002/adfm.202409852. + + + X. S. Tian and R. Long, “Extending Carrier Lifetimes of Metal Halide Perovskites by Defect Passivation With Alkaline Earth Metals: A Time‐Domain Study,” The Journal of Physical Chemistry Letters 16 (2025): 2438–2444, https://doi.org/10.1021/acs.jpclett.5c00139. + + + R. Long, Q. Fang, A. S. Vasenko, R. Shi, W. H. Fang, and O. V. Prezhdo, “Structural Disorder in Higher‐Temperature Phases Increases Charge Carrier Lifetimes in Metal Halide Perovskites,” Journal of the American Chemical Society 144 (2022): 19137–19149. + + + C. Y. Zhao, Q. Sun, P. Xu, et al., “Highly Diffusive Nonluminescent Carriers in Hybrid Phase Lead Triiodide Perovskite Nanowires,” Angewandte Chemie International Edition 63 (2024): 202411499, https://doi.org/10.1002/anie.202411499. + + + M. K. Panda, D. Acharjee, A. B. Mahato, and S. Ghosh, “Hot Carrier Trapping in Light‐Soaked Mixed Phase CsPbI3 Perovskite Nanocrystals,” Advanced Optical Materials 13 (2025): 2402899, https://doi.org/10.1002/adom.202402899. + + + Y. Wang, Y. Wang, T. A. S. Doherty, S. D. Stranks, F. Gao, and D. R. Yang, “Octahedral Units in Halide Perovskites,” Nature Reviews Chemistry 9 (2025): 261–277, https://doi.org/10.1038/s41570‐025‐00687‐6. + + + Z. F. Xu, H. Y. Tsai, J. Y. Cui, et al., “Optimizing Molecular Passivation in MAPbI3 Perovskites: Impact of Dipole Moments and Structural Parameters,” The Journal of Physical Chemistry Letters 15 (2024): 12017–12024, https://doi.org/10.1021/acs.jpclett.4c02965. + + + M. Menahem, Z. B. Dai, S. Aharon, et al., “Strongly Anharmonic Octahedral Tilting in Two‐Dimensional Hybrid Halide Perovskites,” ACS Nano 15 (2021): 10153–10162, https://doi.org/10.1021/acsnano.1c02022. + + + L. Qiao, W. H. Fang, O. Prezhdo, and R. Long, “Suppressing Oxygen‐Induced Deterioration of Metal Halide Perovskites by Alkaline Earth Metal Doping: A Quantum Dynamics Study,” Journal of the American Chemical Society 144 (2022): 5543–5551, https://doi.org/10.1021/jacs.2c00319. + + + Y. L. Liu, R. Long, and W. H. Fang, “Great Influence of Organic Cation Motion on Charge Carrier Dynamics in Metal Halide Perovskite Unraveled by Unsupervised Machine Learning,” The Journal of Physical Chemistry Letters 13 (2022): 8537–8545, https://doi.org/10.1021/acs.jpclett.2c02515. + + + W. Qin, W. Ali, J. F. Wang, et al., “Suppressing Non‐Radiative Recombination in Metal Halide Perovskite Solar Cells by Synergistic Effect of Ferroelasticity,” Nature Communications 14 (2023): 256, https://doi.org/10.1038/s41467‐023‐35837‐1. + + + A. Grieder, M. C. Andrade, H. Takenaka, T. Ogitsu, L. Z. Tan, and Y. Ping, “Carrier Localization and Spontaneous Formation of Two‐Dimensional Polarization Domain in Halide Perovskites,” Physical Review Letters 136301 (2025): 136301, https://doi.org/10.1103/4kyt‐jj6w. + + + C. Zhang, Y. Zhong, Z. Tao, et al., “Advancing nonadiabatic molecular dynamics simulations in solids With E(3) Equivariant Deep Neural Hamiltonians,” Nature Communications 16 (2025): 2033, https://doi.org/10.1038/s41467‐025‐57328‐1. + + + M. Lin, V. Kochat, A. Krishnamoorthy, et al., “Ultrafast non‐radiative dynamics of atomically thin MoSe2,” Nature Communications 8 (2017): 1745, https://doi.org/10.1038/s41467‐017‐01844‐2. + + + Z. Zheng, Y. Shi, J. J. Zhou, O. V. Prezhdo, Q. Zheng, and J. Zhao, “Ab Initio Real‐Time Quantum Dynamics of Charge Carriers in Momentum Space,” Nature Computational Science 3 (2023): 532–541, https://doi.org/10.1038/s43588‐023‐00456‐9. + + + O. V. Prezhdo, “Modeling Non‐adiabatic Dynamics in Nanoscale and Condensed Matter Systems,” Accounts of Chemical Research 54 (2021): 4239–4249, https://doi.org/10.1021/acs.accounts.1c00525. + + + Y. Liu, R. Long, W. Fang, and O. V. Prezhdo, “Nuclear Quantum Effects Prolong Charge Carrier Lifetimes in Hybrid Organic–Inorganic Perovskites,” Journal of the American Chemical Society 145 (2023): 14112–14123, https://doi.org/10.1021/jacs.3c04412. + + + K. Hyeon‐Deuk and O. V. Prezhdo, “Multiple Exciton Generation and Recombination Dynamics in Small Si and CdSe Quantum Dots: An Ab Initio Time‐Domain Study,” ACS Nano 6 (2012): 1239–1250, https://doi.org/10.1021/nn2038884. + + + H. Zhu, K. Miyata, Y. Fu, et al., “Screening in Crystalline Liquids Protects Energetic Carriers in Hybrid Perovskites,” Science 353 (2016): 1409–1413, https://doi.org/10.1126/science.aaf9570. + + + T. R. Nelson, S. Fernandez‐Alberti, and S. Tretiak, “Modeling excited‐state molecular dynamics Beyond the Born–Oppenheimer regime,” Nature Computational Science 2 (2022): 689–692, https://doi.org/10.1038/s43588‐022‐00357‐3. + + + Z. Ni, S. Xu, H. Jiao, H. Gu, C. Fei, and J. Huang, “High Grain Boundary Recombination Velocity in Polycrystalline Metal Halide Perovskites,” Science Advances 8 (2022): abq8345, https://doi.org/10.1126/sciadv.abq8345. + + + C. M. Wolff, P. Caprioglio, M. Stolterfoht, and D. Neher, “Nonradiative Recombination in Perovskite Solar Cells: The Role of Interfaces,” Advanced Materials 31 (2019): 1902762, https://doi.org/10.1002/adma.201902762. + + + D. Liu, B. Wang, Y. Wu, A. S. Vasenko, and O. V. Prezhdo, “Breaking the Size Limitation of Nonadiabatic Molecular Dynamics in Condensed Matter Systems with Local Descriptor Machine Learning,” Proceedings of the National Academy of Sciences 121 (2024): 2403497121, https://doi.org/10.1073/pnas.2403497121. + + + S. Axelrod, E. Shakhnovich, and R. Gomez‐Bombarelli, “Excited state Non‐Adiabatic Dynamics of Large Photoswitchable Molecules using A Chemically Transferable Machine Learning Potential,” Nature Communications 13 (2022): 3440, https://doi.org/10.1038/s41467‐022‐30999‐w. + + + H. Li, Z. Tang, X. Gong, N. Zou, W. Duan, and Y. Xu, “Deep‐Learning Electronic‐Structure Calculation of Magnetic Superstructures,” Nature Computational Science 3 (2023): 321–327, https://doi.org/10.1038/s43588‐023‐00424‐3. + + + B. Wang, W. Chu, A. Tkatchenko, and O. V. Prezhdo, “Interpolating Nonadiabatic Molecular Dynamics Hamiltonian With Artificial Neural Networks,” The Journal of Physical Chemistry Letters 12 (2021): 6070–6077, https://doi.org/10.1021/acs.jpclett.1c01645. + + + Y. Wu, N. Prezhdo, and W. Chu, “Increasing Efficiency of Nonadiabatic Molecular Dynamics by Hamiltonian Interpolation With Kernel Ridge Regression,” The Journal of Physical Chemistry A 125 (2021): 9191–9200, https://doi.org/10.1021/acs.jpca.1c05105. + + + W. Chu, Q. Zheng, O. V. Prezhdo, J. Zhao, and W. A. Saidi, “Low‐Frequency Lattice Phonons in Halide Perovskites Explain High Defect Tolerance Toward Electron‐Hole Recombination,” Science Advances 6 (2020): aaw7453, https://doi.org/10.1126/sciadv.aaw7453. + + + Q. Zheng, W. Chu, C. Zhao, et al., “Ab Initio Nonadiabatic Molecular Dynamics Investigations on The Excited Carriers in Condensed Matter Systems,” WIREs Computational Molecular Science 9 (2019): 1411, https://doi.org/10.1002/wcms.1411. + + + L. Zhang, Q. Zheng, Y. Xie, et al., “Delocalized Impurity Phonon Induced Electron–Hole Recombination in Doped Semiconductors,” Nano Letters 18 (2018): 1592–1599, https://doi.org/10.1021/acs.nanolett.7b03933. + + + W. Chu, W. A. Saidi, Q. Zheng, et al., “Ultrafast Dynamics of Photongenerated Holes at a CH3OH/TiO2 Rutile Interface,” Journal of the American Chemical Society 138 (2016): 13740–13749, https://doi.org/10.1021/jacs.6b08725. + + + Q. Zheng, W. A. Saidi, Y. Xie, et al., “Phonon‐Assisted Ultrafast Charge Transfer at van der Waals Heterostructure Interface,” Nano Letters 17 (2017): 6435–6442, https://doi.org/10.1021/acs.nanolett.7b03429. + + + L. Breiman, “Random Forests,” Machine learning 45 (2001): 5–32, https://doi.org/10.1023/A:1010933404324. + + + S. B. Kotsiantis, “Decision Trees: A Recent Overview,” Artificial Intelligence Review 39 (2013): 261–283, https://doi.org/10.1007/s10462‐011‐9272‐4. + + + D. E. Rumelhart, G. E. Hinton, and R. J. Williams, “Learning Representations by Back‐Propagating Errors,” Nature 323 (1986): 533–536, https://doi.org/10.1038/323533a0. + + + R. Durbin and D. E. Rumelhart, “Product Units: A Computationally Powerful and Biologically Plausible Extension to Backpropagation Networks,” Neural Computation 1 (1989): 133–142, https://doi.org/10.1162/neco.1989.1.1.133. + + + Z. Zhang, J. Wang, Y. Zhang, J. Xu, and R. Long, “Charge Recombination Dynamics in a Metal Halide Perovskite Simulated by Nonadiabatic Molecular Dynamics Combined With Machine Learning,” The Journal of Physical Chemistry Letters 13 (2022): 10734–10740, https://doi.org/10.1021/acs.jpclett.2c03097. + + + Y. Tu, W. Chu, Y. Shi, W. Zhu, Q. Zheng, and J. Zhao, “High Photoreactivity on a Reconstructed Anatase TiO2 (001) Surface Predicted by Ab Initio Nonadiabatic Molecular Dynamics,” The Journal of Physical Chemistry Letters 13 (2022): 5766–5775, https://doi.org/10.1021/acs.jpclett.2c01417. + + + W. Hui, L. Chao, H. Lu, et al., “Stabilizing Black‐Phase Formamidinium Perovskite Formation At Room Temperature and High Humidity,” Science 371 (2021): 1359–1364, https://doi.org/10.1126/science.abf7652. + + + Z. Wu, H. Cai, T. Wu, et al., “The Tricyclic Alkaloid Catalyzed Crystallization of α‐FAPbI3 For High Performance Antisolvent‐Free Perovskite Solar Cells,” Energy & Environmental Science 17 (2024): 4670–4680, https://doi.org/10.1039/D4EE01008F. + + + G. Chen, Y. Qiu, H. Gao, et al., “Air‐Stable Highly Crystalline Formamidinium Perovskite 1D Structures for Ultrasensitive Photodetectors,” Advanced Functional Materials 30 (2020): 1908894, https://doi.org/10.1002/adfm.201908894. + + + G. Ohad, D. Wing, S. E. Gant, et al., “Band Gaps of Halide Perovskites From a Wannier‐Localized Optimally Tuned Screened Range‐Separated Hybrid Functional,” Physical Review Materials 6 (2022): 104606, https://doi.org/10.1103/PhysRevMaterials.6.104606. + + + R. D. Shannon, “Revised Effective Ionic Radii and Systematic Studies of Interatomic Distances in Halides and Chalcogenides,” Acta Crystallographica Section A 32 (1976): 751–767, https://doi.org/10.1107/S0567739476001551. + + + P. Gratia, G. Grancini, J. N. Audinot, et al., “Intrinsic Halide Segregation at Nanometer Scale Determines the High Efficiency of Mixed Cation/Mixed Halide Perovskite Solar Cells,” Journal of the American Chemical Society 138 (2016): 15821–15824, https://doi.org/10.1021/jacs.6b10049. + + + T. F. Lu, W. B. Chu, S. Agrawal, Z. H. Zhang, and O. V. Prezhdo, “Lattice Distortion and Low‐Frequency Anharmonic Phonons Suppress Charge Recombination in Lead Halide Perovskites upon Pseudohalide Doping: Time‐Domain Ab Initio Analysis,” The Journal of Physical Chemistry Letters 14 (2023): 10685–10692, https://doi.org/10.1021/acs.jpclett.3c02850. + + + X. Li, Y. Li, Y. Feng, et al., “Strain Regulation of Mixed‐Halide Perovskites Enables High‐Performance Wide‐Bandgap Photovoltaics,” Advanced Materials 36 (2024): 2401103, https://doi.org/10.1002/adma.202401103. + + + J. B. Chen, H. Dong, J. R. Li, et al., “Solar Cell Efficiency Exceeding 25% Through Rb‐Based Perovskitoid Scaffold Stabilizing the Buried Perovskite Surface,” ACS Energy Letters 7 (2022): 3685–3694, https://doi.org/10.1021/acsenergylett.2c01661. + + + Q. Ji, Q. L. Fang, X. L. Wei, et al., “Origin and Suppression of Nonradiative Recombination in Inorganic Halide Perovskites,” Nano Letters 25 (2025): 5875–5880, https://doi.org/10.1021/acs.nanolett.5c00849. + + + +
+ + + 42212947 + + 2026 + 05 + 29 + +
+ + 1746-0921 + + + 2026 + May + 29 + + + Future microbiology + Future Microbiol + + AI-microbial hybrid biosensors: the next generation of intelligent detection systems. + + 1 + 21 + 1-21 + + 10.1080/17460913.2026.2678101 + + The convergence of artificial intelligence (AI) and microbial biosensor technology is transforming pathogen detection, environmental surveillance, antimicrobial resistance (AMR) profiling, and precision diagnostics. Microbial biosensors exploit the specificity of living microorganisms, but signal variability, scalability limits, and interpretive challenges have constrained clinical adoption. Integration of machine learning (ML) and deep neural networks (DNNs) now enables adaptive, high-performance sensing systems. Applied to multi-sensor datasets-such as electrochemical impedance, Raman spectroscopy, and hyperspectral microscopy-convolutional neural networks (CNNs) and ensemble models achieve bacterial classification accuracies of 95-99%, while markedly reducing diagnostic turnaround times and enabling continuous surveillance. Despite rapid progress, the field remains fragmented, lacking a unified synthesis of system architectures, computational strategies, translational barriers, and regulatory considerations. This narrative review provides an integrative analysis of AI-microbial hybrid biosensors, covering biorecognition principles, AI integration approaches, system designs, clinical and environmental applications, performance metrics, and key challenges. It also highlights emerging directions, including synthetic biology, CRISPR-enabled sensing, and edge computing. By consolidating these dimensions, this review positions AI-microbial hybrid biosensors as a next-generation platform for real-time pathogen detection and adaptive biosurveillance. Literature was identified through systematic searches of Google Scholar, PubMed, Web of Science, Scopus, and IEEE Xplore (2000-2026), supplemented by manual reference screening. + + + + Hama Soor + Taib A + TA + + Medical Laboratory Department, Technical College of Health and Medical Technology, Sulaimani Polytechnic University, Sulaymaniyah, Kurdistan Region, Iraq. + + + + Mustafa + Ayman M + AM + 0009-0005-4254-4182 + + Medical Laboratory Department, Technical College of Health and Medical Technology, Sulaimani Polytechnic University, Sulaymaniyah, Kurdistan Region, Iraq. + + + Scientific Affairs Department, Smart Health Tower, Sulaymaniyah, Kurdistan Region, Iraq. + + + Medical Laboratory Science Department, College of Health Sciences, University of Human Development, Sulaymaniyah, Kurdistan Region, Iraq. + + + Kscien Organization for Scientific Research (Middle East Office), Sulaymaniyah, Kurdistan Region, Iraq. + + + + Abdulkarim + Meer M + MM + + Scientific Affairs Department, Smart Health Tower, Sulaymaniyah, Kurdistan Region, Iraq. + + + + Abdullah + Hiwa O + HO + + Scientific Affairs Department, Smart Health Tower, Sulaymaniyah, Kurdistan Region, Iraq. + + + Kscien Organization for Scientific Research (Middle East Office), Sulaymaniyah, Kurdistan Region, Iraq. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + England + Future Microbiol + 101278120 + 1746-0913 + + IM + + Artificial intelligence + antimicrobial resistance + deep learning + machine learning + microbial biosensors + pathogen detection + synthetic biology + +
+ + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 15 + 41 + + + 2026 + 5 + 29 + 10 + 3 + + + aheadofprint + + 42212947 + 10.1080/17460913.2026.2678101 + + +
+
\ No newline at end of file diff --git a/data/raw/pubmed_20260530_124620.xml b/data/raw/pubmed_20260530_124620.xml new file mode 100644 index 0000000..73ebacc --- /dev/null +++ b/data/raw/pubmed_20260530_124620.xml @@ -0,0 +1,22257 @@ + + + + + 42216673 + + 2026 + 05 + 30 + +
+ + 1875-8908 + + + 2026 + May + 30 + + + Journal of Alzheimer's disease : JAD + J Alzheimers Dis + + Multimodal machine learning for early risk stratification of post-stroke cognitive impairment. + + 13872877261454538 + 13872877261454538 + + 10.1177/13872877261454538 + + BackgroundPost-stroke cognitive impairment (PSCI) is a major vascular contributor to dementia, significantly impacting long-term recovery and quality of life. Developing accurate prediction models are essential for early identification and timely intervention in high-risk individuals.ObjectiveTo develop and validate a stacking-based multimodal machine learning model integrating clinical, demographic, and neuroimaging features for early PSCI prediction in acute ischemic stroke (AIS) patients.MethodsIn this retrospective cohort study, 1070 AIS patients admitted to Lianyungang First People's Hospital from January 2020 to August 2023 were included. Demographic, clinical, and neuroimaging data were collected, and cognitive function was assessed 3-6 months post-stroke. PSCI was defined as a z-score ≤ -2.0 in at least one of four cognitive domains. A stacking ensemble model was developed, combining six base algorithms: XGBoost, Gradient Boosting Decision Trees, CatBoost, Support Vector Machine, Logistic Regression, and LightGBM. The final prediction was generated by a meta-model trained on base model outputs.ResultsOf the 1070 patients (mean age 67.4 ± 9.3 years, 61.5% male), 37.2% developed PSCI. The stacking model achieved 98.13% accuracy, 0.9972 AUC, and 0.9744 F1-score in internal validation. External validation showed 81.00% accuracy, 0.9049 AUC, and 0.8780 recall. Key predictors of PSCI included infarct volume, cortical lesions, medial temporal lobe atrophy, and baseline NIHSS score.ConclusionsThis stacking-based multimodal machine learning model demonstrates robust predictive performance for PSCI risk in AIS patients, serving as a reliable tool for early detection that may inform personalized intervention strategies to prevent progression to post-stroke dementia. + + + + Zheng + Xingyongpei + X + 0009-0006-6281-8870 + + Department of Neurology, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + + Zhao + Panpan + P + 0000-0002-2494-3148 + + Department of Neurosurgery, Institute of Neuroscience, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + + Wang + Na + N + 0009-0007-4274-7726 + + Department of Neurology, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + + Wang + Xinyu + X + 0009-0007-9290-2464 + + Department of Neurology, Lianyungang Clinical College of Nanjing Medical University, Lianyungang, China. + + + + Dong + Ziyi + Z + 0009-0006-9227-6208 + + Department of Neurology, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + + Gu + Caihong + C + 0009-0009-8206-8685 + + Department of Critical Care Medicine, The First Affiliated Hospital of Kangda College of Nanjing Medical University, Lianyungang, China. + + + + Sun + Yong + Y + 0009-0008-0281-5875 + + Department of Neurosurgery, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + + Gu + Xinru + X + 0000-0003-4282-1918 + + Department of Neurology, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + Department of Neurology, The First Affiliated Hospital of Kangda College of Nanjing Medical University, Lianyungang, China. + + + Department of Neurology, Lianyungang Medical Education Innovation and Research Centre of Nanjing Medical University, Lianyungang, China. + + + + Zhou + Xinyu + X + 0000-0002-9647-1100 + + Department of Neurology, The Affiliated Lianyungang Hospital of Xuzhou Medical University, Lianyungang, China. + 117961 + + + Department of Neurology, Lianyungang Clinical College of Nanjing Medical University, Lianyungang, China. + + + Department of Neurology, The First Affiliated Hospital of Kangda College of Nanjing Medical University, Lianyungang, China. + + + Department of Neurology, Lianyungang Medical Education Innovation and Research Centre of Nanjing Medical University, Lianyungang, China. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + United States + J Alzheimers Dis + 9814863 + 1387-2877 + + IM + + Alzheimer's disease + machine learning + magnetic resonance imaging + post-stroke cognitive impairment + predictors + vascular dementia + +
+ + + + 2026 + 5 + 30 + 6 + 35 + + + 2026 + 5 + 30 + 6 + 35 + + + 2026 + 5 + 30 + 5 + 3 + + + aheadofprint + + 42216673 + 10.1177/13872877261454538 + + +
+ + + 42216643 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 0219-6352 + + 25 + 5 + + 2026 + May + 12 + + + Journal of integrative neuroscience + J Integr Neurosci + + Single-Cell and Integrative Analyses Uncover Therapeutic Potential of RFX1-Mediated Cuproptosis in PitNETs. + + 49669 + 49669 + + 10.31083/JIN49669 + + Pituitary neuroendocrine tumors (PitNETs) have different cell types and levels of growth. We do not fully understand why they grow so much. Cuproptosis is a new way that copper kills cells and it is important in cancer. But, we do not know how it works in PitNETs yet. + We used several methods like bulk and single-cell sequencing with machine learning to investigate cuproptosis in PitNETs. We used Weighted Gene Co-expression Network Analysis (WGCNA) and random forest to find important genes. Then, we did tests in the lab to see how these genes work. + Analysis of cuproptosis-related genes (CRGs) revealed significant differences in expression and immune landscapes between invasive and non-invasive PitNETs. We established CRG-based molecular subtypes and a high-performance predictive model for tumor invasiveness. Notably, regulatory factor X1 (RFX1) was identified and validated as a key regulator that suppresses tumor growth and sensitizes cells to cuproptosis. These results highlight the clinical relevance of cuproptosis in PitNET progression and suggest RFX1 as a potential therapeutic target. + This study establishes a single-cell-based molecular landscape of PitNETs and uncovers RFX1-mediated cuproptosis as a key suppressive mechanism of tumor progression. These findings not only deepen the understanding of PitNET heterogeneity but also propose RFX1 as a promising therapeutic target for PitNETs. + © 2026 The Author(s). Published by IMR Press. + + + + Yang + Shuangjian + S + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Pu + Changqin + C + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Deng + Congcong + C + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Bai + Xuexue + X + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Wu + Si + S + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Tian + Chenxin + C + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Xu + Xueyou + X + + Department of Neurosurgery, The Affiliated Hospital of Guizhou Medical University, 550004 Guiyang, Guizhou, China. + + + + Wang + Renzhi + R + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + Chang + Mengqi + M + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + Institute of Clinical Medicine, National Infrastructures for Translational Medicine, Peking Union Medical College Hospital, Chinese Academy of Medical Sciences and Peking Union Medical College, 100007 Beijing, China. + + + + Feng + Ming + M + + Department of Neurosurgery, China Pituitary Disease Registry Center, Peking Union Medical College Hospital, Chinese Academy of Medical Science and Peking Union Medical College, 100730 Beijing, China. + + + + eng + + + Qiankehe Support [2021] General 452 + Guizhou Provincial Science and Technology Support Program + + + + CIFMS 2021-I2M-1-003 + CAMS Innovation Fund for Medical Sciences + + + + 2022-PUMCH-C-012 + National High Level Hospital Clinical Research Funding + + + + 2020-JKCS-021 + Non-profit Central Research Institute Fund of Chinese Academy of Medical Sciences + + + + + Journal Article + +
+ + Singapore + J Integr Neurosci + 101156357 + 0219-6352 + + + + 0 + Regulatory Factor X1 + + + IM + + + Cuproptosis + + + Humans + + + Neuroendocrine Tumors + metabolism + genetics + + + Regulatory Factor X1 + metabolism + genetics + + + Pituitary Neoplasms + metabolism + genetics + + + Single-Cell Analysis + + + Single-Cell Gene Expression Analysis + + + Animals + + + + cell death + machine learning + molecular targeted therapy + pituitary neoplasms + single-cell analysis + +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 1 + 3 + + + 2026 + 2 + 11 + + + 2026 + 3 + 10 + + + 2026 + 5 + 30 + 4 + 32 + + + ppublish + + 42216643 + 10.31083/JIN49669 + S0219-6352(26)01107-1 + + +
+ + + 42216514 + + 2026 + 05 + 30 + +
+ + 1552-5732 + + + 2026 + May + 30 + + + Journal of human lactation : official journal of International Lactation Consultant Association + J Hum Lact + + Prevalence and Predictors of Non-Exclusive Breastfeeding at Hospital Discharge in Uruguay. + + 8903344261446162 + 8903344261446162 + + 10.1177/08903344261446162 + + The prescription of infant formula during postpartum hospitalization is one of several factors that influence breastfeeding. + To analyze the prevalence of non-exclusive breastfeeding at hospital discharge in Uruguay, a Latin American country, and to identify the predictors of non-exclusive breastfeeding at hospital discharge. + This cross-sectional study draws on data from all births between 2008 and 2020 registered in the Uruguayan perinatal information system. XGBoost, a machine-learning algorithm, was used to identify the predictors of infant formula at hospital discharge. A binary variable indicating non-exclusive breastfeeding (1 = yes, 0 = no) was used as dependent variable, and another 35 variables were used as predictors, including mother, child, and hospital characteristics. + The prevalence of non-exclusive breastfeeding at hospital discharge descriptively increased in the period, from 7.0% in 2008 to 27.9% in 2020. The model had a moderately adequate prediction performance (ROC AUC = .781, 95% CI [.778, .785], Brier score = .188, 95% CI [.187, .189], PR AUC = .424, 95% CI [.187, .431]). Hospital type was the most important variable in predicting non-exclusive breastfeeding, followed by birth weight and type of birth. Predicted probability of non-exclusive breastfeeding was highest in public hospitals in the capital (Montevideo), for infants with birth weight lower than 3000 g and higher than 3900 g and born through Cesarean delivery. + Results suggest the need to address the structural and procedural factors that may contribute to the prescription of infant formula to improve breastfeeding practices in the country. Additional studies are needed to identify the specific maternity practices that promote the prescription of infant formula at hospital discharge. + + + + Vidal + Leticia + L + 0000-0001-6781-9852 + + Sensometrics & Consumer Science, Instituto Polo Tecnológico de Pando, Facultad de Química, Universidad de la República, Uruguay. + + + + de León + Carolina + C + + División Salud, Intendencia de Montevideo, Uruguay. + + + + Ares + Gastón + G + 0000-0002-0565-8835 + + Sensometrics & Consumer Science, Instituto Polo Tecnológico de Pando, Facultad de Química, Universidad de la República, Uruguay. + + + + Rodríguez + Raquel + R + + Escuela de Nutrición, Universidad de la República, Uruguay. + + + + Brunet + Gerónimo + G + + Espacio Interdisciplinario, Universidad de la República, Uruguay. + + + + Girona + Alejandra + A + + Escuela de Nutrición, Universidad de la República, Uruguay. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + United States + J Hum Lact + 8709498 + 0890-3344 + + IM + + breastfeeding + cross-sectional study + exclusive breastfeeding + feeding patterns + in-hospital breastfeeding + infant formula + newborn feeding + statistical modeling + +
+ + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 3 + 2 + + + aheadofprint + + 42216514 + 10.1177/08903344261446162 + + +
+ + + 42216443 + + 2026 + 05 + 30 + +
+ + 1365-2648 + + + 2026 + May + 29 + + + Journal of advanced nursing + J Adv Nurs + + Shift-Specific Patterns of Nursing Workloads in the Emergency Department: AI Powered Analysis. + 10.1111/jan.70648 + + To identify and differentiate workload patterns across shifts and to provide evidence for optimizing nursing workforce allocation in emergency departments: DESIGN: A cross-sectional study. + Real time data were collected from an emergency department in a general hospital in Seoul, South Korea, between October 30, 2023 to October 24, 2024. Smartphones, beacons, and smartwatches were used to capture nursing time, physical activity, work-related characteristics, and location transitions across 238 shifts. A multiclass eXtreme Gradient Boosting model was developed and evaluated to classify working shifts (day, evening, night). Shapely Additive exPlanations were applied to identify key contributing features, and shift-specific differences were examined using analysis of variance with post hoc tests. + The model demonstrated strong performance in distinguishing shifts. Key features included the number of admissions, discharges, assigned patients, and both direct and indirect nursing time, all of which varied across shifts. In contrast, location transition patterns were relatively consistent. + Shift-specific nursing workloads in emergency departments can be effectively identified using multidimensional, real-world nursing activity data. + Findings support the development of staffing strategies that account for variation in workload across shifts, with potential to improve efficiency and maintain quality of care. + This study addresses the lack of objective evidence for shift-specific workload differences in emergency nursing. It demonstrates that multidimensional activity data can distinguish workload patterns across shifts. The findings may inform staffing decisions for emergency department nurses and support improvements in workforce management and patient care. + This study adhered to the Strengthening the Reporting of Observational Studies in Epidemiology guidelines. + No patients or members of the public were involved in the design, conduct, analysis, or reporting of this study. + © 2026 The Author(s). Journal of Advanced Nursing published by John Wiley & Sons Ltd. + + + + Kang + Younhee + Y + 0000-0002-7964-5674 + + College of Nursing, Graduate Program in System Health Science and Engineering, Ewha Womans University, Seoul, Republic of Korea. + + + + Park + Hyunggon + H + 0000-0002-5079-1504 + + Smart Factory Multidisciplinary Program, Department of Electronic and Electrical Engineering, College of Engineering, Ewha Womans University, Seoul, Republic of Korea. + + + + Park + Inkyung + I + 0009-0006-7180-9917 + + College of Nursing, Graduate Program in System Health Science and Engineering, Ewha Womans University, Seoul, Republic of Korea. + + + + Choi + Dayoung + D + 0009-0008-9270-0528 + + Smart Factory Multidisciplinary Program, Department of Electronic and Electrical Engineering, College of Engineering, Ewha Womans University, Seoul, Republic of Korea. + + + + Kim + Suemin + S + 0009-0009-3125-4808 + + College of Nursing, Graduate Program in System Health Science and Engineering, Ewha Womans University, Seoul, Republic of Korea. + + + + eng + + + 2021R1A2C2006359 + National Research Foundation of Korea (NRF) + + + + NRF-5199990614253 + BK21 FOUR (Fostering Outstanding Universities for Research) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + J Adv Nurs + 7609811 + 0309-2402 + + IM + + SHAP + emergency department + explainable artificial intelligence + machine learning + nursing workloads + shift work + +
+ + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 8 + + + 2026 + 3 + 25 + + + 2026 + 5 + 19 + + + 2026 + 5 + 30 + 1 + 33 + + + aheadofprint + + 42216443 + 10.1111/jan.70648 + + + + Alomari, A. H., J. Collison, L. Hunt, and N. J. Wilson. 2021. “Stressors for Emergency Department Nurses: Insights From a Cross‐Sectional Survey.” Journal of Clinical Nursing 30, no. 7–8: 975–985. https://doi.org/10.1111/jocn.15641. + + + American Nurses Association. 2020. ANA's Principles for Nurse Staffing. 3rd ed. https://cdn2.hubspot.net/hubfs/4850206/PNS3E_ePDF.pdf. + + + Bakhoum, N., C. Gerhart, E. Schremp, et al. 2021. “A Time and Motion Analysis of Nursing Workload and Electronic Health Record Use in the Emergency Department.” Journal of Emergency Nursing 47, no. 5: 733–741. https://doi.org/10.1016/j.jen.2021.03.007. + + + Brassington, S., C. Thomas‐Hawkins, M. L. Johansen, P. B. De Cordova, J. P. Cimiotti, and P. Zha. 2025. “Impact of Registered Nurse Staffing, Workload, and the Practice Environment on Burnout in Emergency Nurses.” Journal of Emergency Nursing 51, no. 4: 684–691. https://doi.org/10.1016/j.jen.2025.01.007. + + + British Columbia Ministry of Health. 2024. Minimum Nurse‐to‐Patient Ratio: Emergency Department. https://www2.gov.bc.ca/assets/gov/health/practitioner‐pro/minimum‐nurse‐to‐patient‐ratios/mnpr_emergency_department.pdf. + + + Chang, H. E. 2024. “Relationships Among Meal Time, Break Time and Workplace Characteristics of Nurses Who Work Day, Evening and Night Shifts: A Cross‐Sectional Study.” International Journal of Occupational Safety and Ergonomics 30, no. 1: 312–318. https://doi.org/10.1080/10803548.2023.2298116. + + + Choi, H., J. S. Ok, and S. Y. An. 2019. “Evaluation of Validity of the Korean Triage and Acuity Scale.” Journal of Korean Academy of Nursing 49, no. 1: 26–35. https://doi.org/10.4040/jkan.2019.49.1.26. + + + Clopton, E. L., and E. K. Hyrkäs. 2020. “Modeling Emergency Department Nursing Workload in Real Time: An Exploratory Study.” International Emergency Nursing 48: 100793. https://doi.org/10.1016/j.ienj.2019.100793. + + + Hao, X., Y. Dai, S. Jia, S. Liu, C. Zhao, and X. Liu. 2025. “Latent Profile Analysis of Mental Workload Among Emergency Department Nurses: A Cross‐Sectional Study.” BMC Nursing 24, no. 1: 332. https://doi.org/10.1186/s12912‐025‐02976‐3. + + + Hetherington, D., N. J. Wilson, K. Dixon, and G. Murphy. 2024. “Emergency Department Nurses’ Narratives of Burnout: Changing Roles and Boundaries.” International Emergency Nursing 74: 101439. https://doi.org/10.1016/j.ienj.2024.101439. + + + Hosmer, D. W., Jr., S. Lemeshow, and R. X. Sturdivant. 2013. Applied Logistic Regression. John Wiley & Sons. + + + Hospital Nurses Association. 2024. Survey on hospital nurse staffing status. Hospital Nurses Association. + + + Iordache, S., M. Elseviers, R. De Cock, and B. Van Rompaey. 2020. “Development and Validation of an Assessment Tool for Nursing Workload in Emergency Departments.” Journal of Clinical Nursing 29, no. 5–6: 794–809. https://doi.org/10.1111/jocn.15106. + + + Janhunen, K., P. Kankkunen, and T. Kvist. 2020. “Nurse Staffing and Care Process Factors in Paediatric Emergency Department—An Administrative Data Study.” Journal of Clinical Nursing 29, no. 23–24: 4554–4560. https://doi.org/10.1111/jocn.15482. + + + Kang, Y., K. Lee, and Y. Hur. 2024. “Development of a Scale for Measuring Nurses’ Stress.” Journal of Korean Clinical Nursing Research 30, no. 1: 11–23. https://doi.org/10.22650/JKCNR.2024.30.1.11. + + + Kaya, A., and A. İşler Dalgıç. 2022. “Evaluating Workload and Manpower Planning Among Pediatric Emergency Department Nurses in Turkey During COVID‐19: A Cross‐Sectional, Multicenter Study.” Journal of Pediatric Nursing 65: 69–74. https://doi.org/10.1016/j.pedn.2022.03.014. + + + Lundberg, S. M., and S.‐I. Lee. 2017. “A Unified Approach to Interpreting Model Predictions.” Advances in Neural Information Processing Systems 30. https://proceedings.neurips.cc/paper/2017/hash/8a20a8621978632d76c43dfd28b67767‐Abstract.html. + + + Mehra, M., M. Robin, and D. Agrawal. 2024. “The Relationship Between Patient Load and Nursing Staffing Strength in Various Shifts of the Day in Emergency Department of a Major Tertiary Care Hospital in India.” Indian Journal of Neurotrauma 21, no. 1: 38–42. https://doi.org/10.1055/s‐0043‐1761938. + + + Park, H., and Y. Kang. 2025. “System Development for Measuring Nursing Workload Based on the Real‐Time Location Information.” Journal of Nursing Management 2025, no. 1: 2188150. https://doi.org/10.1155/jonm/2188150. + + + Park, S., J. Yoo, Y. Lee, et al. 2024. “Quantifying Emergency Department Nursing Workload at the Task Level Using NASA‐TLX: An Exploratory Descriptive Study.” International Emergency Nursing 74: 101424. https://doi.org/10.1016/j.ienj.2024.101424. + + + Pearce, S., T. Marchand, T. Shannon, H. Ganshorn, and E. Lang. 2023. “Emergency Department Crowding: An Overview of Reviews Describing Measures Causes, and Harms.” Internal and Emergency Medicine 18, no. 4: 1137–1158. https://doi.org/10.1007/s11739‐023‐03239‐2. + + + Peta, D., and J. Y. Bradford. 2025. Staffing and Productivity in the Emergency Setting [Position Statement]. Emergency Nurses Association. + + + Pourmand, A., A. Caggiula, J. Barnett, M. Ghassemi, and R. Shesser. 2023. “Rethinking Traditional Emergency Department Care Models in a Post‐Coronavirus Disease‐2019 World.” Journal of Emergency Nursing 49, no. 4: 520–529.e2. https://doi.org/10.1016/j.jen.2023.02.008. + + + Pryce, A., M. Unwin, L. Kinsman, and D. McCann. 2021. “Delayed Flow Is a Risk to Patient Safety: A Mixed Method Analysis of Emergency Department Patient Flow.” International Emergency Nursing 54: 100956. https://doi.org/10.1016/j.ienj.2020.100956. + + + Python Software Foundation. 2020. “Python (Version 3.9) [Computer Software].” https://www.python.org. + + + Saaiman, T., C. J. Filmalter, and T. Heyns. 2021. “Important Factors for Planning Nurse Staffing in the Emergency Department: A Consensus Study.” International Emergency Nursing 56: 100979. https://doi.org/10.1016/j.ienj.2021.100979. + + + Sartini, M., A. Carbone, A. Demartini, et al. 2022. “Overcrowding in Emergency Department: Causes, Consequences, and Solutions—A Narrative Review.” Healthcare (Basel) 10, no. 9: 1625. https://doi.org/10.3390/healthcare10091625. + + + Udod, S., M. MacPhee, J. I. J. Wagner, L. Berry, G. Perchie, and A. Conway. 2021. “Nurse Perspectives in the Emergency Department: The Synergy Tool in Workload Management and Work Engagement.” Journal of Nursing Management 29, no. 6: 1763–1770. https://doi.org/10.1111/jonm.13320. + + + von Elm, E., D. G. Altman, M. Egger, et al. 2007. “The Strengthening the Reporting of Observational Studies in Epidemiology (STROBE) Statement: Guidelines for Reporting Observational Studies.” PLoS Medicine 4, no. 10: e296. https://doi.org/10.1371/journal.pmed.0040296. + + + +
+ + + 42216430 + + 2026 + 05 + 30 + +
+ + 1464-5491 + + + 2026 + May + 29 + + + Diabetic medicine : a journal of the British Diabetic Association + Diabet Med + + Application of construction and validation of logistic regression model in risk prediction of non-proliferative diabetic retinopathy in type 2 diabetes mellitus. + + e70374 + e70374 + + 10.1111/dme.70374 + + Diabetic retinopathy (DR) is a leading cause of vision impairment in type 2 diabetes mellitus (T2DM), with non-proliferative DR (NPDR) representing its most prevalent form. Early identification of high-risk individuals remains challenging due to the complexity and poor interpretability of existing machine learning models. This study aims to develop a clinically interpretable Logistic regression model for NPDR risk prediction using routinely available clinical indicators. + A retrospective cohort of 421 T2DM patients from a single centre was divided into training (n = 295) and validation (n = 126) sets. Demographic, glycemic (fasting glucose, HbA1c), renal (UACR) and ophthalmologic (macular oedema) data were collected. Univariate and multivariate Logistic regression with stepwise selection identified independent predictors. Model performance was evaluated using area under the ROC curve (AUC), sensitivity, specificity and Hosmer-Lemeshow goodness-of-fit. Internal validation was performed via bootstrapping (1000 replicates), and external validation used an independent cohort. + Four independent predictors were identified: macular oedema (OR = 3.247), fasting glucose (OR = 2.194), HbA1c (OR = 2.799) and UACR (OR = 1.153). The model demonstrated excellent discrimination in the training set (AUC = 0.949, sensitivity = 86.4%, specificity = 95.5%) and good calibration (H-L test, p = 0.358). Bootstrap validation confirmed stability of HbA1c and UACR. External validation yielded an AUC of 0.918, with a positive predictive value of 91.1% and maintained calibration (p = 0.282). + The constructed Logistic regression model accurately predicts NPDR risk using four readily available clinical variables, offering high discriminative power, interpretability and clinical utility for stratifying high-risk T2DM patients in primary care settings. + © 2026 Diabetes UK. + + + + Zhang + Jiaoyan + J + + Wuxi Medical Center, Ophthalmology Department, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + Cao + Xiaodong + X + + Wuxi Medical Center, Nursing Department, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + Yu + Xin + X + + Wuxi Medical Center, Surgical Department, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + Jiang + Minfeng + M + + Wuxi Medical Center, Ophthalmology Department, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + Xie + Tianhua + T + + Wuxi Medical Center, Ophthalmology Department, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + Wang + Yangningzhi + Y + + Wuxi Medical Center, Ophthalmology Department, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + Tang + Zhengyuan + Z + 0009-0002-4161-9187 + + Wuxi Medical Center, Deanery, The Affiliated Wuxi People's Hospital of Nanjing Medical University, Nanjing Medical University, Wuxi People's Hospital, Wuxi, Jiangsu, China. + + + + eng + + + Q202301 + Youth Project of Wuxi Nursing Association + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Diabet Med + 8500858 + 0742-3071 + + IM + + Hosmer–Lemeshow fitting + ROC curve + logistic regression model + non‐proliferative diabetic retinopathy + type 2 diabetes mellitus + +
+ + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 12 + + + 2025 + 10 + 13 + + + 2026 + 5 + 14 + + + 2026 + 5 + 30 + 1 + 22 + + + aheadofprint + + 42216430 + 10.1111/dme.70374 + + + + Zaman M, Zajner C, Xie J, et al. Association between sociodemographic factors and self‐reported diabetic retinopathy: a cross‐sectional, population‐based analysis. Am J Ophthalmol. 2025;271:138‐148. + + + Ingle P, Hamden NA, Soh WK, Loh R, Hatware K. Development and novel therapeutics in diabetic retinopathy. Curr Diabetes Rev. 2026;22(3):e15733998324556. + + + Thomas RL, Halim S, Gurudas S, Sivaprasad S, Owens DR. IDF diabetes atlas: a review of studies utilising retinal photography on the global prevalence of diabetes related retinopathy between 2015 and 2018. Diabetes Res Clin Pract. 2019;157:107840. + + + Yang QH, Zhang Y, Zhang XM, Li XR. Prevalence of diabetic retinopathy, proliferative diabetic retinopathy and non‐proliferative diabetic retinopathy in Asian T2DM patients: a systematic review and meta‐analysis. Int J Ophthalmol. 2019;12(2):302‐311. + + + Hou X, Wang L, Zhu D, et al. Prevalence of diabetic retinopathy and vision‐threatening diabetic retinopathy in adults with diabetes in China. Nat Commun. 2023;14(1):4296. + + + Stokholm L, Pedersen FN, Andersen N, et al. Presence and development of diabetic retinopathy in 16999 patients with type 1 diabetes in the Danish Registry of Diabetic Retinopathy. Acta Ophthalmol. 2024;102(7):805‐812. + + + Tran EM, Gregori NZ, Rachitskaya A, Nandan A, Pershing S, Goldberg JL. Systemic predictors of diabetic retinopathy and diabetic macular edema in an adult veteran population. Clin Ophthalmol. 2025;19:101‐110. + + + Markle J, Shaia JK, Araich H, Sharma N, Talcott KE, Singh RP. Longitudinal trends and disparities in diabetic retinopathy within an aggregate health care network. JAMA Ophthalmol. 2024;142(7):599‐606. + + + Agapitou C, Sergentanis TN, Papageorgiou EG, et al. Investigation of the potential association between atherosclerotic cardiovascular disease risk score and diabetic retinopathy in patients with type 2 diabetes: a cross‐sectional study. Biomedicine. 2025;13(3):633. + + + Irodi A, Zhu Z, Grzybowski A, et al. The evolution of diabetic retinopathy screening. Eye (Lond). 2025;39(6):1040‐1046. + + + Yao L, Cao CY, Yu GX, Shu XP, Fan XN, Zhang YF. Screening and evaluation of diabetic retinopathy via a deep learning network model: a prospective study. World J Diabetes. 2024;15(12):2302‐2310. + + + Bora A, Balasubramanian S, Babenko B, et al. Predicting the risk of developing diabetic retinopathy using deep learning. Lancet Digit Health. 2021;3(1):e10‐e19. + + + Wan X, Zhang R, Wang Y, et al. Predicting diabetic retinopathy based on routine laboratory tests by machine learning algorithms. Eur J Med Res. 2025;30(1):183. + + + Lim WX, Chen Z, Ahmed A. The adoption of deep learning interpretability techniques on diabetic retinopathy analysis: a review. Med Biol Eng Comput. 2022;60(3):633‐642. + + + Saini M, Susan S. Diabetic retinopathy screening using deep learning for multi‐class imbalanced datasets. Comput Biol Med. 2022;149:105989. + + + Scanlon PH, Aldington SJ, Stratton IM. Delay in diabetic retinopathy screening increases the rate of detection of referable diabetic retinopathy. Diabet Med. 2014;31(4):439‐442. + + + Scanlon PH. Screening intervals for diabetic retinopathy and implications for care. Curr Diab Rep. 2017;17(10):96. + + + Niroomand M, Afsar J, Hosseinpanah F, Afrakhteh M, Farzaneh F, Serahati S. Comparison of the International Association of Diabetes in pregnancy study group criteria with the old American Diabetes Association criteria for diagnosis of gestational diabetes mellitus. Int J Endocrinol Metab. 2019;17(4):e88343. + + + Levey AS, Stevens LA, Schmid CH, et al. A new equation to estimate glomerular filtration rate. Ann Intern Med. 2009;150(9):604‐612. + + + Dehghani Firouzabadi F, Poopak A, Samimi S, et al. Glycemic profile variability as an independent predictor of diabetic retinopathy in patients with type 2 diabetes: a prospective cohort study. Front Endocrinol (Lausanne). 2024;15:1383345. + + + Arnqvist HJ, Westerlund MC, Fredrikson M, Ludvigsson J, Nordwall M. Impact of HbA1c followed 32 years from diagnosis of type 1 diabetes on development of severe retinopathy and nephropathy: the VISS study. Diabetes Care. 2022;45(11):2675‐2682. + + + Basiony AI, Mohamed Gad Marey H, Ezzat Abdel Fattah AM, Aly Zaky M. Predictive value of optical coherence tomography angiography in management of diabetic macular edema. BMC Ophthalmol. 2024;24(1):429. + + + Suzuki Y, Kiyosawa M. Relationship between diabetic nephropathy and development of diabetic macular edema in addition to diabetic retinopathy. Biomedicine. 2023;11(5):1502. + + + Song JJ, Han XF, Chen JF, Liu KM. Correlation between glycated hemoglobin A1c, urinary microalbumin, urinary creatinine, β2 microglobulin, retinol binding protein and diabetic retinopathy. World J Diabetes. 2023;14(7):1103‐1111. + + + Ajoy Mohan VK, Nithyanandam S, Idiculla J. Microalbuminuria and low hemoglobin as risk factors for the occurrence and increasing severity of diabetic retinopathy. Indian J Ophthalmol. 2011;59(3):207‐210. + + + +
+ + + 42216394 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + The heart's fibrous web: A bibliometric analysis of cardiac fibrosis in Asia and Oceania. + + e49017 + e49017 + + 10.1097/MD.0000000000049017 + + Cardiac fibrosis is a pathophysiologic condition in heart diseases. It refers to an excess deposition of extracellular matrix, which will cause hardening and stiffness in heart tissues, leading to heart failure. By considering the high prevalence of cardiac fibrosis globally, a bibliometric analysis is conducted to elucidate the research trend involving the unique perspectives in both the Asia and Oceania regions. + Data were retrieved from the Scopus database without restrictions on publication year. Documents related to cardiac fibrosis affiliated with countries in Asia and Oceania were identified using the United Nations geoscheme classifications. The dataset was curated using biblioMagika and OpenRefine. Then, bibliometric mapping was conducted using VOSviewer to analyze co-authorship and keyword co-occurrence networks. + A total of 983 publications were identified from 1985 to 2025, with a marked increase in research output from 2010 onwards. China emerged as the leading contributor in terms of productivity and total citations, while Australia showed the highest citation impact per publication. High-impact institutions and authors were identified, and core themes included molecular mechanisms such as transforming growth factor beta signaling, extracellular matrix remodeling, and noncoding RNAs. + This study is the first to systematically examine cardiac fibrosis research output across Asia and Oceania using bibliometric methods. It contributes novel insights into the regional dynamics, intellectual structure, and emerging priorities within the field. By identifying key actors, collaboration networks, and knowledge gaps, this research provides valuable guidance for scholars, funding agencies, and policymakers to advance cardiac fibrosis research in regional and global contexts. However, reliance on citation-based metrics may introduce temporal bias, as older publications tend to accumulate more citations over time. Future studies should employ multi-database strategies, altmetric indicators, and machine learning approaches to address these limitations and capture a broader spectrum of research impact. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Ahmad Damahuri + Arifah + A + 0000-0002-8488-6966 + + Laboratory Animal Care Unit, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia. + + + Institute of Medical Molecular Biotechnology, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia. + + + + Mohamad + Maslinawati + M + + Accounting Research Institute, University Teknologi MARA (UiTM), Shah Alam, Selangor, Malaysia. + + + + Abdul Rahman + Thuhairah Hasrah + TH + + Faculty of Medicine, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia. + + + Cardiovascular Advancement Research Excellence Institute (CARE-i), Universiti Teknologi MARA, Malaysia. + + + + Rmt Balasubramaniam + Vimala + V + + Nutrition, Metabolism & Cardiovascular Research Centre, Institute for Medical Research, Ministry of Health Malaysia, Setia Alam, Selangor, Malaysia. + + + + Nasrudin + Nurdiyana + N + + Faculty of Medicine, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia. + + + + Azme + Nasibah + N + 0000-0003-0044-2477 + + Faculty of Medicine, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia. + + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + IM + + + Bibliometrics + + + Humans + + + Oceania + epidemiology + + + Asia + epidemiology + + + Fibrosis + + + Heart Diseases + + + Myocardium + pathology + + + + Asia + Oceania + OpenRefine + VOSviewer + cardiac fibrosis + heart fibrosis + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2024 + 8 + 29 + + + 2026 + 5 + 4 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216394 + 10.1097/MD.0000000000049017 + 00005792-202605290-00080 + + + + Hinderer S, Schenke-Layland K. Cardiac fibrosis – a short review of causes and therapeutic strategies. Adv Drug Deliv Rev. 2019;146:77–82. + + + Taeuber I. Asia’s increasing population. Ann Am Acad Pol Soc Sci. 1958;318:1–7. + + + Westhuysen A. Country profile: China. Carbon Clim Law Rev. 2011;5:384–9. + + + Kc S, Lutz W. The human core of the shared socioeconomic pathways: Population scenarios by age, sex and level of education for all countries to 2100. Glob Environ Change. 2017;42:181–92. + + + Lippi G, Sanchis-Gomar F. Global epidemiology and future trends of heart failure. AME Med J. 2020;5. + + + Surucu M, Isler Y, Perc M, Kara R. Convolutional neural networks predict the onset of paroxysmal atrial fibrillation: theory and applications. Chaos. 2021;31:113119. + + + Isler Y, Narin A, Ozer M, Perc M. Multi-stage classification of congestive heart failure based on short-term heart rate variability. Chaos Solitons Fractals. 2019;118:145–51. + + + Handra J, James H, Mbilinyi A, et al. The role of machine learning in the detection of cardiac fibrosis in electrocardiograms: scoping review. JMIR Cardio. 2024;8:e60697. + + + Nelson AR, Christiansen SL, Naegle KM, Saucerman JJ. Logic-based mechanistic machine learning on high-content images reveals how drugs differentially regulate cardiac fibroblasts. Proc Natl Acad Sci U S A. 2024;121:e2303513121. + + + Gosak M, Milojević M, Duh M, Skok K, Perc M. Networks behind the morphology and structural design of living systems. Phys Life Rev. 2022;41:1–21. + + + Moral-Muñoz J, Herrera-Viedma E, Santisteban-Espejo A, Cobo M. Software tools for conducting bibliometric analysis in science: an up-to-date review. Prof Inf. 2020;29:e290103. + + + Oliveira O, Silva F, Juliani F, Barbosa L, Nunhes T. Bibliometric method for mapping the state-of-the-art and identifying research gaps and trends in literature: An essential instrument to support the development of scientific projects. In: Scientometrics Recent Advances. 2019. + + + Solheim WG. Eastern Asia and Oceania. Asian Perspect. 1963;8:1–9. + + + United Nations Statistics Division. Standard country or area codes for statistical use (M49). United Nations. Available from: https://unstats.un.org/unsd/methodology/m49/. Accessed August 5, 2025. + + + Ahmi A. biblioMagika. 2024. Available from: https://bibliomagika.com. Accessed August 5, 2025. + + + Van Eck NJ, Waltman L. Visualizing bibliometric networks. In: Meas Scholarly Impact. Springer International Publishing; 2014:285–320. + + + Ahmi A. OpenRefine: an approachable tool for cleaning and harmonizing bibliographical data. 11th International Conference on Applied Science and Technology 2022 (11th ICAST 2022). AIP Conf Proc. 2023;2894:030006. + + + Tamura N, Ogawa Y, Chusho H, et al. Cardiac fibrosis in mice lacking brain natriuretic peptide. Proc Natl Acad Sci U S A. 2000;97:4239–44. + + + Young M, Fullerton M, Dilley R, Funder J. Mineralocorticoids, hypertension, and cardiac fibrosis. J Clin Invest. 1994;93:2578–83. + + + Lee TM, Chang NC, Lin SZ. Dapagliflozin, a selective SGLT2 Inhibitor, attenuated cardiac fibrosis by regulating the macrophage polarization via STAT3 signaling in infarcted rat hearts. Free Radic Biol Med. 2017;104:298–310. + + + Pan Z, Sun X, Shan H, et al. MicroRNA-101 inhibited postinfarct cardiac fibrosis and improved left ventricular compliance via the FBJ osteosarcoma oncogene/transforming growth factor-β1 pathway. Circulation. 2012;126:840–50. + + + Ma ZG, Yuan YP, Wu HM, Zhang X, Tang QZ. Cardiac fibrosis: new insights into the pathogenesis. Int J Biol Sci. 2018;14:1645–57. + + + Zhang Y, Huang XR, Wei LH, Chung AC, Yu C-M, Lan H-Y. RETRACTED: miR-29b as a therapeutic agent for angiotensin II-induced cardiac fibrosis by targeting TGF-β/Smad3 signaling. Mol Ther. 2014;22:974–85. + + + Rickard AJ, Morgan J, Tesch G, Funder JW, Fuller PJ, Young MJ. Deletion of mineralocorticoid receptors from macrophages protects against deoxycorticosterone/salt-induced cardiac fibrosis and increased blood pressure. Hypertension. 2009;54:537–43. + + + Wang J, Huang W, Xu R, et al. MicroRNA-24 regulates cardiac fibrosis after myocardial infarction. J Cell Mol Med. 2012;16:2150–60. + + + Ma F, Li Y, Jia L, et al. Macrophage-stimulated cardiac fibroblast production of IL-6 is essential for TGF β/Smad activation and cardiac fibrosis induced by angiotensin II. PLoS One. 2012;7:e35144. + + + Young MJ, Head GE, Funder JW. Determinants of cardiac fibrosis in experimental hypermineralocorticoid states. Am J Physiol. 1995;269:E657–62. + + + Xiao H, Ma X, Feng W, et al. Metformin attenuates cardiac fibrosis by inhibiting the TGFbeta1-Smad3 signalling pathway. Cardiovasc Res. 2010;87:504–13. + + + Li Z, Zhu S, Liu Q, et al. Polystyrene microplastics cause cardiac fibrosis by activating Wnt/β-catenin signaling pathway and promoting cardiomyocyte apoptosis in rats. Environ Pollut. 2020;265(Pt A):115025. + + + Yue Y, Meng K, Pu Y, Zhang X. Transforming growth factor beta (TGF-β) mediates cardiac fibrosis and induces diabetic cardiomyopathy. Diabetes Res Clin Pract. 2017;133:124–30. + + + Tzanidis A, Hannan RD, Thomas WG, et al. Direct actions of urotensin II on the heart: implications for cardiac fibrosis and hypertrophy. Circ Res. 2003;93:246–53. + + + Qu X, Du Y, Shu Y, et al. MIAT is a pro-fibrotic long non-coding RNA governing cardiac fibrosis in post-infarct myocardium. Sci Rep. 2017;7:42657. + + + Matsumoto T, Wada A, Tsutamoto T, Ohnishi M, Isono T, Kinoshita M. Chymase inhibition prevents cardiac fibrosis and improves diastolic dysfunction in the progression of heart failure. Circulation. 2003;107:2555–8. + + + Yuan J, Chen H, Ge D, et al. Mir-21 promotes cardiac fibrosis after myocardial infarction via targeting Smad7. Cell Physiol Biochem. 2017;42:2207–19. + + + Tomita H, Egashira K, Ohara Y, et al. Early induction of transforming growth factor-beta via angiotensin II type 1 receptors contributes to cardiac fibrosis induced by long-term blockade of nitric oxide synthesis in rats. Hypertension. 1998;32:273–9. + + + Fujita K, Maeda N, Sonoda M, et al. Adiponectin protects against angiotensin II-induced cardiac fibrosis through activation of PPAR-alpha. Arterioscler Thromb Vasc Biol. 2008;28:863–70. + + + Qin W, Cao L, Massey IY. Role of PI3K/Akt signaling pathway in cardiac fibrosis. Mol Cell Biochem. 2021;476:4045–59. + + + Hua M, Fan J, Dong H, Sherer R. Integrating traditional Chinese medicine into Chinese medical education reform: issues and challenges. Int J Med Educ. 2017;8:126–7. + + + Jin YH, Wang YP, Xie YL, et al. Research on the development methodology for clinical practice guidelines for organic integration of traditional Chinese and Western medicine. Mil Med Res. 2023;10:45. + + + Mao Y, Fu Q, Su F, et al. Trends in worldwide research on cardiac fibrosis over the period 1989-2022: a bibliometric study. Front Cardiovasc Med. 2023;10:1182606. + + + Burke RM, Dirkx RA Jr, Quijada P, et al. Prevention of fibrosis and pathological cardiac remodeling by salinomycin. Circ Res. 2021;128:1663–78. + + + McKinsey TA, Foo R, Anene-Nzelu CG, et al. Emerging epigenetic therapies of cardiac fibrosis and remodelling in heart failure: from basic mechanisms to early clinical development. Cardiovasc Res. 2023;118:3482–98. + + + Perrucci GL, Rurali E, Pompilio G. Cardiac fibrosis in regenerative medicine: destroy to rebuild. J Thorac Dis. 2018;10(Suppl 20):S2376–89. + + + +
+ + + 42216384 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Common biomarkers of Alzheimer disease and postoperative delirium. + + e48921 + e48921 + + 10.1097/MD.0000000000048921 + + Alzheimer disease (AD) and Postoperative delirium (POD) may share a common mechanism, but their shared genes and potential novel therapeutic targets remains unknown. We selected datasets GSE48350, GSE4226, and GSE16759 containing AD and control samples from the GEO database for AD model development, and use the GSE63061 dataset for AD model validation. The GSE163943 dataset containing PODs and controls was used to identify common genes. Differentially expressed genes (DEGs) associated with POD and AD respectively, as well as common DEGs between 2 diseases were analyzed. Shared DEGs were assessed using gene ontology and KEGG enrichment and PPI interaction networks. Machine learning algorithms, nomogram and decision tree analyses were used to interpret top 5 genes and visualize the models. 259 DEGs in POD with 148 being up-regulated and 111 down-regulated, and 199 DEGs in AD with 25 up-regulated and 174 down-regulated were found, of which 23 were common to POD and AD. Gene ontology analysis indicated that DEGs were primarily concentrated in 9 distinct biological processes, while KEGG results revealed 3 major metabolic pathways. Five hub genes emerged as potential diagnostic biomarkers for both diseases, Bruton tyrosine kinase (BTK), NCF2, CRH, FCGR3A, and SERPINA3. The LASSO model determined that the 23 common genes could serve as biomarkers for both POD and AD patients, and the Random Forest model is the the most suitable model. POD or AD decision trees showed BTK and NCF2 were sufficient to distinguish between POD or AD patients and healthy controls. BTK and NCF2 were identified common biomarkers of POD and AD. Further investigations are required to verify correlations between gene expression levels and pathological characteristics. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Fang + Yiqi + Y + + Department of Anesthesiology, Chun'an First People's Hospital, Zhejiang Provincial People's Hospital Chun'an Branch, Hangzhou Medical College Affiliated Chun'an Hospital, Hangzhou City, Zhejiang Province, China. + + + + Zhang + Xiao + X + + Department of Anesthesiology, Chun'an First People's Hospital, Zhejiang Provincial People's Hospital Chun'an Branch, Hangzhou Medical College Affiliated Chun'an Hospital, Hangzhou City, Zhejiang Province, China. + + + + Zhan + Gaofeng + G + 0009-0004-6379-9873 + + Department of Anesthesiology, Chun'an Second People's Hospital, Zhejiang Provincial People's Hospital Chun'an Branch, Hangzhou Medical College Affiliated Chun'an Hospital, Hangzhou City, Zhejiang Province, China. + + + + eng + + + 2024CAYY004 + Key Projects of the Medical and Health Science and Technology Program of Chun'an County + + + + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 0 + Biomarkers + + + IM + + + Alzheimer Disease + genetics + diagnosis + metabolism + + + Humans + + + Biomarkers + metabolism + + + Delirium + genetics + diagnosis + + + Postoperative Complications + genetics + diagnosis + + + Gene Expression Profiling + + + Machine Learning + + + Gene Ontology + + + Protein Interaction Maps + genetics + + + Databases, Genetic + + + + Alzheimer disease + biomarker + decision tree + machine learning + postoperative delirium + + The authors have no conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2025 + 12 + 2 + + + 2026 + 4 + 30 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216384 + 10.1097/MD.0000000000048921 + 00005792-202605290-00070 + + + + Thakur S, Dhapola R, Sarma P, Medhi B, Reddy DH. Neuroinflammation in alzheimer’s disease: current progress in molecular signaling and therapeutics. Inflammation. 2023;46:1–17. + + + Andrade-Guerrero J, Santiago-Balmaseda A, Jeronimo-Aguilar P, et al. Alzheimer’s disease: an updated overview of its genetics. Int J Mol Sci. 2023;24:3754. + + + Ren QW, Katherine Teng TH, Tse YK, et al. Incidence, clinical correlates, and prognostic impact of dementia in heart failure: a population-based cohort study. JACC Asia. 2023;3:108–19. + + + Sun Y, Ji M, Leng M, Li X, Zhang X, Wang Z. Comparative efficacy of 11 non-pharmacological interventions on depression, anxiety, quality of life, and caregiver burden for informal caregivers of people with dementia: a systematic review and network meta-analysis. Int J Nurs Stud. 2022;129:104204. + + + Shi M, Chu F, Zhu F, Zhu J. Impact of anti-amyloid-β monoclonal antibodies on the pathology and clinical profile of alzheimer’s disease: a focus on aducanumab and lecanemab. Front Aging Neurosci. 2022;14:870517. + + + Martin FE, Hilton JA, Martin FC, Nath R, Partridge JSL, Dhesi JK. The functional trajectories of older women having surgery for gynaeoncology cancer: a single site prospective observational study. J Geriatr Oncol. 2024;15:101678. + + + Deiner SG, Marcantonio ER, Trivedi S, et al. Comparison of the frailty index and frailty phenotype and their associations with postoperative delirium incidence and severity. J Am Geriatr Soc. 2024;72:1781–92. + + + Choi S, Jung I, Yoo B, Lee S, Kim MC. Risk factors for postoperative delirium in elderly patients after spinal fusion surgery. Anesth Pain Med (Seoul). 2020;15:275–82. + + + Reekes TH, Devinney MJ, Berger M. Amyloid beta and postoperative delirium: partners in crime or strangers in the dark? Br J Anaesth. 2023;131:205–8. + + + Wu X, Chi F, Wang B, et al. Relationship between preoperative neutrophil-to-lymphocyte ratio and postoperative delirium: the PNDABLE and the PNDRFAP cohort studies. Brain Behav. 2023;13:e3281. + + + Liang F, Baldyga K, Quan Q, et al. Preoperative plasma Tau-PT217 and Tau-PT181 are associated with postoperative delirium. Ann Surg. 2023;277:e1232–8. + + + Hshieh TT, Fong TG, Schmitt EM, et al.; BASIL Study Group. Does alzheimer’s disease and related dementias modify delirium severity and hospital outcomes? J Am Geriatr Soc. 2020;68:1722–30. + + + Gomez EB, Ebata K, Randeria HS, et al. Preclinical characterization of pirtobrutinib, a highly selective, noncovalent (reversible) BTK inhibitor. Blood. 2023;142:62–72. + + + Rozkiewicz D, Hermanowicz JM, Kwiatkowska I, Krupa A, Pawlak D. Bruton’s tyrosine kinase inhibitors (BTKIs): review of preclinical studies and evaluation of clinical trials. Molecules. 2023;28:2400. + + + Burger JA. Bruton tyrosine kinase inhibitors: present and future. Cancer J. 2019;25:386–93. + + + Mansour HM. The interference between SARS-COV-2 and Alzheimer’s disease: potential immunological and neurobiological crosstalk from a kinase perspective reveals a delayed pandemic. Ageing Res Rev. 2024;94:102195. + + + Li M, Xin S, Gu R, et al. Novel diagnostic biomarkers related to oxidative stress and macrophage ferroptosis in atherosclerosis. Oxid Med Cell Longev. 2022;2022:8917947. + + + Li HM, Huang Q, Tang F, Zhang TP. Altered NCF2, NOX2 mRNA expression levels in peripheral blood mononuclear cells of pulmonary tuberculosis patients. Int J Gen Med. 2021;14:9203–9. + + + Wang B, Fu C, Wei Y, et al. Ferroptosis-related biomarkers for Alzheimer’s disease: identification by bioinformatic analysis in hippocampus. Front Cell Neurosci. 2022;16:1023947. + + + Greve HJ, Mumaw CL, Messenger EJ, et al. Diesel exhaust impairs TREM2 to dysregulate neuroinflammation. J Neuroinflammation. 2020;17:351. + + + +
+ + + 42216376 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Identification of senescence-related biomarker for aortic dissection based on bioinformatics and machine learning algorithms. + + e48873 + e48873 + + 10.1097/MD.0000000000048873 + + Aortic dissection (AD) is a vascular surgical disease that seriously threatens human health. Due to a high misdiagnosis rate and unclear pathogenesis, it brings greater challenges to AD patients and vascular surgeons. This study aimed to explore sensitive diagnostic markers and potential therapeutic targets of AD from the perspective of cellular senescence, which has been our long-term concern. We downloaded the expression matrix of AD and control samples from the Gene Expression Omnibus database and obtained the senescence-related gene set. Differentially expressed genes (DEGs) in AD and control groups were analyzed by the "limma" package. Gene Ontology, Disease Ontology, and Kyoto Encyclopedia of Genes and Genomes enrichment analyses were carried out to demonstrate the enrichment function of DEGs. Two sensitive screening diagnostic marker algorithms, the least absolute shrinkage and selection operator and support vector machine-recursive feature elimination, were used to identify target genes in combination with senescence-related genes. Receiver operating characteristic curves for targeted genes were plotted to assess diagnostic efficacy. Gene set enrichment analysis was performed to preliminarily explore the pathways enriched in the 2 groups. CIBERSORT was used to look for differentially infiltrating immune cells, and Spearman analysis was carried out to explore the association between targeted genes and infiltrating immune cells. A total of 111 DEGs were identified, which were closely related to regulation of leukocyte migration, cellular transition metal ion homeostasis, transition metal ion homeostasis, and detoxification of copper ion from Gene Ontology and Kyoto Encyclopedia of Genes and Genomes analysis. Disease Ontology analysis found that these DEGs were mainly involved in acute myocardial infarction, vasculitis, and coronary artery disease. Hexokinase-3 (HK3) was identified as an overlapping gene of least absolute shrinkage and selection operator, support vector machine-recursive feature elimination, and senescence. HK3 showed good diagnostic efficacy (area under the receiver operating characteristic curve = 0.924 in the integrated cohort and 0.914 in the validation cohort). Correlation analysis results showed that HK3 was positively correlated with monocytes, neutrophils, and natural killer cells resting, while B cells naive, mast cells resting, and macrophages M1 were negatively correlated. HK3 was a potential biomarker for AD diagnosis and a target for precision therapy, and HK3 is also closely related to immune infiltration. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Zhong + Jiabao + J + + Department of Cardiac Surgery, The First Hospital of China Medical University, Shenyang, Liaoning Province, China. + + + + Luo + Hongli + H + 0009-0006-7054-665 + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 0 + Biomarkers + + + IM + + + Humans + + + Aortic Dissection + genetics + diagnosis + + + Machine Learning + + + Computational Biology + methods + + + Biomarkers + metabolism + + + Cellular Senescence + genetics + + + Gene Expression Profiling + + + Algorithms + + + ROC Curve + + + Gene Ontology + + + + aortic dissection + diagnosis and treatment + infiltrating immune cells + machine learning + senescence + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2025 + 6 + 26 + + + 2026 + 4 + 29 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216376 + 10.1097/MD.0000000000048873 + 00005792-202605290-00062 + + + + Lombardi JV, Hughes GC, Appoo JJ, et al. Society for Vascular Surgery (SVS) and Society of Thoracic Surgeons (STS) reporting standards for type B aortic dissections. J Vasc Surg. 2020;71:723–47. + + + Rombouts KB, van Merrienboer TAR, Ket JCF, Bogunovic N, van der Velden J, Yeung KK. The role of vascular smooth muscle cells in the development of aortic aneurysms and dissections. Eur J Clin Invest. 2022;52:e13697. + + + Kamman AV, Yang B, Kim KM, Williams DM, Michael Deeb G, Patel HJ. Visceral malperfusion in aortic dissection: the Michigan experience. Semin Thorac Cardiovasc Surg. 2017;29:173–8. + + + Evangelista A, Isselbacher EM, Bossone E, et al. Insights from the International Registry of Acute Aortic Dissection: a 20-year experience of collaborative clinical research. Circulation. 2018;137:1846–60. + + + Nienaber CA, Clough RE, Sakalihasan N, et al. Aortic dissection. Nat Rev Dis Primers. 2016;2:16053. + + + Olsson C, Thelin S, Ståhle E, Ekbom A, Granath F. Thoracic aortic aneurysm and dissection: increasing prevalence and improved outcomes reported in a nationwide population-based study of more than 14,000 cases from 1987 to 2002. Circulation. 2006;114:2611–8. + + + Nienaber CA, Clough RE. Management of acute aortic dissection. Lancet. 2015;385:800–11. + + + Salmasi MY, Al-Saadi N, Hartley P, et al. The risk of misdiagnosis in acute thoracic aortic dissection: a review of current guidelines. Heart. 2020;106:885–91. + + + Joshi A, Rienks M, Theofilatos K, Mayr M. Systems biology in cardiovascular disease: a multiomics approach. Nat Rev Cardiol. 2021;18:313–30. + + + Xu J, Yang Y. Integrated gene expression profiling analysis reveals potential molecular mechanisms and candidate biomarkers for early risk stratification and prediction of STEMI and post-STEMI heart failure patients. Front Cardiovasc Med. 2021;8:736497. + + + Xie H, Zha E, Zhang Y. Identification of featured metabolism-related genes in patients with acute myocardial infarction. Dis Markers. 2020;2020:8880004. + + + Yang Y, Yi X, Cai Y, Zhang Y, Xu Z. Immune-associated gene signatures and subtypes to predict the progression of atherosclerotic plaques based on machine learning. Front Pharmacol. 2022;13:865624. + + + Xia L, Sun C, Zhu H, et al. Melatonin protects against thoracic aortic aneurysm and dissection through SIRT1-dependent regulation of oxidative stress and vascular smooth muscle cell loss. J Pineal Res. 2020;69:e12661. + + + Ma D, Zheng B, Liu H-L, et al. Klf5 down-regulation induces vascular senescence through eIF5a depletion and mitochondrial fission. PLoS Biol. 2020;18:e3000808. + + + Owens WA, Walaszczyk A, Spyridopoulos I, Dookun E, Richardson GD. Senescence and senolytics in cardiovascular disease: promise and potential pitfalls. Mech Ageing Dev. 2021;198:111540. + + + Rufini A, Tucci P, Celardo I, Melino G. Senescence and aging: the critical roles of p53. Oncogene. 2013;32:5129–43. + + + Salama R, Sadaie M, Hoare M, Narita M. Cellular senescence and its effector programs. Genes Dev. 2014;28:99–114. + + + Ménégaut L, Jalil A, Pilot T, et al. Regulation of glycolytic genes in human macrophages by oxysterols: a potential role for liver X receptors. Br J Pharmacol. 2021;178:3124–39. + + + Aging Atlas Consortium. Aging Atlas: a multi-omics database for aging biology. Nucleic Acids Res. 2021;49:D825–30. + + + Friedman J, Hastie T, Tibshirani R. Regularization paths for generalized linear models via coordinate descent. J Stat Softw. 2010;33:1–22. + + + Huang M-L, Hung Y-H, Lee WM, Li RK, Jiang B-R. SVM-RFE based feature selection and Taguchi parameters optimization for multiclass SVM classifier. ScientificWorldJournal. 2014;2014:795624. + + + Subramanian A, Tamayo P, Mootha VK, et al. Gene set enrichment analysis: a knowledge-based approach for interpreting genome-wide expression profiles. Proc Natl Acad Sci U S A. 2005;102:15545–50. + + + Newman AM, Liu CL, Green MR, et al. Robust enumeration of cell subsets from tissue expression profiles. Nat Methods. 2015;12:453–7. + + + Wang W, Liu Q, Wang Y, et al. Verification of hub genes in the expression profile of aortic dissection. PLoS One. 2019;14:e0224922. + + + Cheng M, Yang Y, Xin H, et al. Non-coding RNAs in aortic dissection: from biomarkers to therapeutic targets. J Cell Mol Med. 2020;24:11622–37. + + + Wilson JE. Isozymes of mammalian hexokinase: structure, subcellular localization and metabolic function. J Exp Biol. 2003;206:2049–57. + + + Qin Y, Sun M, You L, et al. ESR1, HK3 and BRSK1 gene variants are associated with both age at natural menopause and premature ovarian failure. Orphanet J Rare Dis. 2012;7:5. + + + Geng Z, Liu J, Hu J, et al. Crucial transcripts predict response to initial immunoglobulin treatment in acute Kawasaki disease. Sci Rep. 2020;10:17860. + + + Liu C, Zhou Y, Zhao D, et al. Identification and validation of differentially expressed chromatin regulators for diagnosis of aortic dissection using integrated bioinformatics analysis and machine-learning algorithms. Front Genet. 2022;13:950613. + + + Ye J, Fu Y, Ke Y, et al. Lactylation associated biomarkers and immune infiltration in aortic dissection. Sci Rep. 2025;15:21536. + + + Kany S, Friedman SF, Al-Alusi M, et al. Electrocardiogram-based artificial intelligence to identify coronary artery disease. JACC Adv. 2025;4:102041. + + + Al-Zaiti SS, Martin-Gill C, Zègre-Hemsey JK, et al. Machine learning for ECG diagnosis and risk stratification of occlusion myocardial infarction. Nat Med. 2023;29:1804–13. + + + Attia ZI, Noseworthy PA, Lopez-Jimenez F, et al. An artificial intelligence-enabled ECG algorithm for the identification of patients with atrial fibrillation during sinus rhythm: a retrospective analysis of outcome prediction. Lancet. 2019;394:861–7. + + + Hayiroğlu MI, Altay S. The role of artificial intelligence in coronary artery disease and atrial fibrillation. Balkan Med J. 2023;40:151–2. + + + Yilmaz A, Hayiroğlu MI, Salturk S, et al. Machine learning approach on high risk treadmill exercise test to predict obstructive coronary artery disease by using P, QRS, and T waves’ features. Curr Probl Cardiol. 2023;48:101482. + + + Cicek V, Babaoglu M, Saylik F, et al. A new risk prediction model for the assessment of myocardial injury in elderly patients undergoing non-elective surgery. J Cardiovasc Dev Dis. 2024;12:6. + + + Liu T, Krentz A, Lu L, Curcin V. Machine learning based prediction models for cardiovascular disease risk using electronic health records data: systematic review and meta-analysis. Eur Heart J Digit Health. 2025;6:7–22. + + + Liu Y, Zou L, Tang H, et al. Single-cell sequencing of immune cells in human aortic dissection tissue provides insights into immune cell heterogeneity. Front Cardiovasc Med. 2022;9:791875. + + + Chen F, Han J, Tang B. Patterns of immune infiltration and the key immune-related genes in acute type A aortic dissection in bioinformatics analyses. Int J Gen Med. 2021;14:2857–69. + + + Tuo Z, Zheng X, Zong Y, et al. HK3 is correlated with immune infiltrates and predicts response to immunotherapy in non-small cell lung cancer. Clin Transl Med. 2020;10:319–30. + + + Xu W, Liu W-R, Xu Y, et al. Hexokinase 3 dysfunction promotes tumorigenesis and immune escape by upregulating monocyte/macrophage infiltration into the clear cell renal cell carcinoma microenvironment. Int J Biol Sci. 2021;17:2205–22. + + + +
+ + + 42216361 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Association between the development of sepsis and the BAR index in patients with acute pancreatitis: A retrospective investigation based on MIMIC-IV database. + + e49043 + e49043 + + 10.1097/MD.0000000000049043 + + Sepsis, as a severe complication of acute pancreatitis (AP), needs to be identified and treated as early as possible. The blood urea nitrogen-to-albumin ratio (BAR) index has shown good predictive ability in many studies. However, its effectiveness in predicting AP complicated by sepsis has not been further verified. Therefore, this study mainly discusses the correlation between BAR and the risk of sepsis, aiming to provide a simple and early warning tool for sepsis risk stratification in AP patients. This retrospective cohort study analyzed the data of 779 AP patients from the Medical Information Mart for Intensive Care database 3.1. Critically ill participants admitted between 2008 and 2022 at the Beth Israel Deaconess Medical Center in Boston were included. According to the Sepsis 3.0 diagnostic criteria, the AP patients included in the study were further divided into a sepsis group and a non-sepsis group. The Boruta algorithm, combined with the extreme gradient boosting model, was used to screen variables beneficial to the outcome. Univariate and multivariate logistic regression were used to evaluate the relationship between the BAR index and the occurrence of sepsis after admission. The results showed that the BAR index was significantly associated with the occurrence of sepsis, and the risk of sepsis increased with the increase in the BAR index (all P values for trend < .001). Subgroup analysis showed that the BAR index was positively correlated with the probability of sepsis in patients of different ages, genders, and those with hypertension and diabetes (all P for interaction > .05). The area under the curve of the combined use of the BAR index and clinical indicators was 0.704 (0.667-0.741), which was significantly higher than that of using the BAR index alone, 0.611 (0.572-0.651), with a statistically significant difference (P < .001). In conclusion, the study results suggest that the BAR index may help identify which AP patients are at a higher risk of developing sepsis. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Wang + Jinhai + J + + The First Hospital of Jilin University, Changchun, China. + + + + Zheng + Fuhong + F + + + Zhu + Lei + L + + + Liu + Haibo + H + 0009-0001-3334-8092 + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 0 + Serum Albumin + + + IM + + + Humans + + + Sepsis + etiology + diagnosis + epidemiology + blood + + + Pancreatitis + complications + blood + + + Retrospective Studies + + + Female + + + Male + + + Blood Urea Nitrogen + + + Middle Aged + + + Serum Albumin + analysis + + + Aged + + + Databases, Factual + + + Risk Factors + + + Acute Disease + + + Logistic Models + + + Adult + + + + MIMIC-IV database + Sepsis + acute pancreatitis + blood urea nitrogen-to-albumin ratio + machine learning + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2025 + 11 + 2 + + + 2026 + 5 + 10 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216361 + 10.1097/MD.0000000000049043 + 00005792-202605290-00047 + + + + Iannuzzi JP, King JA, Leong JH, et al. Global incidence of acute pancreatitis is increasing over time: a systematic review and meta-analysis. Gastroenterology. 2022;162:122–34. + + + Beij A, Verdonk RC, van Santvoort HC, de-Madaria E, Voermans RP. Acute pancreatitis: an update of evidence-based management and recent trends in treatment strategies. United European Gastroenterol J. 2025;13:97–106. + + + Pavlidis ET, Pavlidis TE. Management of infected acute necrotizing pancreatitis. World J Clin Cases. 2023;11:482–6. + + + Bellomo R, Kellum JA, Ronco C, et al. Acute kidney injury in sepsis. Intensive Care Med. 2017;43:816–28. + + + Kamar C, Ali A, Altun D, et al. Evaluation of risk factors and development of acute kidney injury in aneurysmal subarachnoid hemorrhage, head injury, and severe sepsis/septic shock patients during ICU treatment. Ulus Travma Acil Cerrahi Derg. 2017;23:39–45. + + + Haines RW, Zolfaghari P, Wan Y, Pearse RM, Puthucheary Z, Prowle JR. Elevated urea-to-creatinine ratio provides a biochemical signature of muscle catabolism and persistent critical illness after major trauma. Intensive Care Med. 2019;45:1718–31. + + + Ugajin M, Yamaki K, Iwamura N, Yagi T, Asano T. Blood urea nitrogen to serum albumin ratio independently predicts mortality and severity of community-acquired pneumonia. Int J Gen Med. 2012;5:583–9. + + + Bae SJ, Kim K, Yun SJ, Lee SH. Predictive performance of blood urea nitrogen to serum albumin ratio in elderly patients with gastrointestinal bleeding. Am J Emerg Med. 2021;41:152–7. + + + Becker KL, Snider R, Nylen ES. Procalcitonin assay in systemic inflammation, infection, and sepsis: clinical utility and limitations. Crit Care Med. 2008;36:941–52. + + + Johnson AEW, Bulgarelli L, Shen L, et al. MIMIC-IV, a freely accessible electronic health record dataset. Sci Data. 2023;10:1. + + + Han T, Cheng T, Liao Y, et al. Analysis of the value of the blood urea nitrogen to albumin ratio as a predictor of mortality in patients with sepsis. J Inflamm Res. 2022;15:1227–35. + + + Peng X, Huang Y, Fu H, Zhang Z, He A, Luo R. Prognostic value of blood urea nitrogen to serum albumin ratio in intensive care unit patients with lung cancer. Int J Gen Med. 2021;14:7349–59. + + + Degenhardt F, Seifert S, Szymczak S. Evaluation of variable selection methods for random forests and omics data sets. Brief Bioinform. 2019;20:492–503. + + + Lundberg SM, Erion G, Chen H, et al. From local explanations to global understanding with explainable AI for trees. Nat Mach Intell. 2020;2:56–67. + + + Zhang P, Zhang X, Zheng K, He L, Lv M. Association of the stress hyperglycemia ratio (SHR) with 90-day and 180-day all-cause mortality in patients undergoing coronary artery bypass grafting (CABG) for acute myocardial infarction (AMI): a retrospective cohort study using the MIMIC-IV database. Medicine (Baltimore). 2025;104:e45022. + + + Li X, Li T, Wang J, et al. Higher blood urea nitrogen level is independently linked with the presence and severity of neonatal sepsis. Ann Med. 2021;53:2192–8. + + + Li X, Zheng R, Zhang T, Zeng Z, Li H, Liu J. Association between blood urea nitrogen and 30-day mortality in patients with sepsis: a retrospective analysis. Ann Palliat Med. 2021;10:11653–63. + + + Bou Chebl R, Geha M, Assaf M, et al. The prognostic value of the lactate/albumin ratio for predicting mortality in septic patients presenting to the emergency department: a prospective study. Ann Med. 2021;53:2268–77. + + + Peters E, Antonelli M, Wittebole X, et al. A worldwide multicentre evaluation of the influence of deterioration or improvement of acute kidney injury on clinical outcome in critically ill patients with and without sepsis at ICU admission: results from the Intensive Care Over Nations audit. Crit Care. 2018;22:188. + + + Ergin B, Kapucu A, Demirci-Tansel C, Ince C. The renal microcirculation in sepsis. Nephrol Dial Transplant. 2015;30:169–77. + + + Omiya K, Sato H, Sato T, et al. Albumin and fibrinogen kinetics in sepsis: a prospective observational study. Crit Care. 2021;25:436. + + + Caraceni P, Domenicali M, Tovoli A, et al. Clinical indications for the albumin use: still a controversial issue. Eur J Intern Med. 2013;24:721–8. + + + Fang CJ, Saadat GH, Butler BA, Bokhari F. The geriatric nutritional risk index is an independent predictor of adverse outcomes for total joint arthroplasty patients. J Arthroplasty. 2022;37:S836–41. + + + Gao Q, Cheng Y, Li Z, et al. Association between nutritional risk screening score and prognosis of patients with sepsis. Infect Drug Resist. 2021;14:3817–25. + + + Yoon SH, Choi B, Eun S, Bae GE, Koo CM, Kim MK. Using the lactate-to-albumin ratio to predict mortality in patients with sepsis or septic shock: a systematic review and meta-analysis. Eur Rev Med Pharmacol Sci. 2022;26:1743–52. + + + Chen X, Zhou X, Zhao H, et al. Clinical value of the lactate/albumin ratio and lactate/albumin ratio × age score in the assessment of prognosis in patients with sepsis. Front Med (Lausanne). 2021;8:732410. + + + Akahane J, Ushiki A, Kosaka M, et al. Blood urea nitrogen-to-serum albumin ratio and A-DROP are useful in assessing the severity of Pneumocystis pneumonia in patients without human immunodeficiency virus infection. J Infect Chemother. 2021;27:707–14. + + + Lin Z, Zhao Y, Xiao L, Qi C, Chen Q, Li Y. Blood urea nitrogen to serum albumin ratio as a new prognostic indicator in critical patients with chronic heart failure. ESC Heart Fail. 2022;9:1360–9. + + + Ryu S, Oh SK, Cho SU, et al. Utility of the blood urea nitrogen to serum albumin ratio as a prognostic factor of mortality in aspiration pneumonia patients. Am J Emerg Med. 2021;43:175–9. + + + Fang J, Xu B. Blood urea nitrogen to serum albumin ratio independently predicts mortality in critically ill patients with acute pulmonary embolism. Clin Appl Thromb Hemost. 2021;27:10760296211010241. + + + Zou XL, Feng D-Y, Wu W-B, Yang H-L, Zhang T-T. Blood urea nitrogen to serum albumin ratio independently predicts 30-day mortality and severity in patients with Escherichia coli bacteraemia. Med Clin (Barc). 2021;157:219–25. + + + Lee DW, Cho CM. Predicting severity of acute pancreatitis. Medicina (Kaunas). 2022;58:787. + + + Li G, Li S, Cao L, et al. Nomogram development and validation for predicting minimally invasive step-up approach failure in infected necrotizing pancreatitis patients: a retrospective cohort study. Int J Surg. 2023;109:1677–87. + + + Tao S, Yu L, Li J, et al. Prognostic value of triglyceride-glucose index in patients with chronic coronary syndrome undergoing percutaneous coronary intervention. Cardiovasc Diabetol. 2023;22:322. + + + +
+ + + 42216358 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Bioinformatics analysis identifies biomarkers associated with T-cell depletion in systemic lupus erythematosus. + + e49016 + e49016 + + 10.1097/MD.0000000000049016 + + Systemic lupus erythematosus (SLE) is a chronic autoimmune disease that affects multiple organ systems. In SLE, T-cell subsets are closely associated with autoimmunity and organ inflammation. Detecting T-cell exhaustion (TEX)-related biomarkers is crucial for early SLE diagnosis and offers new insights into disease mechanisms. Transcriptomic data for SLE were collected from public databases, and TEX-related genes were obtained from the literature. Biomarkers were identified using analyses such as differential expression analysis and machine learning algorithms. The potential mechanisms of action of these biomarkers were further investigated, including nomogram construction, gene set enrichment analysis, immune microenvironment analysis, molecular regulatory network analysis, molecular docking, and reverse transcription-quantitative polymerase chain reaction validation. IFIT3, IFIH1, CXCL10, and STAT2 were identified as biomarkers. The nomogram demonstrated good predictive performance. These biomarkers were mainly involved in biological processes such as ribosome biogenesis and negative regulation of viral genome replication. Four significantly different immune cell types were identified, including monocytes and resting memory CD4 T cells. The biomarkers were found to be regulated by several transcription factors and microRNAs. Furthermore, the 4 biomarkers exhibited high binding affinity for several drugs; in particular, the binding energy of STAT2 with bisphenol A was -7.0 kcal/mol. Finally, reverse transcription-quantitative polymerase chain reaction results showed that all 4 biomarkers were significantly upregulated in SLE patients. In summary, this study identified TEX-related biomarkers in SLE, which may have important clinical implications for the diagnosis and treatment of SLE. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Yang + Lanqing + L + 0009-0004-0217-3084 + + Department of Rheumatology and Immunology, The First Affiliated Hospital of Jinzhou Medical University, Jinzhou, Liaoning Province, China. + + + + Gao + Wei + W + + Department of Rheumatology and Immunology, The First Affiliated Hospital of Jinzhou Medical University, Jinzhou, Liaoning Province, China. + + + + Yang + Lulu + L + + Department of Pediatrics, Shiqian County Maternal and Child Health Hospital, Tongren, Guizhou Province, China. + + + + Liu + Xingyu + X + + Department of Pediatric Orthopedics, Shanghai Children's Medical Center Guizhou Hospital, Shanghai Jiao Tong University School of Medicine, Guiyang, Guizhou Province, China. + + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 0 + Biomarkers + + + 0 + STAT2 Transcription Factor + + + 0 + IFIT3 protein, human + + + 0 + Chemokine CXCL10 + + + 0 + CXCL10 protein, human + + + 0 + MicroRNAs + + + 0 + Intracellular Signaling Peptides and Proteins + + + IM + + + Humans + + + Lupus Erythematosus, Systemic + immunology + genetics + + + Biomarkers + metabolism + + + Computational Biology + methods + + + STAT2 Transcription Factor + genetics + metabolism + + + Chemokine CXCL10 + genetics + metabolism + + + T-Cell Exhaustion + + + Gene Expression Profiling + + + MicroRNAs + genetics + metabolism + + + T-Lymphocytes + + + Transcriptome + + + Intracellular Signaling Peptides and Proteins + + + + bioinformatics + enrichment analysis + immune microenvironment + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2025 + 3 + 10 + + + 2026 + 5 + 7 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216358 + 10.1097/MD.0000000000049016 + 00005792-202605290-00044 + + + + Hoi A, Igel T, Mok CC, Arnaud L. Systemic lupus erythematosus. Lancet. 2024;403:2326–38. + + + Siegel CH, Sammaritano LR. Systemic lupus erythematosus: a review. JAMA. 2024;331:1480–91. + + + Nandakumar KS, Nündel K. Editorial: systemic lupus erythematosus – predisposition factors, pathogenesis, diagnosis, treatment and disease models. Front Immunol. 2022;13:1118180. + + + Iwata S, Tanaka Y. Association of viral infection with the development and pathogenesis of systemic lupus erythematosus. Front Med (Lausanne). 2022;9:849120. + + + Lazar S, Kahlenberg JM. Systemic lupus erythematosus: new diagnostic and therapeutic approaches. Annu Rev Med. 2023;74:339–52. + + + Baessler A, Vignali DAA. T cell exhaustion. Annu Rev Immunol. 2024;42:179–206. + + + Lee GH, Lee JY, Jang J, et al. Anti-thymocyte globulin-mediated immunosenescent alterations of T cells in kidney transplant patients. Clin Transl Immunology. 2022;11:e1431. + + + Spiteri AG, Suprunenko T, Cutts E, et al. CD8(+) T cells mediate lethal lung pathology in the absence of PD-L1 and type I interferon signalling following LCMV infection. Viruses. 2024;16:390. + + + Zhang Y, Yi H, Su S, Ma Z, Wu H. Identification of RNA uridylation subtypes, and the prognostic and therapeutic value of RNA uridylation in systemic lupus erythematosus. Int Immunopharmacol. 2024;143:113277. + + + Okuma K, Oku T, Sasaki C, et al. Similarity and difference between systemic lupus erythematosus and NZB/W F1 mice by multi-omics analysis. Mod Rheumatol. 2024;34:359–68. + + + Chen H, He J, Wang L, et al. Identification of monocyte-associated biomarkers in systemic lupus erythematosus and their pan-cancer analysis. Lupus. 2023;32:1369–80. + + + Hung T, Pratt GA, Sundararaman B, et al. The Ro60 autoantigen binds endogenous retroelements and regulates inflammatory gene expression. Science. 2015;350:455–9. + + + Zhang Z, Chen H, Yan D, Chen L, Sun J, Zhou M. Deep learning identifies a T-cell exhaustion-dependent transcriptional signature for predicting clinical outcomes and response to immune checkpoint blockade. Oncogenesis. 2023;12:37. + + + Ritchie ME, Phipson B, Wu D, et al. limma powers differential expression analyses for RNA-sequencing and microarray studies. Nucleic Acids Res. 2015;43:e47. + + + Wu X, Sui Z, Zhang H, Wang Y, Yu Z. Integrated analysis of lncRNA-mediated ceRNA network in lung adenocarcinoma. Front Oncol. 2020;10:554759. + + + Gu Z, Eils R, Schlesner M. Complex heatmaps reveal patterns and correlations in multidimensional genomic data. Bioinformatics. 2016;32:2847–9. + + + Zheng Y, Gao W, Zhang Q, et al. Ferroptosis and autophagy-related genes in the pathogenesis of ischemic cardiomyopathy. Front Cardiovasc Med. 2022;9:906753. + + + Yu G, Wang LG, Han Y, He QY. clusterProfiler: an R package for comparing biological themes among gene clusters. OMICS. 2012;16:284–7. + + + Qing J, Li C, Hu X, et al. Differentiation of T helper 17 cells may mediate the abnormal humoral immunity in IgA nephropathy and inflammatory bowel disease based on shared genetic effects. Front Immunol. 2022;13:916934. + + + Walter W, Sánchez-Cabo F, Ricote M. GOplot: an R package for visually combining expression data with functional analysis. Bioinformatics. 2015;31:2912–4. + + + Shannon P, Markiel A, Ozier O, et al. Cytoscape: a software environment for integrated models of biomolecular interaction networks. Genome Res. 2003;13:2498–504. + + + Chin CH, Chen SH, Wu HH, Ho CW, Ko MT, Lin CY. cytoHubba: identifying hub objects and sub-networks from complex interactome. BMC Syst Biol. 2014;8(Suppl 4):S11. + + + Friedman J, Hastie T, Tibshirani R. Regularization paths for generalized linear models via coordinate descent. J Stat Softw. 2010;33:1–22. + + + Shi H, Yuan X, Liu G, Fan W. Identifying and validating GSTM5 as an immunogenic gene in diabetic foot ulcer using bioinformatics and machine learning. J Inflamm Res. 2023;16:6241–56. + + + Robin X, Turck N, Hainard A, et al. pROC: an open-source package for R and S+ to analyze and compare ROC curves. BMC Bioinf. 2011;12:77. + + + Liu Y, Yuan Y, Chen T, Xiao H, Zhang X, Zhang F. Identification of aneuploidy-related gene signature to predict survival in head and neck squamous cell carcinomas. Aging (Albany NY). 2023;15:13100–17. + + + Wang L, Wang D, Yang L, et al. Cuproptosis related genes associated with Jab1 shapes tumor microenvironment and pharmacological profile in nasopharyngeal carcinoma. Front Immunol. 2022;13:989286. + + + Newman AM, Liu CL, Green MR, et al. Robust enumeration of cell subsets from tissue expression profiles. Nat Methods. 2015;12:453–7. + + + Zeng D, Ye Z, Shen R, et al. IOBR: multi-omics immuno-oncology biological research to decode tumor microenvironment and signatures. Front Immunol. 2021;12:687975. + + + Wickham H. Data analysis. In: Wickham H, ed. ggplot2: Elegant Graphics for Data Analysis. 2nd ed. Springer; 2016:189–201. + + + Eberhardt J, Santos-Martins D, Tillack AF, Forli S. AutoDock Vina 1.2.0: new docking methods, expanded force field, and python bindings. J Chem Inf Model. 2021;61:3891–8. + + + Seeliger D, de Groot BL. Ligand docking and binding site analysis with PyMOL and Autodock/Vina. J Comput Aided Mol Des. 2010;24:417–22. + + + Mohsen Hammad DB, Abdulazeez Alhamad O, Mahdy Obiad Khzal A, Mahdi Muslim Alameedy F. Molecular characterisation of blood microbiome in patients with ankylosing spondylitis and healthy controls. Med J Islam Repub Iran. 2023;37:84. + + + Ale L, Gentleman R, Sonmez TF, Sarkar D, Endres C. nhanesA: achieving transparency and reproducibility in NHANES research. Database (Oxford). 2024;2024:baae028. + + + Chang J, Wu H, Wu J, et al. Constructing a novel mitochondrial-related gene signature for evaluating the tumor immune microenvironment and predicting survival in stomach adenocarcinoma. J Transl Med. 2023;21:191. + + + Sasvari Z, Nagy PD. Making of viral replication organelles by remodeling interior membranes. Viruses. 2010;2:2436–42. + + + Goropevšek A, Holcar M, Pahor A, Avčin T. STAT signaling as a marker of SLE disease severity and implications for clinical therapy. Autoimmun Rev. 2019;18:144–54. + + + Chikhalya A, Dittmann M, Zheng Y, Sohn SY, Rice CM, Hearing P. Human IFIT3 protein induces interferon signaling and inhibits adenovirus immediate early gene expression. mBio. 2021;12:e0282921. + + + Wang J, Dai M, Cui Y, et al. Association of abnormal elevations in IFIT3 with overactive cyclic GMP-AMP synthase/stimulator of interferon genes signaling in human systemic lupus erythematosus monocytes. Arthritis Rheumatol. 2018;70:2036–45. + + + Li H, Zhou J, Zhou L, et al. Identification of the shared gene signatures and molecular pathways in systemic lupus erythematosus and diffuse large B-cell lymphoma. J Gene Med. 2023;25:e3558. + + + Zedan MM, Attia ZR, Abd El Azeem RA, Mutawi TM, El Shehawy AS, Bakr A. Genetic polymorphisms in genes involved in the type I interferon system (IFIH1/MDA-5, TNFAIP3/A20, and STAT4): association with SLE risk in Egyptian children and adolescents. J Inflamm Res. 2021;14:3349–58. + + + Cen H, Leng RX, Wang W, et al. Association study of IFIH1 rs1990760 polymorphism with systemic lupus erythematosus in a Chinese population. Inflammation. 2013;36:444–8. + + + Robinson T, Kariuki SN, Franek BS, et al. Autoimmune disease risk variant of IFIH1 is associated with increased sensitivity to IFN-α and serologic autoimmunity in lupus patients. J Immunol. 2011;187:1298–303. + + + Cen H, Wang W, Leng RX, et al. Association of IFIH1 rs1990760 polymorphism with susceptibility to autoimmune diseases: a meta-analysis. Autoimmunity. 2013;46:455–62. + + + Munroe ME, Pezant N, Brown MA, et al. Association of IFIH1 and pro-inflammatory mediators: potential new clues in SLE-associated pathogenesis. PLoS One. 2017;12:e0171193. + + + Zhang J, Liu X, Meng Y, et al. Autoimmune disease associated IFIH1 single nucleotide polymorphism related with IL-18 serum levels in Chinese systemic lupus erythematosus patients. Sci Rep. 2018;8:9442. + + + Enevold C, Kjær L, Nielsen CH, et al. Genetic polymorphisms of dsRNA ligating pattern recognition receptors TLR3, MDA5, and RIG-I. Association with systemic lupus erythematosus and clinical phenotypes. Rheumatol Int. 2014;34:1401–8. + + + Molineros JE, Maiti AK, Sun C, et al. Admixture mapping in lupus identifies multiple functional variants within IFIH1 associated with apoptosis, inflammation, and autoantibody production. PLoS Genet. 2013;9:e1003222. + + + Foster SL, Woolsey C, Borisevich V, et al. A recombinant VSV-vectored vaccine rapidly protects nonhuman primates against lethal Nipah virus disease. Proc Natl Acad Sci U S A. 2022;119:e2200065119. + + + Marie MA, Abu Khalil RE, Habib HM. Urinary CXCL10: a marker of nephritis in lupus patients. Reumatismo. 2014;65:292–7. + + + Abediazar S, Jafari-Nakhjavani M, Ghorbanihaghjo A, Shekarchi M, Zununi Vahed S. Serum levels of CXCL10 and vitamin D in patients with lupus nephritis. Iran J Kidney Dis. 2019;13:389–97. + + + Enghard P, Humrich JY, Rudolph B, et al. CXCR3+CD4+ T cells are enriched in inflamed kidneys and urine and provide a new biomarker for acute nephritis flares in systemic lupus erythematosus patients. Arthritis Rheum. 2009;60:199–206. + + + Antonelli A, Ferrari SM, Giuggioli D, Ferrannini E, Ferri C, Fallahi P. Chemokine (C-X-C motif) ligand (CXCL)10 in autoimmune diseases. Autoimmun Rev. 2014;13:272–80. + + + Ghafouri-Fard S, Shahir M, Taheri M, Salimi A. A review on the role of chemokines in the pathogenesis of systemic lupus erythematosus. Cytokine. 2021;146:155640. + + + Reynolds JA, McCarthy EM, Haque S, et al. Cytokine profiling in active and quiescent SLE reveals distinct patient subpopulations. Arthritis Res Ther. 2018;20:173. + + + Wang S, Cui Y. Clinical significance of serum CXCL9, CXCL10, and CXCL11 in patients with lupus nephritis. Immun Inflamm Dis. 2024;12:e1368. + + + Amudzi AA, Piedra-Mora C, Ma DJ, et al. Using gene expression analysis to understand complex autoimmune skin disease patients: a series of four canine cutaneous lupus erythematosus cases. Front Vet Sci. 2022;9:778934. + + + Gao ZY, Su LC, Wu QC, et al. Bioinformatics analyses of gene expression profile identify key genes and functional pathways involved in cutaneous lupus erythematosus. Clin Rheumatol. 2022;41:437–52. + + + Li LH, Liesenborghs L, Wang L, et al. Biodistribution and environmental safety of a live-attenuated YF17D-vectored SARS-CoV-2 vaccine candidate. Mol Ther Methods Clin Dev. 2022;25:215–24. + + + Fortelny N, Farlik M, Fife V, et al. JAK-STAT signaling maintains homeostasis in T cells and macrophages. Nat Immunol. 2024;25:847–59. + + + Yang L, Zhang YJ. Antagonizing cytokine-mediated JAK-STAT signaling by porcine reproductive and respiratory syndrome virus. Vet Microbiol. 2017;209:57–65. + + + Wu L, Han X, Jiang X, et al. Downregulation of renal Hsa-miR-127-3p contributes to the overactivation of type I interferon signaling pathway in the kidney of lupus nephritis. Front Immunol. 2021;12:747616. + + + Sarkar MK, Hile GA, Tsoi LC, et al. Photosensitivity and type I IFN responses in cutaneous lupus are driven by epidermal-derived interferon kappa. Ann Rheum Dis. 2018;77:1653–64. + + + Thacker SG, Berthier CC, Mattinzoli D, Rastaldi MP, Kretzler M, Kaplan MJ. The detrimental effects of IFN-α on vasculogenesis in lupus are mediated by repression of IL-1 pathways: potential role in atherogenesis and renal vascular rarefaction. J Immunol. 2010;185:4457–69. + + + Lari A, Pourbadie HG, Sharifi-Zarchi A, et al. Dysregulation of ribosome-related genes in ankylosing spondylitis: a systems biology approach and experimental method. BMC Musculoskelet Disord. 2021;22:789. + + + Chen Y, Sun J, Liu J, et al. Aldehyde dehydrogenase 2-mediated aldehyde metabolism promotes tumor immune evasion by regulating the NOD/VISTA axis. J ImmunoTher Cancer. 2023;11:e007487. + + + Shim JM, Kim J, Tenson T, Min JY, Kainov DE. Influenza virus infection, interferon response, viral counter-response, and apoptosis. Viruses. 2017;9:223. + + + Akel M, Barroca C, Blanca A, et al. Chronic dermatographic urticaria secondary to systemic lupus erythematosus. Cureus. 2024;16:e63109. + + + Ma WT, Gao F, Gu K, Chen DK. The role of monocytes and macrophages in autoimmune diseases: a comprehensive review. Front Immunol. 2019;10:1140. + + + Hartmann BM, Albrecht RA, Zaslavsky E, et al. Pandemic H1N1 influenza A viruses suppress immunogenic RIPK3-driven dendritic cell death. Nat Commun. 2017;8:1931. + + + Wang S, Li H, Zhang F, et al. Expression of TIGIT in splenic and circulatory T cells from mice acutely infected with Toxoplasma gondii. Parasite. 2021;28:13. + + + Marie P, Bazire M, Ladet J, et al. Gene-to-gene coordinated regulation of transcription and alternative splicing by 3D chromatin remodeling upon NF-κB activation. Nucleic Acids Res. 2024;52:1527–43. + + + Zhang X, Yang Z, Pan T, et al. SARS-CoV-2 Nsp8 suppresses MDA5 antiviral immune responses by impairing TRIM4-mediated K63-linked polyubiquitination. PLoS Pathog. 2023;19:e1011792. + + + Dam S, Kracht M, Pleschka S, Schmitz ML. The influenza A virus genotype determines the antiviral function of NF-κB. J Virol. 2016;90:7980–90. + + + Krzyzowska M, Kowalczyk A, Skulska K, Thörn K, Eriksson K. Fas/FasL contributes to HSV-1 brain infection and neuroinflammation. Front Immunol. 2021;12:714821. + + + Turnham DJ, Smith H, Clarkson RWE. Suppression of Bcl3 disrupts viability of breast cancer cells through both p53-dependent and p53-independent mechanisms via loss of NF-κB signalling. Biomedicines. 2024;12:143. + + + Zhao W, Li Q, Wen S, Li Y, Bai Y, Tian Z. Novel biomarkers of inflammation-associated immunity in cervical cancer. Front Oncol. 2024;14:1351736. + + + Li Y, Qi X, Liu B, Huang H. The STAT5-GATA2 pathway is critical in basophil and mast cell differentiation and maintenance. J Immunol. 2015;194:4328–38. + + + Miao J, Guo H, Song G, Zhao Z, Hou L, Lu Q. Quantifying portable genetic effects and improving cross-ancestry genetic prediction with GWAS summary statistics. Nat Commun. 2023;14:832. + + + Li H, Ma Q, Ren J, et al. Immune responses of different COVID-19 vaccination strategies by analyzing single-cell RNA sequencing data from multiple tissues using machine learning methods. Front Genet. 2023;14:1157305. + + + Canar J, Darling K, Dadey R, Gamero AM. The duality of STAT2 mediated type I interferon signaling in the tumor microenvironment and chemoresistance. Cytokine. 2023;161:156081. + + + Liu Z, Liu F, Xie J, et al. Recognition of differently expressed genes and DNA methylation markers in patients with Lupus nephritis. J Transl Int Med. 2024;12:367–83. + + + Wang K, Shi X, Lin H, Xu T, Xu S. Selenium deficiency exacerbates ROS/ER stress mediated pyroptosis and ferroptosis induced by bisphenol A in chickens thymus. J Environ Sci (China). 2025;148:13–26. + + + Chen L, Tao D, Qi M, Wang T, Jiang Z, Xu S. Cineole alleviates the BPA-inhibited NETs formation by regulating the p38 pathway-mediated programmed cell death. Ecotoxicol Environ Saf. 2022;237:113558. + + + Xu J, Huang G, Guo TL. Developmental bisphenol A exposure modulates immune-related diseases. Toxics. 2016;4:23. + + + Krause JL, Engelmann B, Nunes da Rocha U, et al. MAIT cell activation is reduced by direct and microbiota-mediated exposure to bisphenols. Environ Int. 2022;158:106985. + + + Segovia-Mendoza M, Nava-Castro KE, Palacios-Arreola MI, Garay-Canales C, Morales-Montor J. How microplastic components influence the immune system and impact on children health: focus on cancer. Birth Defects Res. 2020;112:1341–61. + + + Paeschke N, von Haefen C, Endesfelder S, Sifringer M, Spies CD. Dexmedetomidine prevents lipopolysaccharide-induced microRNA expression in the adult rat brain. Int J Mol Sci. 2017;18:1830. + + + Lee PY, Liu CC, Wang SC, et al. Mycotoxin zearalenone attenuates innate immune responses and suppresses NLRP3 inflammasome activation in LPS-activated macrophages. Toxins (Basel). 2021;13:593. + + + Chen L, Zhang L, Hua H, Liu L, Mao Y, Wang R. Interactions between toll-like receptors signaling pathway and gut microbiota in host homeostasis. Immun Inflamm Dis. 2024;12:e1356. + + + +
+ + + 42216354 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Environmental toxicant glyphosate induces cardiotoxicity: New insights from network toxicology, integrated machine learning, molecular modeling and multidimensional bioinformatics analysis. + + e48974 + e48974 + + 10.1097/MD.0000000000048974 + + Glyphosate is one of the world's most widely used herbicide, yet the causal relationship between glyphosate and cardiotoxicity remains inadequate. To elucidate the cardiotoxic mechanisms of glyphosate, an integrative strategy was developed in this work, which combines computational toxicometry, predictive machine learning, and atomic-level molecular modeling. Initially, glyphosate's systematic toxicological profile was evaluated using ProTox-3.0 and ADMETlab 3.0. Candidate genes associated with glyphosate were obtained from 3 separate databases. Target genes associated with cardiotoxicity were integrated from 2 databases. Intersection analysis identified 113 core candidate genes associated with glyphosate and cardiotoxicity. Functional enrichment-related analyses were employed and revealed that the target genes were significantly involved in key biological processes such as ERBB3 signaling pathways. In order to refine the candidate genes to a more precise gene pool, net topology analyses were employed and identified 16 key feature genes. We subsequently integrated machine learning algorithms and validated the results using the GEO database, ultimately identifying 4 hub genes, AKT1, IL1B, BRCA1, and PTGS2. Finally, we applied molecular docking analysis and revealed strong binding affinities, which suggested direct interaction mechanisms in glyphosate-induced cardiotoxicity. In summary, our study establishes a comprehensive mechanistic framework for glyphosate-induced cardiotoxicity. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Sun + Mingze + M + 0009-0008-8144-6261 + + State Key Laboratory for Systems Medicine for Cancer, Division of Cardiology, Shanghai Cancer Institute, Renji Hospital, School of Medicine, Shanghai Jiao Tong University, Shanghai, China. + + + + Wang + Yankai + Y + + State Key Laboratory for Systems Medicine for Cancer, Division of Cardiology, Shanghai Cancer Institute, Renji Hospital, School of Medicine, Shanghai Jiao Tong University, Shanghai, China. + + + + Tong + Renyang + R + + Department of Respiratory and Critical Care Medicine, Beijing Institute of Respiratory Medicine and Beijing Chao-Yang Hospital, Capital Medical University, Beijing, China. + + + + Yan + Ruiming + R + + Department of Trauma Center, School of Medicine, Tongji Hospital, Tongji University, Shanghai, China. + + + + Pu + Jun + J + 0000-0003-2240-5108 + + State Key Laboratory for Systems Medicine for Cancer, Division of Cardiology, Shanghai Cancer Institute, Renji Hospital, School of Medicine, Shanghai Jiao Tong University, Shanghai, China. + + + + eng + + + 2023ZD0503204 + Noncommunicable Chronic Diseases-National Science and Technology Major Project + + + + GZC20241101 + Postdoctoral Fellowship Program of CPSF + + + + Ggyfz202515 + Reform and Development Program of Beijing Institute of Respiratory Medicine + + + + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 4632WW1X5A + Glyphosate + + + TE7660XO1C + Glycine + + + 0 + Herbicides + + + IM + + + Glyphosate + + + Glycine + analogs & derivatives + toxicity + + + Machine Learning + + + Cardiotoxicity + genetics + etiology + + + Computational Biology + methods + + + Herbicides + toxicity + + + Humans + + + Models, Molecular + + + + cardiotoxicity + glyphosate + hub genes + machine learning + molecular docking + network toxicology + + The authors have no conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 3 + 17 + + + 2026 + 5 + 6 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216354 + 10.1097/MD.0000000000048974 + 00005792-202605290-00040 + + + + Diaz-Martin RD, Carvajal-Peraza A, Yanez-Rivera B, Betancourt-Lozano M. Short exposure to glyphosate induces locomotor, craniofacial, and bone disorders in zebrafish (Danio rerio) embryos. Environ Toxicol Pharmacol. 2021;87:103700. + + + Lu J, Zhang C, Wang W, et al. Exposure to environmental concentrations of glyphosate induces cardiotoxicity through cellular senescence and reduced cell proliferation capacity. Ecotoxicol Environ Saf. 2023;261:115112. + + + Benbrook CM. Trends in glyphosate herbicide use in the United States and globally. Environ Sci Eur. 2016;28:3. + + + Tarazona JV, Court-Marques D, Tiramani M, et al. Glyphosate toxicity and carcinogenicity: a review of the scientific basis of the European Union assessment and its differences with IARC. Arch Toxicol. 2017;91:2723–43. + + + Alcala-Perez MA, Hernandez-Fuentes GA, Garza-Veloz I, et al. Glyphosate as an emerging environmental pollutant and its effects on breast cancer cell proliferation: a systematic literature review of preclinical evidence. Toxics. 2025;14:26. + + + Mazuryk J, Klepacka K, Kutner W, Sharma PS. Glyphosate: hepatotoxicity, nephrotoxicity, hemotoxicity, carcinogenicity, and clinical cases of endocrine, reproductive, cardiovascular, and pulmonary system intoxication. ACS Pharmacol Transl Sci. 2024;7:1205–36. + + + Peillex C, Pelletier M. The impact and toxicity of glyphosate and glyphosate-based herbicides on health and immunity. J Immunotoxicol. 2020;17:163–74. + + + Christidi E, Brunham LR. Regulated cell death pathways in doxorubicin-induced cardiotoxicity. Cell Death Dis. 2021;12:339. + + + Sharma P, Verma R, Sharma V, Singh TG. Targeting cardiotoxicity induced by environmental toxins: the role of natural products. Cardiovasc Toxicol. 2025;25:1236–48. + + + Sun SZ, Cao H, Yao N, et al. β-Arrestin 2 mediates arginine vasopressin-induced IL-6 induction via the ERK1/2-NF-κB signal pathway in murine hearts. Acta Pharmacol Sin. 2020;41:198–207. + + + Yang Y, Wei S, Zhang B, Li W. Recent progress in environmental toxins-induced cardiotoxicity and protective potential of natural products. Front Pharmacol. 2021;12:699193. + + + Shrivastav A, Swetanshu, Singh P. The impact of environmental toxins on cardiovascular diseases. Curr Probl Cardiol. 2024;49(1 Pt C):102120. + + + Gaur H, Bhargava A. Glyphosate induces toxicity and modulates calcium and NO signaling in zebrafish embryos. Biochem Biophys Res Commun. 2019;513:1070–5. + + + Pompermaier A, Alves C, Chagas FB, et al. Effects of glyphosate based herbicide exposure in early developmental stages of Physalaemus gracilis. Sci Rep. 2024;14:25652. + + + Cheng M, Li M, Zhang Y, et al. Exploring the mechanism of PPCPs on human metabolic diseases based on network toxicology and molecular docking. Environ Int. 2025;196:109324. + + + He N, Zhang J, Liu M, Yin L. Elucidating the mechanism of plasticizers inducing breast cancer through network toxicology and molecular docking analysis. Ecotoxicol Environ Saf. 2024;284:116866. + + + Li Y, Zhou T, Liu Z, et al. Air pollution and prostate cancer: unraveling the connection through network toxicology and machine learning. Ecotoxicol Environ Saf. 2025;292:117966. + + + Chen D, Hou X. Aspartame carcinogenic potential revealed through network toxicology and molecular docking insights. Sci Rep. 2024;14:11492. + + + Jin J, Xue Y, Tian L. Network toxicological analysis of sodium dehydroacetate in food safety. Food Chem Toxicol. 2025;201:115469. + + + Wu Y, Liang Y, Liang J, Zengin G, Zhang Q, Li M-Y. Potassium sorbate triggers kidney injury via dysregulated intercellular communication: a study combining network toxicology, machine learning, molecular docking, and single-cell RNA sequencing. iMetaMed. 2025;1:e70017. + + + Zhang X, Zhu X, Gu W, et al. Elucidating the mechanism of phthalates induced osteoporosis through network toxicology and molecular docking. Ecotoxicol Environ Saf. 2025;291:117820. + + + Gao K, Hua K, Wang S, Chen X, Zhu T. Exploring the reproductive exposure risks of phthalates and organophosphates in atmospheric particulate matter based on quantitative structure-activity relationships and network toxicology models. J Hazard Mater. 2025;488:137395. + + + Li B, Zhao X, Ding Y, Zhang Y. Network toxicology and molecular docking to investigate the mechanism of bisphenol A toxicity in human diabetic cardiomyopathy. Ecotoxicol Environ Saf. 2025;299:118301. + + + Li NR, Zeng YX, Gu YF, et al. Aspartame increases the risk of liver cancer through CASP1 protein: a comprehensive network analysis insights. Ecotoxicol Environ Saf. 2025;294:118089. + + + Xie L, Huang B, Zhao X, Zhu N. Exploring the mechanisms underlying effects of bisphenol a on cardiovascular disease by network toxicology and molecular docking. Heliyon. 2024;10:e31473. + + + Li J, Zhang H, Li X, et al. Combining epidemiology, network toxicology and in vivo experimental validation to uncover takeout-mediated DEHP/MEHP toxicity in inflammatory bowel disease. Free Radic Biol Med. 2025;239:1–13. + + + Huang XZ, Huang H, Chen H, Wei YK. Identification of endocrine-disrupting chemicals targeting key OP-associated genes via bioinformatics and machine learning. Ecotoxicol Environ Saf. 2024;286:117155. + + + Wang Z, Zhou Z, Zhao Z, et al. A network toxicology and machine learning approach to investigate the mechanism of kidney injury from melamine and cyanuric acid co-exposure. Ecotoxicol Environ Saf. 2025;293:118029. + + + Huang S, Cai N, Pacheco PP, Narrandes S, Wang Y, Xu W. Applications of support vector machine (SVM) learning in cancer genomics. Cancer Genom Proteom. 2018;15:41–51. + + + Xie S, Ogden RT. Functional support vector machine. Biostatistics. 2024;25:1178–94. + + + Printemps R, Guilbot S, Didier H, Nalin R, Le Grand B. The cardiotoxic effect of Roundup® is not induced by glyphosate: a non-specific blockade of human CaV1.2 channels. Cardiovasc Toxicol. 2022;22:676–88. + + + Roy NM, Ochs J, Zambrzycka E, Anderson A. Glyphosate induces cardiovascular toxicity in Danio rerio. Environ Toxicol Pharmacol. 2016;46:292–300. + + + Martins-Gomes C, Silva TL, Andreani T, Silva AM. Glyphosate vs. glyphosate-based herbicides exposure: a review on their toxicity. J Xenobiot. 2022;12:21–40. + + + Kim YH, Hong JR, Gil HW, Song HY, Hong SY. Mixtures of glyphosate and surfactant TN20 accelerate cell death via mitochondrial damage-induced apoptosis and necrosis. Toxicol In Vitro. 2013;27:191–7. + + + Yin H, Favreau-Lessard AJ, deKay JT, et al. Protective role of ErbB3 signaling in myeloid cells during adaptation to cardiac pressure overload. J Mol Cell Cardiol. 2021;152:1–16. + + + Li Q, Xia B, Wu J, et al. Indole-3-Carbinol (I3C) protects the heart from ischemia/reperfusion injury by inhibiting oxidative stress, inflammation, and cellular apoptosis in mice. Front Pharmacol. 2022;13:924174. + + + Gustafsson AB, Gottlieb RA. Bcl-2 family members and apoptosis, taken to heart. Am J Physiol Cell Physiol. 2007;292:C45–51. + + + Li X, Li X, Zhang Q, et al. Prostaglandin endoperoxide synthase 2 regulates neuroinflammation to mediate postoperative cognitive dysfunction in mice. Sci Rep. 2025;15:17355. + + + Chen Y, Jian X, Zhu L, et al. PTGS2: a potential immune regulator and therapeutic target for chronic spontaneous urticaria. Life Sci. 2024;344:122582. + + + Pal I, Mandal M. PI3K and Akt as molecular targets for cancer therapy: current clinical outcomes. Acta Pharmacol Sin. 2012;33:1441–58. + + + Sun G, Ding XA, Argaw Y, Guo X, Montell DJ. Akt1 and dCIZ1 promote cell survival from apoptotic caspase activation during regeneration and oncogenic overgrowth. Nat Commun. 2020;11:5726. + + + Seksaria S, Mehan S, Dutta BJ, Gupta GD, Ganti SS, Singh A. Oxymatrine and insulin resistance: focusing on mechanistic intricacies involve in diabetes associated cardiomyopathy via SIRT1/AMPK and TGF-β signaling pathway. J Biochem Mol Toxicol. 2023;37:e23330. + + + Yang Q, Li Y, Sun R, Li J. Identification of a RAD52 inhibitor inducing synthetic lethality in BRCA2-deficient cancer cells. Front Pharmacol. 2021;12:637825. + + + Shukla PC, Singh KK, Quan A, et al. BRCA1 is an essential regulator of heart function and survival following myocardial infarction. Nat Commun. 2011;2:593. + + + Yoshida K, Miki Y. Role of BRCA1 and BRCA2 as regulators of DNA repair, transcription, and cell cycle in response to DNA damage. Cancer Sci. 2004;95:866–71. + + + Martin-Vazquez E, Cobo-Vuilleumier N, Lopez-Noriega L, Lorenzo PI, Gauthier BR. The PTGS2/COX2-PGE2 signaling cascade in inflammation: Pro or anti? A case study with type 1 diabetes mellitus. Int J Biol Sci. 2023;19:4157–65. + + + Kumar BH, Kabekkodu SP, Pai KSR. Structural insights of AKT and its activation mechanism for drug development. Mol Divers. 2025;29:5443–63. + + + Jang ER, Lee JS. DNA damage response mediated through BRCA1. Cancer Res Treat. 2004;36:214–21. + + + +
+ + + 42216348 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Predicting depressive symptoms in older adults with hearing impairment development and validation of NHANES-based machine-learning models: A cross-sectional study. + + e49004 + e49004 + + 10.1097/MD.0000000000049004 + + Depressive symptoms frequently co-occur with hearing impairment in older adults, yet available prediction tools for this high-risk subgroup remain limited in practicality and applicability. We developed and internally validated prediction models for clinically relevant depressive symptoms among older adults with hearing impairment. We analyzed cross-sectional data from 5 National Health and Nutrition Examination Survey cycles (2005-2006, 2009-2010, 2011-2012, 2015-2016, and 2017-2018). Adults aged ≥60 years with hearing impairment were identified using the 2021 World Health Organization criterion (better-ear pure-tone average at 0.5/1/2/4 kHz ≥20 dB). Depressive symptoms were defined as a Patient Health Questionnaire-9 score ≥10. Candidate predictors included sociodemographic factors, comorbidities, lifestyle behaviors, and sensory/functional limitations; missing covariates were handled using multiple imputation. Participants were randomly split into training and validation sets (7:3). Predictors were selected using the Boruta algorithm followed by least absolute shrinkage and selection operator regression, yielding 6 predictors (age, poverty-income ratio, self-rated health, sleep disorder, memory difficulty, and physical functional limitation). Logistic regression and 6 machine-learning algorithms were developed. Model performance was assessed by discrimination (area under the receiver operating characteristic curve [AUC]), calibration (calibration curves and Brier score), and clinical utility (decision-curve analysis). The analytic sample included 2123 participants, of whom 154 (7.25%) had depressive symptoms. In the validation set, AUCs across models ranged from 0.799 to 0.862. Logistic regression achieved the highest discrimination (AUC 0.862, 95% CI 0.800-0.911) with good calibration (Brier score 0.053) and favorable net benefit across clinically relevant thresholds. A nomogram, a dynamic nomogram, and an online calculator were developed to facilitate individualized risk estimation. Sensitivity analyses showed broadly consistent results, except for attenuated discrimination in the severe hearing-loss subgroup. A parsimonious 6-variable model demonstrated strong discrimination, good calibration, and potential clinical utility for risk stratification and targeted screening among older adults with hearing impairment. External validation and prospective evaluation are warranted before clinical implementation. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Shang + Lunyu + L + 0009-0005-3585-5927 + + College of Life Sciences and Medicine, Zhejiang Sci-Tech University, Hangzhou, Zhejiang, China. + + + + Jiang + Shuaiyu + S + + Yueyang Hospital of Integrated Traditional Chinese and Western Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Dai + Qi + Q + + College of Life Sciences and Medicine, Zhejiang Sci-Tech University, Hangzhou, Zhejiang, China. + + + + eng + + Journal Article + Validation Study + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + IM + + + Humans + + + Cross-Sectional Studies + + + Hearing Loss + psychology + epidemiology + complications + + + Female + + + Aged + + + Nutrition Surveys + + + Male + + + Depression + epidemiology + diagnosis + + + Machine Learning + + + Predictive Learning Models + + + Middle Aged + + + Logistic Models + + + Prediction Algorithms + + + United States + epidemiology + + + + NHANES + depressive symptoms + hearing loss + machine learning + older adults + + The authors have no conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 1 + 1 + + + 2026 + 5 + 7 + + + 2026 + 5 + 30 + 1 + 1 + + + ppublish + + 42216348 + 10.1097/MD.0000000000049004 + 00005792-202605290-00034 + + + + Dalton DS, Cruickshanks KJ, Klein BEK, Klein R, Wiley TL, Nondahl DM. The impact of hearing loss on quality of life in older adults. Gerontologist. 2003;43:661–8. + + + Lohi V, Ohtonen P, Sorri M, Mäki-Torkko E, Hannula S. Prevalence and incidence of hearing impairment among adults: a 13-year follow-up study. Int J Audiol. 2021;60:687–94. + + + Bainbridge KE, Wallhagen MI. Hearing loss in an aging American population: extent, impact, and management. Annu Rev Public Health. 2014;35:139–52. + + + Zheng Q, Xu Z, Li N, Wang Y, Zhang T, Jing J. Age-related hearing loss in older adults: etiology and rehabilitation strategies. Front Neurosci. 2024;18:1428564. + + + Britt CJ, Storey E, Woods RL, et al.; ASPREE Investigators. Age-related hearing loss: a cross-sectional study of healthy older Australians. Gerontology. 2024;71:1–12. + + + Lee KY. Pathophysiology of age-related hearing loss (peripheral and central). Korean J Audiol. 2013;17:45–9. + + + Haile LM, Kamenov K, Briant PS, et al. Hearing loss prevalence and years lived with disability, 1990–2019: findings from the Global Burden of Disease Study 2019. Lancet. 2021;397:996–1009. + + + Chang HP, Chou P. Presbycusis among older Chinese people in Taipei, Taiwan: a community-based study. Int J Audiol. 2007;46:738–45. + + + Zhang Y, He X, Liu Y, Tian C, Yang H, Zhang L. The association between hearing loss and depression in the China health and retirement longitudinal study. Sci Rep. 2025;15:20537. + + + Arlinger S. Negative consequences of uncorrected hearing loss—a review. Int J Audiol. 2003;42:17–20. + + + Hu T, Zhao X, Wu M, et al. Prevalence of depression in older adults: a systematic review and meta-analysis. Psychiatry Res. 2022;311:114511. + + + Wei J, Li Y, Gui X. Association of hearing loss and risk of depression: a systematic review and meta-analysis. Front Neurol. 2024;15:1446262. + + + Cosh S, Helmer C, Delcourt C, Robins TG, Tully PJ. Depression in elderly patients with hearing loss: current perspectives. Clin Interv Aging. 2019;14:1471–80. + + + Zhang G, Dong S, Wang L. Construction of a machine learning-based risk prediction model for depression in middle-aged and elderly patients with cardiovascular metabolic diseases in China: a longitudinal study. BMC Public Health. 2025;25:1904. + + + Qin M, Qiao M, Dong Y, Wang H. Development and validation of a depression risk prediction model for middle-aged and elderly adults with sensory impairment: evidence from the China health and retirement longitudinal study. PLoS One. 2025;20:e0332907. + + + Chen J, Lin Y, Hu R, Hu C. Prediction model for depression risk in middle-aged and elderly patients with metabolic syndrome: a nomogram and interpretable machine learning approach based on CHARLS. BMC Psychiatry. 2025;25:987. + + + Jin T, Halili A. Predicting the risk of depression in older adults with disability using machine learning: an analysis based on CHARLS data. Front Artif Intell. 2025;8:1624171. + + + Hong S, Lu B, Wang S, Jiang Y. Comparison of logistic regression and machine learning methods for predicting depression risks among disabled elderly individuals: results from the China Health and Retirement Longitudinal Study. BMC Psychiatry. 2025;25:128. + + + Du J, Tao X, Zhu L, et al. A risk prediction system for depression in middle-aged and older adults grounded in machine learning and visualization technology: a cohort study. Front Public Health. 2025;13:1606316. + + + World Health Organization. World report on hearing. World Health Organization; 2021. + + + Kroenke K, Spitzer RL, Williams JBW. The PHQ-9: validity of a brief depression severity measure. J Gen Intern Med. 2001;16:606–13. + + + Yeung A, Fung F, Yu SC, et al. Validation of the Patient Health Questionnaire-9 for depression screening among Chinese Americans. Compr Psychiatry. 2008;49:211–7. + + + Sun Y, Kong Z, Song Y, Liu J, Wang X. The validity and reliability of the PHQ-9 on screening of depression in neurology: a cross sectional study. BMC Psychiatry. 2022;22:98. + + + Levis B, Benedetti A, Thombs BD; DEPRESsion Screening Data (DEPRESSD) Collaboration. Accuracy of Patient Health Questionnaire-9 (PHQ-9) for screening to detect major depression: individual participant data meta-analysis. BMJ. 2019;365:l1476. + + + 全国防聋治聋技术指导组, 中华医学会耳鼻咽喉头颈外科学分会, 中华耳鼻咽喉头颈外科杂志编辑委员会, 中华医学会老年医学分会. 老年听力损失诊断与干预专家共识 (2019). 中华耳鼻咽喉头颈外科杂志. 2019;54:166–73. + + + Zhao H, Wang X, Shi Y. The effect of hearing impairment and social participation on depressive symptoms in older adults: a cross-lagged analysis. Front Comput Neurosci. 2023;17:1240587. + + + Li CM, Zhang X, Hoffman HJ, Cotch MF, Themann CL, Wilson MR. Hearing impairment associated with depression in US adults, National Health and Nutrition Examination Survey 2005-2010. JAMA Otolaryngol Head Neck Surg. 2014;140:293–302. + + + Scinicariello F, Przybyla J, Carroll Y, Eichwald J, Decker J, Breysse PN. Age and sex differences in hearing loss association with depressive symptoms: analyses of NHANES 2011-2012. Psychol Med. 2019;49:962–8. + + + Harjono Hadiwiardjo Y, Damayanti R. Biopsychosocial factors associated with depression in the elderly: a systematic literature review. F1000Res. 2024;11:1068. + + + Li E, Ai F, Tian Q, Yang H, Tang P, Guo B. Develop and validate machine learning models to predict the risk of depressive symptoms in older adults with cognitive impairment. BMC Psychiatry. 2025;25:219. + + + Aoki M, Okuda H, Ishihara H, et al. Hearing loss is associated with hippocampal atrophy and high cortisol/dehydroepiandrosterone sulphate ratio in older adults. Int J Audiol. 2021;60:293–9. + + + Li IH, Shih JH, Jhao YT, et al. Regulation of noise-induced loss of serotonin transporters with resveratrol in a rat model using 4-[18F]-ADAM/small-animal positron emission tomography. Molecules. 2019;24:1344. + + + Huber M, Reuter L, Weitgasser L, Pletzer B, Rösch S, Illg A. Hearing loss, depression, and cognition in younger and older adult CI candidates. Front Neurol. 2023;14:1272210. + + + Bainbridge KE, Ramachandran V. Hearing aid use among older U.S. adults; the national health and nutrition examination survey, 2005-2006 and 2009-2010. Ear Hear. 2014;35:289–94. + + + Christodoulou E, Ma J, Collins GS, Steyerberg EW, Verbakel JY, Van Calster B. A systematic review shows no performance benefit of machine learning over logistic regression for clinical prediction models. J Clin Epidemiol. 2019;110:12–22. + + + +
+ + + 42216340 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Vasoactive intestinal peptide associated 8-gene signature with prognostic and immune associations in melanoma. + + e48961 + e48961 + + 10.1097/MD.0000000000048961 + + Vasoactive intestinal peptide (VIP) plays a multifaceted role in cancer biology, yet its prognostic and immunological implications in melanoma remain underexplored. This study aimed to construct a VIP-related gene signature for risk stratification and to explore its potential associations with the tumor immune microenvironment and drug sensitivity in melanoma. RNA-sequencing data and clinical information were obtained from TCGA-SKCM (n = 477, training set) and GSE65904 (n = 209, validation set). A VIP-related prognostic signature (VIPsig) was developed using stepwise Cox regression and Gradient Boosting Machine algorithms. Patients were stratified into high- and low-risk groups based on the median risk score. Somatic mutations, immune infiltration, drug sensitivity, and functional enrichment were further analyzed. A nomogram integrating clinical factors was developed and validated. Single-cell RNA-seq data (GSE115978) were reanalyzed to characterize cellular expression patterns. A preliminary pan-cancer analysis indicated potential dysregulation of VIP pathway genes. In melanoma, we identified an 8-gene signature (CD28, CD80, CD86, CTLA4, FAS, IFNG, IL10, and IL12A) associated with survival. In the training set, high-risk patients exhibited significantly worse overall survival (OS) compared to low-risk patients (HR = 2.96, 95% CI: 2.24-3.92, P < .001). This was validated in the GSE65904 cohort (HR = 1.87, 95% CI: 1.26-2.77, P = .002). The VIPsig demonstrated discriminative ability with 1-, 3-, and 5-year AUCs of 0.760 (95% CI: 0.675-0.845, P < .001), 0.749 (95% CI: 0.692-0.807, P < .001), and 0.770 (95% CI: 0.717-0.823, P < .001) in the training set, respectively. Functionally, the signature was significantly associated with immune cell infiltration and immune checkpoint expression. In silico drug sensitivity analysis suggested potential associations with estimated IC50 values for several agents, though these findings require experimental validation. A nomogram integrating VIPsig with clinicopathological factors showed improved net benefit in decision curve analysis. The VIP-based signature demonstrates robust prognostic value for melanoma survival and reflects the tumor immune microenvironment status. Exploratory analyses suggest potential associations with in silico drug sensitivity estimates; however, its utility for treatment response prediction remains unvalidated and warrants further investigation in prospective melanoma cohorts treated with immune checkpoint inhibitors. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Hong + Xiaogang + X + 0009-0001-0028-4088 + + Department of Ophthalmology, People's Hospital of Kaihua, Quzhou, Zhejiang, China. + + + + Zheng + Xiuzhen + X + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 37221-79-7 + Vasoactive Intestinal Peptide + + + 0 + Biomarkers, Tumor + + + IM + + + Humans + + + Vasoactive Intestinal Peptide + genetics + metabolism + + + Melanoma + genetics + immunology + mortality + + + Prognosis + + + Tumor Microenvironment + immunology + genetics + + + Gene Expression Regulation, Neoplastic + + + Nomograms + + + Biomarkers, Tumor + genetics + + + + immune cell infiltration + machine learning + melanoma + nomogram + vasoactive intestinal peptide + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2025 + 8 + 31 + + + 2026 + 5 + 5 + + + 2026 + 5 + 30 + 1 + 0 + + + ppublish + + 42216340 + 10.1097/MD.0000000000048961 + 00005792-202605290-00026 + + + + Karlsson MJ, Costa SF, Tebani A, et al. Inflammation and apolipoproteins are potential biomarkers for stratification of cutaneous melanoma patients for immunotherapy and targeted therapy. Cancer Res. 2021;81:2545–55. + + + Mao R, Yang F, Zhang T, Li J. Landscape and clinical significance of immune checkpoint in cutaneous melanoma. Front Immunol. 2021;12:756282. + + + Bida M, Miya TV, Hull R, Dlamini Z. Tumor-infiltrating lymphocytes in melanoma: from prognostic assessment to therapeutic applications. Front Immunol. 2024;15:1497522. + + + Hodi FS, Wolchok JD, Schadendorf D, et al. TMB and inflammatory gene expression associated with clinical outcomes following immunotherapy in advanced melanoma. Cancer Immunol Res. 2021;9:1202–13. + + + Ascierto PA, Tang H, Dolfi S, et al. Effect of prior and first-line immunotherapy on baseline immune biomarkers and modulation of the tumor microenvironment in response to nivolumab and relatlimab combination therapy in patients with melanoma from RELATIVITY-020. J Immunother Cancer. 2025;13:e009773. + + + Liu D, Wei B, Liang L, et al. The circadian clock component RORA Increases immunosurveillance in melanoma by inhibiting PD-L1 expression. Cancer Res. 2024;84:2265–81. + + + Pavlick AC, Ariyan CE, Buchbinder EI, et al. Society for Immunotherapy of Cancer (SITC) clinical practice guideline on immunotherapy for the treatment of melanoma, version 3.0. J Immuno Ther Cancer. 2023;11:e006947. + + + Vasudevan HN, Delley C, Chen WC, et al. Molecular features of resected melanoma brain metastases, clinical outcomes, and responses to immunotherapy. JAMA Netw Open. 2023;6:e2329186. + + + Aung TN, Warrell J, Martinez-Morilla S, et al. Spatially informed gene signatures for response to immunotherapy in melanoma. Clin Cancer Res. 2024;30:3520–32. + + + Garg M, Couturier DL, Nsengimana J, et al. Tumour gene expression signature in primary melanoma predicts long-term outcomes. Nat Commun. 1137;12:2021. + + + Ayers M, Lunceford J, Nebozhyn M, et al. IFN-γ-related mRNA profile predicts clinical response to PD-1 blockade. J Clin Invest. 2017;127:2930–40. + + + Yang M, Zheng C, Miao Y, et al. BTLA promoter hypomethylation correlates with enhanced immune cell infiltration, favorable prognosis, and immunotherapy response in melanoma. J ImmunoTher Cancer. 2025;13:e009841. + + + Asano S, Ono A, Sakamoto K, et al. Vasoactive intestinal peptide receptor 2 signaling promotes breast cancer cell proliferation by enhancing the ERK pathway. Peptides. 2023;161:170940. + + + Asano S, Yamasaka M, Ozasa K, et al. Vasoactive intestinal peptide-VIPR2 signaling regulates tumor cell migration. Front Oncol. 2022;12:852358. + + + Gkonos PJ, Ashby MH, Andrade AA. Vasoactive intestinal peptide stimulates prostate-specific antigen secretion by LNCaP prostate cancer cells. Regul Pept. 1996;65:153–7. + + + Kittikulsuth W, Nakano D, Kitada K, et al. Vasoactive intestinal peptide blockade suppresses tumor growth by regulating macrophage polarization and function in CT26 tumor-bearing mice. Sci Rep. 2023;13:927. + + + Pozo D, Gonzalez-Rey E, Chorny A, Anderson P, Varela N, Delgado M. Tuning immune tolerance with vasoactive intestinal peptide: a new therapeutic approach for immune disorders. Peptides. 2007;28:1833–46. + + + Chen L, Yuan W, Chen Z, et al. Vasoactive intestinal peptide represses activation of tumor-associated macrophages in gastric cancer via regulation of TNFα, IL-6, IL-12 and iNOS. Int J Oncol. 2015;47:1361–70. + + + Li G, Wu K, Tao K, et al. Vasoactive intestinal peptide induces CD14+HLA-DR‑/low myeloid-derived suppressor cells in gastric cancer. Mol Med Rep. 2015;12:760–8. + + + Li JM, Darlak KA, Southerland L, et al. VIPhyb, an antagonist of vasoactive intestinal peptide receptor, enhances cellular antiviral immunity in murine cytomegalovirus infected mice. PLoS One. 2013;8:e63381. + + + Wang W, Yang H, Passang T, et al. Targeting the VIP-VPAC pathway in melanoma models inhibits tumor growth and liver metastasis. Cancer Lett. 2025;628:217855. + + + Yuan XH, Yao C, Oh JH, et al. Vasoactive intestinal peptide stimulates melanogenesis in B16F10 mouse melanoma cells via CREB/MITF/tyrosinase signaling. Biochem Biophys Res Commun. 2016;477:336–42. + + + Liberzon A, Birger C, Thorvaldsdóttir H, Ghandi M, Mesirov JP, Tamayo P. The Molecular Signatures Database (MSigDB) hallmark gene set collection. Cell Syst. 2015;1:417–25. + + + Liao C, Wang X. TCGAplot: an R package for integrative pan-cancer analysis and visualization of TCGA multi-omics data. BMC Bioinf. 2023;24:483. + + + Liu H, Zhang W, Zhang Y, Li X, Wanggou S. Constructing and visualizing models using mime-based machine-learning framework. J Vis Exp. 2025;22. + + + Liu H, Zhang W, Zhang Y, et al. A flexible machine-learning framework to construct and visualize models for clinical characteristics prediction and feature selection. Comput Struct Biotechnol J. 2024;23:2798–810. + + + Wu X, Li C. Development of a prognostic model for breast cancer patients based on intratumoral tumor-infiltrating lymphocytes using machine learning algorithms. Discov Oncol. 2025;16:762. + + + Zhao Y, Xun D, Chen J, Qi X. A novel machine learning-based immune prognostic signature for improving clinical outcomes and guiding therapy in colorectal cancer: an integrated bioinformatics and experimental study. BMC Cancer. 2025;25:65. + + + DeLong ER, DeLong DM, Clarke-Pearson DL. Comparing the areas under two or more correlated receiver operating characteristic curves: a nonparametric approach. Biometrics. 1988;44:837–45. + + + Mayakonda A, Lin DC, Assenov Y, Plass C, Koeffler HP. Maftools: efficient and comprehensive analysis of somatic variants in cancer. Genome Res. 2018;28:1747–56. + + + Zeng D, Ye Z, Shen R, et al. IOBR: multi-omics immuno-oncology biological research to decode tumor microenvironment and signatures. Front Immunol. 2021;12:687975. + + + Geeleher P, Cox N, Huang RS. pRRophetic: an R package for prediction of clinical chemotherapeutic response from tumor gene expression levels. PLoS One. 2014;9:e107468. + + + Ritchie ME, Phipson B, Wu D, et al. limma powers differential expression analyses for RNA-sequencing and microarray studies. Nucleic Acids Res. 2015;43:e47. + + + Yu G, Wang LG, Han Y, He QY. clusterProfiler: an R package for comparing biological themes among gene clusters. OMICS. 2012;16:284–7. + + + Hao Y, Stuart T, Kowalski MH, et al. Dictionary learning for integrative, multimodal and scalable single-cell analysis. Nat Biotechnol. 2024;42:293–304. + + + Hodi FS. Cytotoxic T-lymphocyte-associated antigen-4. Clin Cancer Res. 2007;13(18 Pt 1):5238–42. + + + Rudy W, Gückel B, Siebels M, Lindauer M, Meuer SC, Moebius U. Differential function of CD80- and CD86-transfected human melanoma cells in the presence of IL-12 and IFN-gamma. Int Immunol. 1997;9:853–60. + + + Aytekin EC, Unal B, Bassorgun CI, Ozkan O. Clinicopathologic evaluation of CD80, CD86, and PD-L1 expressions with immunohistochemical methods in malignant melanoma patients. Turk Patoloji Derg. 2024;40:16–26. + + + Mo X, Zhang H, Preston S, et al. Interferon-γ signaling in melanocytes and melanoma cells regulates expression of CTLA-4. Cancer Res. 2018;78:436–50. + + + Váraljai R, Zimmer L, Al-Matary Y, et al. Interleukin 17 signaling supports clinical benefit of dual CTLA-4 and PD-1 checkpoint inhibition in melanoma. Nat Cancer. 2023;4:1292–308. + + + Zhang Z, Langenbach M, Sagar S, et al. Efficacy of CTLA-4 checkpoint therapy is dependent on IL-21 signaling to mediate cytotoxic reprogramming of PD-1(+)CD8(+) T cells. Nat Immunol. 2025;26:92–104. + + + Tsai AK, Khan AY, Worgo CE, Wang LL, Liang Y, Davila E. A multikinase and DNA-PK inhibitor combination immunomodulates melanomas, suppresses tumor progression, and enhances immunotherapies. Cancer Immunol Res. 2017;5:790–803. + + + Loser K, Scherer A, Krummen MB, et al. An important role of CD80/CD86-CTLA-4 signaling during photocarcinogenesis in mice. J Immunol. 2005;174:5298–305. + + + Ravindranathan S, Passang T, Li JM, et al. Targeting vasoactive intestinal peptide-mediated signaling enhances response to immune checkpoint therapy in pancreatic ductal adenocarcinoma. Nat Commun. 6418;13:2022. + + + Waller EK, Chaudagar K. Pancreatic cancer cell-intrinsic transglutaminase-2 promotes T cell suppression through microtubule-dependent secretion of immunosuppressive cytokines. J ImmunoTher Cancer. 2025;13:e012188. + + + Ishiguro K, Kitajima H, Niinuma T, et al. DOT1L inhibition reprograms innate immunity to potentiate immunomodulatory drug responses in multiple myeloma. Cancer Lett. 2025;631:217941. + + + Zebley CC, Abdelsamed HA, Ghoneim HE, et al. Proinflammatory cytokines promote TET2-mediated DNA demethylation during CD8 T cell effector differentiation. Cell Rep. 2021;37:109796. + + + Daly RJ, Scott AM, Klein O, Ernst M. Enhancing therapeutic anti-cancer responses by combining immune checkpoint and tyrosine kinase inhibition. Mol Cancer. 2022;21:189. + + + Lin S, Cheng L, Ye W, et al. Chimeric CTLA4-CD28-CD3z T Cells potentiate antitumor activity against CD80/CD86-Positive B cell malignancies. Front Immunol. 2021;12:642528. + + + Dugage DM, Jones RL, Trent J, Champiat S, Dumont S. Beyond the driver mutation: immunotherapies in gastrointestinal stromal tumors. Front Immunol. 2021;12:715727. + + + Sugihara E, Hashimoto N, Osuka S, et al. The Inhibitor of apoptosis protein livin confers resistance to fas-mediated immune cytotoxicity in refractory lymphoma. Cancer Res. 2020;80:4439–50. + + + Carlini V, Noonan DM, Abdalalem E, et al. The multifaceted nature of IL-10: regulation, role in immunological homeostasis and its relevance to cancer, COVID-19 and post-COVID conditions. Front Immunol. 2023;14:1161067. + + + Kureshi CT, Dougan SK. Cytokines in cancer. Cancer Cell. 2025;43:15–35. + + + Kupke P, Adenugba A, Schemmerer M, et al. Immunomodulation of natural killer cell function by ribavirin involves TYK-2 activation and subsequent increased IFN-γ secretion in the context of in vitro hepatitis E virus infection. Cells. 2023;12:453. + + + Iglesias M, Khalifian S, Oh BC, et al. A short course of tofacitinib sustains the immunoregulatory effect of CTLA4-Ig in the presence of inflammatory cytokines and promotes long-term survival of murine cardiac allografts. Am J Transplant. 2021;21:2675–87. + + + +
+ + + 42216334 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Machine learning-based identification of multidimensional predictors of quality of life in individuals with multiple sclerosis. + + e49025 + e49025 + + 10.1097/MD.0000000000049025 + + This study aimed to identify independent predictors of quality of life in patients with multiple sclerosis (MS) using machine learning approaches. One hundred and one individuals diagnosed with MS were included in this cross-sectional study. Quality of life was assessed using the MS Quality of Life-54 (MSQoL-54). Demographic variables, clinical characteristics, disability level (Expanded Disability Status Scale [EDSS]), fatigue severity, sleep quality (Pittsburgh Sleep Quality Index), depression level (Beck Depression Inventory), and functional mobility (Timed Up and Go test) were evaluated. Multiple machine learning regression models, including Linear Regression, Lasso, Elastic Net, Support Vector Machines, Random Forest, and XGBoost, were developed and compared. Five-times repeated five-fold cross-validation was applied for internal validation. Model performance was evaluated using root mean squared error (RMSE), mean absolute error (MAE), and coefficient of determination (R2). Among all models, Lasso regression demonstrated the best predictive performance (RMSE = 5.02, MAE = 4.04, R2 = 0.86). Disability level (EDSS) emerged as the strongest negative predictor of quality of life, followed by fatigue severity, sleep quality, and impaired functional mobility. Although disease duration was not significantly correlated with quality of life in univariate analyses, it showed a positive contribution in the multivariable model. Depression showed a strong bivariate association but had a relatively lower weight in the final predictive model. Quality of life in individuals with MS is strongly influenced by disability, fatigue, sleep quality, and functional mobility. Machine learning approaches provide an effective and interpretable framework for identifying key determinants of quality of life and may support personalized rehabilitation and clinical decision-making in MS. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Yetiş + Aysu + A + 0000-0003-2139-0848 + + Faculty of Medicine, Department of Neurology, Kirşehir Ahi Evran University, Kirşehir, Turkey. + + + + Canli + Mehmet + M + 0000-0002-8868-9599 + + School of Physical Therapy and Rehabilitation, Kirşehir Ahi Evran University, Kirşehir, Turkey. + + + + Canli + İrem + İ + 0000-0003-4478-3660 + + School of Physical Therapy and Rehabilitation, Kirşehir Ahi Evran University, Kirşehir, Turkey. + + + + Kocaman + Hikmet + H + 0000-0001-5971-7274 + + Faculty of Health Sciences, Deparment of Physiotherapy and Rehabilitation, Karamanoglu Mehmetbey University, Karaman, Turkey. + + + + Yildirim + Hasan + H + 0000-0003-4582-9018 + + Faculty of Kamil Özdağ Science, Department of Mathematics, Karamanoğlu Mehmetbey University, Karaman, Turkey. + + + + Yildiz + Nazim Tolgahan + NT + 0000-0002-2404-2884 + + Faculty of Health Sciences, Deparment of Physiotherapy and Rehabilitation, Karamanoglu Mehmetbey University, Karaman, Turkey. + + + + Duran + Selcen + S + 0000-0001-7553-2034 + + Faculty of Medicine, Department of Neurology, Kirşehir Ahi Evran University, Kirşehir, Turkey. + + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + IM + + + Humans + + + Quality of Life + + + Multiple Sclerosis + psychology + physiopathology + + + Female + + + Machine Learning + + + Cross-Sectional Studies + + + Male + + + Adult + + + Middle Aged + + + Fatigue + + + Random Forest + + + Boosting Machine Learning Algorithms + + + Predictive Learning Models + + + Depression + + + Sleep Quality + + + Disability Evaluation + + + Severity of Illness Index + + + Prediction Algorithms + + + + disability + machine learning + multiple sclerosis + quality of life + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 3 + 13 + + + 2026 + 5 + 8 + + + 2026 + 5 + 30 + 1 + 0 + + + ppublish + + 42216334 + 10.1097/MD.0000000000049025 + 00005792-202605290-00020 + + + + Özüdoğru A, Canli M, Gürses A, Alkan H, Yetiş A. Determination of five times-sit-to-stand test performance in patients with multiple sclerosis: validity and reliability. Somatosens Mot Res. 2023;40:72–7. + + + Kargarfard M, Eetemadifar M, Mehrabi M, Maghzi A, Hayatbakhsh M. Fatigue, depression, and health‐related quality of life in patients with multiple sclerosis in Isfahan, Iran. Eur J Neurol. 2012;19:431–7. + + + Opara J, Jaracz K, Brola W. Burden and quality of life in caregivers of persons with multiple sclerosis. Neurol Neurochir Pol. 2012;46:472–9. + + + Kes VB, Cengić L, Cesarik M, et al. Quality of life in patients with multiple sclerosis. Acta Clin Croat. 2013;52:107–10. + + + Tan H, Yu J, Tabby D, Devries A, Singer J. Clinical and economic impact of a specialty care management program among patients with multiple sclerosis: a cohort study. Mult Scler. 2010;16:956–63. + + + Morgante L. Hope in multiple sclerosis: a nursing perspective. Int J MS Care. 2000;2:9–15. + + + Bishop M, Stenhoff DM, Shepard L. Psychosocial adaptation and quality of life in multiple sclerosis: assessment of the disability centrality model. J Rehabil. 2007;73:3–12. + + + Blanco-Rivera C, Capeans-Tome C, Otero-Cepeda X. Quality of life in patients with choroidal melanoma. Arch Soc Esp Oftalmol. 2008;83:301–6. + + + Benedict RH, Wahlig E, Bakshi R, et al. Predicting quality of life in multiple sclerosis: accounting for physical disability, fatigue, cognition, mood disorder, personality, and behavior change. J Neurol Sci. 2005;231:29–34. + + + Miller A, Dishon S. Health-related quality of life in multiple sclerosis: the impact of disability, gender and employment status. Qual Life Res. 2006;15:259–71. + + + Göksel Karatepe A, Kaya T, Günaydn R, Demirhan A, Ce P, Gedizlioğlu M. Quality of life in patients with multiple sclerosis: the impact of depression, fatigue, and disability. Int J Rehabil Res. 2011;34:290–8. + + + Domingo S, Kinzy T, Thompson N, Gales S, Stone L, Sullivan A. Factors associated with sexual dysfunction in individuals with multiple sclerosis: implications for assessment and treatment. Int J MS Care. 2018;20:191–7. + + + Amtmann D, Askew RL, Kim J, et al. Pain affects depression through anxiety, fatigue, and sleep in multiple sclerosis. Rehabil Psychol. 2015;60:81–90. + + + Zivadinov R, Sepcic J, Nasuelli D, et al. A longitudinal study of brain atrophy and cognitive disturbances in the early phase of relapsing-remitting multiple sclerosis. J Neurol Neurosurg Psychiatry. 2001;70:773–80. + + + Strober L. Quality of life and psychological well-being in the early stages of multiple sclerosis (MS): importance of adopting a biopsychosocial model. Disabil Health J. 2018;11:555–61. + + + Yildiz NT, Kocaman H, Yildirim H, Canli M. An investigation of machine learning algorithms for prediction of temporomandibular disorders by using clinical parameters. Medicine (Baltimore). 2024;103:e39912. + + + Yetiş M, Kocaman H, Canli M, Yildirim H, Yetiş A, Ceylan I. Carpal tunnel syndrome prediction with machine learning algorithms using anthropometric and strength-based measurement. PLoS One. 2024;19:e0300044. + + + Polman CH, Reingold SC, Banwell B, et al. Diagnostic criteria for multiple sclerosis: 2010 revisions to the McDonald criteria. Ann Neurol. 2011;69:292–302. + + + Cockrell JR, Folstein MF. Mini-mental state examination. In: Copeland JRM, Abou-Saleh MT, Blazer DG, eds. Principles and Practice of Geriatric Psychiatry. 2nd ed. John Wiley & Sons; 2002:140–1. + + + Idiman E, Uzunel F, Ozakbas S, et al. Cross-cultural adaptation and validation of multiple sclerosis quality of life questionnaire (MSQOL-54) in a Turkish multiple sclerosis sample. J Neurol Sci. 2006;240:77–80. + + + Kurtzke JF. Rating neurologic impairment in multiple sclerosis: an expanded disability status scale (EDSS). Neurology. 1983;33:1444–52. + + + Armutlu K, Korkmaz NC, Keser I, et al. The validity and reliability of the Fatigue Severity Scale in Turkish multiple sclerosis patients. Int J Rehabil Res. 2007;30:81–5. + + + Buysse DJ, Reynolds CF III, Monk TH, Berman SR, Kupfer DJ. The pittsburgh sleep quality index: a new instrument for psychiatric practice and research. Psychiatry Res. 1989;28:193–213. + + + Agargun M, Kara H, Anlar O. The validity and reliability of the pittsburgh sleep quality index. Turk J Psychiatry. 1996;7:107–15. + + + Nilsagard Y, Lundholm C, Gunnarsson LG, Denison E. Clinical relevance using timed walk tests and ‘timed up and go’testing in persons with multiple sclerosis. Physiother Res Int. 2007;12:105–14. + + + Beck AT, Ward CH, Mendelson M, Mock J, Erbaugh J. An inventory for measuring depression. Arch Gen Psychiatry. 1961;4:561–71. + + + Hisli N. Beck depresyon envanterinin universite ogrencileri icin gecerliligi, guvenilirligi. (A reliability and validity study of Beck Depression Inventory in a university student sample). J Psychol. 1989;7:3–13. + + + Lobentanz IS, Asenbaum S, Vass K, et al. Factors influencing quality of life in multiple sclerosis patients: disability, depressive mood, fatigue and sleep quality. Acta Neurol Scand. 2004;110:6–13. + + + Janardhan V, Bakshi R. Quality of life in patients with multiple sclerosis: the impact of fatigue and depression. J Neurol Sci. 2002;205:51–8. + + + Kamran F, Samaei A, Asghari N, et al. The associations between fatigue, disability, and mobility and the quality of life in patients with multiple sclerosis. Middle East J Rehabil Health. 2016;3:e3437. + + + Fruewald S, Loeffler‐Stastka H, Eher R, Saletu B, Baumhacki U. Depression and quality of life in multiple sclerosis. Acta Neurol Scand. 2001;104:257–61. + + + Benito‐Leon J, Morales J, Rivera‐Navarro J. Health‐related quality of life and its relationship to cognitive and emotional functioning in multiple sclerosis patients. Eur J Neurol. 2002;9:497–502. + + + Ford HL, Gerry E, Johnson MH, Tennant A. Health status and quality of life of people with multiple sclerosis. Disabil Rehabil. 2001;23:516–21. + + + +
+ + + 42216333 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Machine learning identifies traffic-related pollutant mixtures as potential factors suggestive of association with osteoporosis in a cross-sectional analysis of NHANES. + + e48884 + e48884 + + 10.1097/MD.0000000000048884 + + The combined effect of traffic-related pollutant mixtures on osteoporosis (OP) remains unclear. This study aimed to evaluate such associations using machine learning and mixture modeling approaches. A cross-sectional analysis was conducted among 3053 participants from the National Health and Nutrition Examination Survey 2015 to 2018. Eighteen exposures were assessed, including heavy metals, polycyclic aromatic hydrocarbons, phthalates, per- and polyfluoroalkyl substances, volatile organic compounds, diesel exhaust, and behavioral factors. OP was defined by femoral neck bone mineral density T-score ≤-2.5. Weighted quantile sum regression and 5 machine learning models were applied, accounting for complex survey design. OP prevalence was 12.97%. Weighted quantile sum regression showed a positive but nonsignificant mixture odds ratio (odds ratio = 1.21; 95% confidence interval: 0.77-2.63; P = .412). The largest positive weights were daily outdoor work duration (0.240) and occupational diesel exhaust (0.136). Random forest identified female sex, age, vitamin D, blood lead, and body mass index as top predictors. Least Absolute Shrinkage and Selection Operator achieved the highest test area under the receiver operating characteristic curve (0.81) with the lowest cross-validation standard deviation (0.0167). Its coefficients highlighted occupational diesel exhaust (β = 0.40) as a notable environmental factor alongside female sex (β = 0.95) and age (β = 0.70). Traffic-related pollutant mixtures showed a cross-sectional association with OP in a nationally representative US population, with occupational diesel exhaust and prolonged outdoor work emerging as key contributors in mixture models. However, the nonsignificant overall mixture effect and potential for reverse causation warrant caution in interpretation. These findings support considering environmental and occupational factors in OP prevention, although the overall mixture effect did not reach statistical significance. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Wang + Yifei + Y + 0009-0009-4135-3009 + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Deng + Ming + M + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Xu + Yali + Y + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Zha + Zhengang + Z + 0000-0003-4851-3297 + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Feng + Ying + Y + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Zhuang + Tengfeng + T + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + He + Jiaqing + J + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Peng + Hui + H + + Department of Orthopedics and Joint Surgery, The First Affiliated Hospital of Jinan University, First Clinical Medical College of Jinan University, Guangzhou, Guangdong, China. + + + + Wu + Wenrui + W + + Department of Traumatic Orthopedics, The First Affiliated Hospital, Jinan University, Guangzhou, Guangdong, China. + + + Department of Orthopedics, Chaoshan Hospital of The First Affiliated Hospital of Jinan University, Chaozhou, Guangdong, China. + + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + + + 0 + Vehicle Emissions + + + 0 + Air Pollutants + + + IM + + + Humans + + + Cross-Sectional Studies + + + Female + + + Machine Learning + + + Nutrition Surveys + + + Osteoporosis + epidemiology + etiology + chemically induced + + + Male + + + Middle Aged + + + Vehicle Emissions + analysis + toxicity + + + Adult + + + United States + epidemiology + + + Air Pollutants + adverse effects + analysis + + + Environmental Exposure + adverse effects + + + Bone Density + + + Traffic-Related Pollution + adverse effects + + + + NHANES + bone health + environmental mixtures + machine learning + occupational diesel exhaust + osteoporosis + traffic-related air pollution + + The authors have no conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 2 + 4 + + + 2026 + 4 + 29 + + + 2026 + 5 + 30 + 1 + 0 + + + ppublish + + 42216333 + 10.1097/MD.0000000000048884 + 00005792-202605290-00019 + + + + Jeddi MZ, et al. Environmental exposure to endocrine-disrupting chemicals and osteoporosis: a systematic review. Osteoporos Int. 2021;32:2397–412. + + + Compston JE, McClung MR, Leslie WD. Osteoporosis. Lancet. 2019;393:364–76. + + + Johnell O, Kanis JA. An estimate of the worldwide prevalence and disability associated with osteoporotic fractures. Osteoporos Int. 2006;17:1726–33. + + + Wright NC, Looker AC, Saag KG, et al. The recent prevalence of osteoporosis and low bone mass in the United States based on bone mineral density at the femoral neck or lumbar spine. J Bone Miner Res. 2014;29:2520–6. + + + Burge R, Dawson-Hughes B, Solomon DH, Wong JB, King A, Tosteson A. Incidence and economic burden of osteoporosis-related fractures in the United States, 2005-2025. J Bone Miner Res. 2007;22:465–75. + + + Abrahamsen B, van Staa T, Ariely R, Olson M, Cooper C. Excess mortality following hip fracture: a systematic epidemiological review. Osteoporos Int. 2009;20:1633–50. + + + Kanis JA, McCloskey EV, Johansson H, Oden A, Ström O, Borgström F. Development and use of FRAX® in osteoporosis. Osteoporos Int. 2010;21(Suppl 2):S407–13. + + + Liu CT, Yu YH, Estrada K, et al. Metabolomics insights into osteoporosis through association with bone mineral density. J Bone Miner Res. 2021;36:245–56. + + + Mahdavi SB, Zamani S, Riahi R, et al. Exposure to environmental chemicals and human bone health: a systematic review and meta-analysis. Exposure Health. 2023;15:807–22. + + + Rizzoli R, Biver E, Brennan-Speranza TC. Nutritional intake and bone health. Lancet Diabetes Endocrinol. 2021;9:606–21. + + + Prada D, Colicino E, Power MC, et al. Influence of chemical and environmental exposures on the risk of osteoporosis: a review of the literature. Curr Environ Health Rep. 2020;7:337–48. + + + Kelly FJ, Fussell JC. Air pollution and public health: emerging hazards and improved understanding of risk. Environ Geochem Health. 2015;37:631–49. + + + Raisz LG. Pathogenesis of osteoporosis: concepts, conflicts, and prospects. J Clin Invest. 2005;115:3318–25. + + + Manolagas SC. From estrogen-centric to aging and oxidative stress: a revised perspective of the pathogenesis of osteoporosis. Endocr Rev. 2010;31:266–300. + + + Pounds JG, Long GJ, Rosen JF. Cellular and molecular toxicity of lead in bone. Environ Health Perspect. 1991;91:17–32. + + + Campbell JR, Rosier RN, Novotny L, Puzas JE. The association between environmental lead exposure and bone density in children. Environ Health Perspect. 2004;112:1200–3. + + + Engström A, Michaëlsson K, Suwazono Y, Wolk A, Vahter M, Akesson A. Long-term cadmium exposure and the association with bone mineral density and fractures in a population-based study among women. J Bone Miner Res. 2011;26:486–95. + + + Gallagher CM, Kovach JS, Meliker JR. Urinary cadmium and osteoporosis in U.S. women ≥50 years of age: NHANES 1988-1994 and 1999-2004. Environ Health Perspect. 2008;116:1338–43. + + + Prada D, Zhong J, Colicino E, et al. Association of air particulate pollution with bone loss over time and bone fracture risk: analysis of data from two independent studies. Lancet Planet Health. 2017;1:e337–47. + + + Nemmar A, Al-Salam S, Zia S, et al. Diesel engine exhaust initiates a sequence of pulmonary and cardiovascular effects in rats. J Toxicol. 2010;2010:206057. + + + Vaishnavi N, Sekaran S, Suresh Babu R, et al. Diesel exhaust particles modulate bone remodeling and worsen osteoporosis: in vitro and in vivo investigations. Nanoscale Adv. 2025;7:4577–90. + + + Braun JM, Gennings C, Hauser R, Webster TF. What can epidemiological studies tell us about the impact of chemical mixtures on human health? Environ Health Perspect. 2016;124:A6–9. + + + Carlin DJ, Rider CV, Woychik R, Birnbaum LS. Unraveling the health effects of environmental mixtures: an NIEHS priority. Environ Health Perspect. 2013;121:A6–8. + + + Agier L, Portengen L, Chadeau-Hyam M, et al. A systematic comparison of linear regression-based statistical methods to assess exposure-health associations. Environ Health Perspect. 2016;124:1848–56. + + + Carrico C, Gennings C, Wheeler DC, Factor-Litvak P. Characterization of weighted quantile sum regression for highly correlated data in a risk analysis setting. J Agric Biol Environ Stat. 2015;20:100–20. + + + Prada D, López G, Solleiro-Villavicencio H, Garcia-Cuellar C, Baccarelli AA. Molecular and cellular mechanisms linking air pollution and bone damage. Environ Res. 2020;185:109465. + + + Tibshirani R. Regression shrinkage and selection via the lasso. J Royal Stat Soc Ser B. 1996;58:267–88. + + + Breiman L. Random forests. Mach Learn. 2001;45:5–32. + + + Gunter EW, McQuillan GM. Quality control in planning and operating the laboratory component for the Third National Health and Nutrition Examination Survey. J Nutr. 1990;120(Suppl 11):1451–4. + + + Hornung RW, Reed LD. Estimation of average concentration in the presence of nondetectable values. Appl Occup Environ Hyg. 1990;5:46–51. + + + Looker AC, Wahner HW, Dunn WL, et al. Updated data on proximal femur bone mineral levels of US adults. Osteoporos Int. 1998;8:468–89. + + + Looker AC, Johnston CC Jr, Wahner HW, et al. Prevalence of low femoral bone density in older U.S. women from NHANES III. J Bone Miner Res. 1995;10:796–802. + + + World Health Organization. Assessment of fracture risk and its application to screening for postmenopausal osteoporosis. WHO Technical Report Series 843. WHO;1994. + + + Wei MH, Yang ZW, Li X, et al. Associations of multiple metals with bone mineral density: a population-based study in US adults. Chemosphere. 2021;282:131062. + + + Walker-Bone K, D‘Angelo S, Syddall HE, et al. Exposure to heavy physical occupational activities during working life and bone mineral density at the hip at retirement age. Occup Environ Med. 2014;71:329–31. + + + Riedl M, Diaz-Sanchez D. Biology of diesel exhaust effects on respiratory function. J Allergy Clin Immunol. 2005;115:221–8; quiz 229. + + + An L, Li Y, Wang C, et al. Benzo[a] pyrene injures BMP2-induced osteogenic differentiation of mesenchymal stem cells through AhR reducing BMPRII. Ecotoxicol Environ Saf. 2020;203:110930. + + + Chastin SF, Mandrichenko O, Helbostadt JL, Skelton DA. Associations between objectively-measured sedentary behaviour and physical activity with bone mineral density in adults and older adults, the NHANES study. Bone. 2014;64:254–62. + + + Rubin CT, Lanyon LE. Regulation of bone formation by applied dynamic loads. J Bone Joint Surg Am. 1984;66:397–402. + + + Silbergeld EK, Schwartz J, Mahaffey K. Lead and osteoporosis: mobilization of lead from bone in postmenopausal women. Environ Res. 1988;47:79–94. + + + Wang G, Fowler BA. Roles of biomarkers in evaluating interactions among mixtures of lead, cadmium and arsenic. Toxicol Appl Pharmacol. 2008;233:92–9. + + + Hennig B, Ettinger AS, Jandacek RJ, et al. Using nutrition for intervention and prevention against environmental chemical toxicity and associated diseases. Environ Health Perspect. 2007;115:493–5. + + + Vahter M, Akesson A, Liden C, Ceccatelli S, Berglund M. Gender differences in the disposition and toxicity of metals. Environ Res. 2007;104:85–95. + + + Holick MF. Vitamin D deficiency. N Engl J Med. 2007;357:266–81. + + + Imeri H, et al. Vitamin D supplementation in older adults: a retrospective cohort study of prescription patterns and associated factors. Int J Clin Pharm. 2024;46:378–86. + + + O’Neal SL, Zheng W. Manganese toxicity upon overexposure: a decade in review. Curr Environ Health Rep. 2015;2:315–28. + + + Park RM. Neurobehavioral deficits and parkinsonism in occupations with manganese exposure: a review of methodological issues and epidemiological evidence. Am J Ind Med. 2013;4:123–35. + + + Sunderland EM, Hu XC, Dassuncao C, Tokranov AK, Wagner CC, Allen JG. A review of the pathways of human exposure to poly- and perfluoroalkyl substances (PFASs) and present understanding of health effects. J Expo Sci Environ Epidemiol. 2019;29:131–47. + + + Khalil N, Chen A, Lee M, et al. Association of perfluoroalkyl substances, bone mineral density, and osteoporosis in the U.S. population in NHANES 2009-2010. Environ Health Perspect. 2016;124:81–7. + + + Lin LY, Wen LL, Su TC, Chen PC, Lin CY. Negative association between serum perfluorooctane sulfate concentration and bone mineral density in US premenopausal women: NHANES, 2005-2008. J Clin Endocrinol Metab. 2014;99:2173–80. + + + Wu Q, Magnus JH, Hentz JG. Urinary cadmium, osteopenia, and osteoporosis in the US population. Osteoporos Int. 2010;21:1449–54. + + + Xue T. Mitigating omitted variable bias in air pollution health risk assessment: a unified multi-pollutant framework. 2026. EGU General Assembly 2026, Vienna, Austria, 3–8 May 2026, EGU26-12142 + + + Boffetta P, Dosemeci M, Gridley G, Bath H, Moradi T, Silverman D. Occupational exposure to diesel engine emissions and risk of cancer in Swedish men and women. Cancer Causes Control. 2001;12:365–74. + + + Rappaport SM, Kupper LL. Variability of environmental exposures to volatile organic compounds. J Expo Anal Environ Epidemiol. 2004;14:92–107. + + + +
+ + + 42216320 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1536-5964 + + 105 + 22 + + 2026 + May + 29 + + + Medicine + Medicine (Baltimore) + + Association between fat mass index and depressive symptoms in U.S. adults: A cross-sectional analysis of NHANES 2011-2016. + + e49130 + e49130 + + 10.1097/MD.0000000000049130 + + Fat mass index (FMI) reflects adiposity normalized for height and may provide information beyond body mass index. Evidence on its relationship with depressive symptoms in U.S. adults remains limited. This cross-sectional study used data from adults participating in National Health and Nutrition Examination Survey 2011 to 2016. Fat mass index was calculated from dual-energy X-ray absorptiometry-derived fat mass divided by height squared. Depressive symptoms were defined using the Patient Health Questionnaire-9. Survey-weighted logistic regression, restricted cubic spline analysis, subgroup analyses, and machine-learning models were applied to evaluate the association and predictive performance. The final analysis included 7273 participants. After full adjustment, FMI was positively associated with depressive symptoms, with an odds ratio (OR) of 1.05 for each 1-unit increment (95% confidence interval [CI]: 1.03-1.08). In the quartile-based analysis, participants in Q4 showed greater odds of depressive symptoms compared with those in Q1 (OR = 1.50, 95% CI: 1.12-2.01). Restricted cubic spline analysis suggested an approximately linear positive association. In exploratory prediction models, FMI showed a higher AUC than body mass index, although the overall discrimination remained moderate. Higher FMI was associated with a higher prevalence of depressive symptoms among U.S. adults. FMI may serve as a useful adiposity-related indicator in epidemiological research, but prospective studies are needed before clinical predictive use can be recommended. + Copyright © 2026 the Author(s). Published by Wolters Kluwer Health, Inc. + + + + Wu + Haixia + H + 0009-0004-2047-5852 + + Department of Breast Surgery, First Affiliated Hospital of Kunming Medical University, Kunming, Yunnan, China. + + + + Yang + Shangjin + S + + Department of Gastrointestinal Surgery, First Affiliated Hospital of Kunming Medical University, Kunming, Yunnan, China. + + + + Chen + Cheng + C + + Department of Breast Surgery, First Affiliated Hospital of Kunming Medical University, Kunming, Yunnan, China. + + + + Wang + Xin + X + + Department of Breast Surgery, First Affiliated Hospital of Kunming Medical University, Kunming, Yunnan, China. + + + + Chen + Wenlin + W + + The Third Department of Breast Surgery, Peking University Cancer Hospital Yunnan, Yunnan Cancer Hospital, The Third Affiliated Hospital of Kunming Medical University, Kunming, Yunnan, China. + + + + Ge + Fei + F + 0000-0002-1561-2785 + + Department of Breast Surgery, First Affiliated Hospital of Kunming Medical University, Kunming, Yunnan, China. + + + + eng + + Journal Article + +
+ + United States + Medicine (Baltimore) + 2985248R + 0025-7974 + + IM + + + Humans + + + Cross-Sectional Studies + + + Female + + + Nutrition Surveys + + + Depression + epidemiology + + + United States + epidemiology + + + Body Mass Index + + + Male + + + Adult + + + Middle Aged + + + Absorptiometry, Photon + + + Adiposity + physiology + + + Logistic Models + + + + NHANES + Random Forest + XGBoost + depression + fat mass index + + The authors have no funding and conflicts of interest to disclose. +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2025 + 10 + 26 + + + 2026 + 5 + 15 + + + 2026 + 5 + 30 + 1 + 0 + + + ppublish + + 42216320 + 10.1097/MD.0000000000049130 + 00005792-202605290-00006 + + + + Kim J-W, Suzuki K, Kavalali ET, Monteggia LM. Ketamine: mechanisms and relevance to treatment of depression. Annu Rev Med. 2024;75:129–43. + + + Herrman H, Patel V, Kieling C, et al. Time for united action on depression: a Lancet-world psychiatric association commission. Lancet (Lond). 2022;399:957–1022. + + + Liu Q, He H, Yang J, Feng X, Zhao F, Lyu J. Changes in the global burden of depression from 1990 to 2017: Findings from the Global Burden of Disease study. J Psychiatr Res. 2020;126:134–40. + + + Malhi GS, Mann JJ. Depression. Lancet (Lond). 2018;392:2299–312. + + + Perdomo CM, Cohen RV, Sumithran P, Clément K, Frühbeck G. Contemporary medical, device, and surgical therapies for obesity in adults. Lancet (Lond). 2023;401:1116–30. + + + WHO Expert Consultation. Appropriate body-mass index for Asian populations and its implications for policy and intervention strategies. Lancet (Lond). 2004;363:157–63. + + + Gutiérrez-Rojas CA, Cruz-Soto R, Sánchez-Muñoz V, et al. Does FMI correlate better than BMI with the occurrence of metabolic changes in obese patients? Study based on 2007 consecutive Mexican patients. Obes Surg. 2020;30:1324–31. + + + Weber DR, Leonard MB, Shults J, Zemel BS. A comparison of fat and lean body mass index to BMI for the identification of metabolic syndrome in children and adolescents. J Clin Endocrinol Metab. 2014;99:3208–16. + + + Wong JC, O’Neill S, Beck BR, Forwood MR, Khoo SK. Comparison of obesity and metabolic syndrome prevalence using fat mass index, body mass index and percentage body fat. PLoS One. 2021;16:e0245436. + + + Ceccarelli G, Bellato M, Zago M, Cusella G, Sforza C, Lovecchio N. BMI and inverted BMI as predictors of fat mass in young people: a comparison across the ages. Ann Hum Biol. 2020;47:237–43. + + + Levis B, Benedetti A, Thombs BD; DEPRESsion Screening Data (DEPRESSD) Collaboration. Accuracy of patient health questionnaire-9 (PHQ-9) for screening to detect major depression: individual participant data meta-analysis. BMJ. 2019;365:l1476. + + + Jantaratnotai N, Mosikanon K, Lee Y, McIntyre RS. The interface of depression and obesity. Obes Res Clin Pract. 2017;11:1–10. + + + Pasco JA, Berk M, Penninx B, et al. Obesity and sarcopenic obesity characterized by low-grade inflammation are associated with increased risk for major depression in women. Front Nutr. 2023;10:1222019. + + + Yu M, Shi Y, Gu L, Wang W. “Jolly fat” or ‘sad fat’: a systematic review and meta-analysis of the association between obesity and depression among community-dwelling older adults. Aging Ment Health. 2022;26:13–25. + + + Li M, Yu X, Zhang W, et al. The association between weight-adjusted-waist index and depression: results from NHANES 2005-2018. J Affect Disord. 2024;347:299–305. + + + Fulton S, Décarie-Spain L, Fioramonti X, Guiard B, Nakajima S. The menace of obesity to depression and anxiety prevalence. Trends Endocrinol Metab. 2022;33:18–35. + + + Luppino FS, de Wit LM, Bouvy PF, et al. Overweight, obesity, and depression: a systematic review and meta-analysis of longitudinal studies. Arch Gen Psychiatry. 2010;67:220–9. + + + Wu Y, Li D, Vermund SH. Advantages and limitations of the body mass index (BMI) to assess adult obesity. Int J Environ Res Public Health. 2024;21:757. + + + Javed A, Jumean M, Murad MH, et al. Diagnostic performance of body mass index to identify obesity as defined by body adiposity in children and adolescents: a systematic review and meta-analysis. Pediatr Obes. 2015;10:234–44. + + + Romero-Corral A, Somers VK, Sierra-Johnson J, et al. Normal weight obesity: a risk factor for cardiometabolic dysregulation and cardiovascular mortality. Eur Heart J. 2010;31:737–46. + + + Freedman DS, Wang J, Maynard LM, et al. Relation of BMI to fat and fat-free mass among children and adolescents. Int J Obes. 2005;29:1–8. + + + Ramírez-Vélez R, Correa-Bautista JE, Sanders-Tordecilla A, et al. Percentage of body fat and fat mass index as a screening tool for metabolic syndrome prediction in Colombian university students. Nutrients. 2017;9:1009. + + + Liu P, Ma F, Lou H, Liu Y. The utility of fat mass index vs. body mass index and percentage of body fat in the screening of metabolic syndrome. BMC Public Health. 2013;13:629. + + + Chen J, Cheng Z, Yao Y, Wang S. Variation of all-cause mortality with fat-free mass index (FFMI) and fat mass index (FMI) in individuals with asthma: results from the NHANES database retrospective cohort study. J Epidemiol Glob Health. 2024;14:1555–68. + + + Mannan M, Mamun A, Doi S, Clavarino A. Is there a bi-directional relationship between depression and obesity among adult men and women? Systematic review and bias-adjusted meta analysis. Asian J Psychiatry. 2016;21:51–66. + + + Milaneschi Y, Simmons WK, van Rossum EFC, Penninx BW. Depression and obesity: evidence of shared biological mechanisms. Mol Psychiatry. 2019;24:18–33. + + + Jokela M, Laakasuo M. Obesity as a causal risk factor for depression: Systematic review and meta-analysis of Mendelian randomization studies and implications for population mental health. J Psychiatr Res. 2023;163:86–92. + + + Selman A, Dai J, Driskill J, Reddy AP, Reddy PH. Depression and obesity: focus on factors and mechanistic links. Biochim Biophys Acta Mol Basis Dis. 2025;1871:167561. + + + Ouchi N, Parker JL, Lugus JJ, Walsh K. Adipokines in inflammation and metabolic disease. Nat Rev Immunol. 2011;11:85–97. + + + Delgado PL. Depression: the case for a monoamine deficiency. J Clin Psychiatry. 2000;61(Suppl 6):7–11. + + + Jitte S, Keluth S, Bisht P, et al. Obesity and depression: common link and possible targets. CNS Neurol Disord Drug Targets. 2024;23:1425–49. + + + Wang J, Sun L, You J, et al. Role and mechanism of PVN-sympathetic-adipose circuit in depression and insulin resistance induced by chronic stress. EMBO Rep. 2023;24:e57176. + + + Koutsouleris N, Kambeitz-Ilankovic L, Ruhrmann S, et al. Prediction models of functional outcomes for individuals in the clinical high-risk state for psychosis or with recent-onset depression: a multimodal, multisite machine learning analysis. JAMA Psychiatry. 2018;75:1156–72. + + + +
+ + + 42216309 + + 2026 + 05 + 30 + +
+ + 1521-4095 + + + 2026 + May + 29 + + + Advanced materials (Deerfield Beach, Fla.) + Adv Mater + + From Single Motif to Active Ensembles: Phase-Controlled Co8 Cluster Catalysis on MoS2 for Nitrogen Electroreduction. + + e73521 + e73521 + + 10.1002/adma.73521 + + Atomic-scale metal clusters, which bridge the gap between nanoparticles and single-atom catalysts, show pronounced structure-sensitive reactivity that is strongly governed by the support. Here, we reveal that the crystal phase of a two-dimensional support-metallic 1T versus semiconducting 2H MoS2-directs the structure and electrochemical nitrogen reduction (eNRR) performance of supported Co8 clusters via machine-learning-potential-accelerated multiscale simulations. On 1T-MoS2, strong metal-support interactions act as a structural converger, locking Co8 into a single dominant operando active motif. In contrast, 2H-MoS2 behaves as a structural diverger, stabilizing a thermodynamically broad ensemble of active motifs under reaction conditions. This phase-controlled structural diversity translates directly into a function: Co8N7H12/2H-MoS2 hosts a larger population of intrinsically active motifs and delivers an ammonia production rate significantly higher than that of Co8N7H14/1T-MoS2 while concurrently suppressing hydrogen evolution. Electronic structure analysis identified the total Bader charge of the cluster across different exposed active sites as a key descriptor that was exponentially correlated with the N2H2 hydrogenation barrier and turnover frequency. These findings establish a crystal phase-structure-charge-function causal chain and highlight support phase engineering-specifically, the deliberate promotion of structural diversity-as a general strategy that can be extended to other catalytic reactions to increase activity. + © 2026 Wiley‐VCH GmbH. + + + + Zhao + Jian-Wen + JW + + State Key Laboratory of Precision and Intelligent Chemistry, School of Chemistry and Materials Science, University of Science and Technology of China, Hefei, Anhui, China. + + + + Wei + Wan-Yao + WY + + State Key Laboratory of Precision and Intelligent Chemistry, School of Chemistry and Materials Science, University of Science and Technology of China, Hefei, Anhui, China. + + + Hefei National Laboratory, University of Science and Technology of China, Hefei, China. + + + + Li + Wei-Xue + WX + + State Key Laboratory of Precision and Intelligent Chemistry, School of Chemistry and Materials Science, University of Science and Technology of China, Hefei, Anhui, China. + + + Hefei National Laboratory, University of Science and Technology of China, Hefei, China. + + + + Liu + Jin-Xun + JX + + State Key Laboratory of Precision and Intelligent Chemistry, School of Chemistry and Materials Science, University of Science and Technology of China, Hefei, Anhui, China. + + + Hefei National Laboratory, University of Science and Technology of China, Hefei, China. + + + + eng + + + 2021YFA1502804 + Key Technologies R&D Program of China + + + + 22172150 + National Natural Science Foundation of China + + + + 22222306 + National Natural Science Foundation of China + + + + 22221003 + National Natural Science Foundation of China + + + + 22432004 + National Natural Science Foundation of China + + + + 2021ZD0303302 + Quantum Science and Technology-National Science and Technology Major Project + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Germany + Adv Mater + 9885358 + 0935-9648 + + IM +
+ + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 4 + 7 + + + 2025 + 12 + 12 + + + 2026 + 5 + 19 + + + 2026 + 5 + 30 + 0 + 53 + + + aheadofprint + + 42216309 + 10.1002/adma.73521 + + + + X. Li, S. Mitchell, Y. Fang, J. Li, J. Perez‐Ramirez, and J. Lu, “Advances in Heterogeneous Single‐Cluster Catalysis,” Nature Reviews Chemistry 7, no. 11 (2023): 754–767, https://doi.org/10.1038/s41570‐023‐00540‐8. + + + L. Sun, V. Reddu, and X. Wang, “Multi‐Atom Cluster Catalysts for Efficient Electrocatalysis,” Chemical Society Reviews 51, no. 21 (2022): 8923–8956, https://doi.org/10.1039/D2CS00233G. + + + E. C. Tyo and S. Vajda, “Catalysis by Clusters With Precise Numbers of Atoms,” Nature Nanotechnology 10, no. 7 (2015): 577–588, https://doi.org/10.1038/nnano.2015.140. + + + J. Qian, Z. Yang, J. Lyu, Q. Yao, and J. Xie, “Molecular Interactions in Atomically Precise Metal Nanoclusters,” Precision Chemistry 2, no. 10 (2024): 495–517, https://doi.org/10.1021/prechem.4c00044. + + + R. Qin, P. Wang, and P. Liu, “Carbon Monoxide Promotes the Catalytic Hydrogenation on Metal Cluster Catalysts,” Research 2020 (2020): 4172794, https://doi.org/10.34133/2020/4172794. + + + L. Liu, Z. Wang, Z. Wang, R. Wang, S. Zang, and T. C. Mak, “Mediating CO2 Electroreduction Activity and Selectivity Over Atomically Precise Copper Clusters,” Angewandte Chemie 134, no. 35 (2022): 202205626, https://doi.org/10.1002/ange.202205626. + + + J. Wang, F. Xu, Z. Wang, S. Zang, and T. C. Mak, “Ligand‐Shell Engineering of a Au28 Nanocluster Boosts Electrocatalytic CO2 Reduction,” Angewandte Chemie 134, no. 32 (2022): 202207492, https://doi.org/10.1002/ange.202207492. + + + N. M. Briggs, L. Barrett, and E. C. Wegener, “Identification of Active Sites on Supported Metal Catalysts With Carbon Nanotube Hydrogen Highways,” Nature Communications 9, no. 1 (2018): 3827, https://doi.org/10.1038/s41467‐018‐06100‐9. + + + H. Frey, A. Beck, X. Huang, J. A. van Bokhoven, and M.‐G. Willinger, “Dynamic Interplay Between Metal Nanoparticles and Oxide Support Under Redox Conditions,” Science 376, no. 6596 (2022): 982–987, https://doi.org/10.1126/science.abm3371. + + + H. Prats and M. Stamatakis, “Atomistic and Electronic Structure of Metal Clusters Supported on Transition Metal Carbides: Implications for Catalysis,” Journal of Materials Chemistry A 10, no. 3 (2022): 1522–1534, https://doi.org/10.1039/D1TA08468B. + + + Y. Cui, Y. Wu, C. Ren, Q. Li, C. Ling, and J. Wang, “Beyond Local Coordination: How Global Structure Engineers the Selectivity of Single Atom Catalysts for CO2 Reduction,” Angewandte Chemie International Edition 138 (2025): 19826, https://doi.org/10.1002/ange.202519826. + + + M. Chhowalla, H. S. Shin, G. Eda, L.‐J. Li, K. P. Loh, and H. Zhang, “The Chemistry of Two‐Dimensional Layered Transition Metal Dichalcogenide Nanosheets,” Nature Chemistry 5, no. 4 (2013): 263–275, https://doi.org/10.1038/nchem.1589. + + + J. H. Han, M. Kwak, Y. Kim, and J. Cheon, “Recent Advances in the Solution‐Based Preparation of Two‐Dimensional Layered Transition Metal Chalcogenide Nanostructures,” Chemical Reviews 118, no. 13 (2018): 6151–6188, https://doi.org/10.1021/acs.chemrev.8b00264. + + + X. Zhang, Z. Lai, Q. Ma, and H. Zhang, “Novel Structured Transition Metal Dichalcogenide Nanosheets,” Chemical Society Reviews 47, no. 9 (2018): 3301–3338, https://doi.org/10.1039/C8CS00094H. + + + D. Voiry, A. Mohite, and M. Chhowalla, “Phase Engineering of Transition Metal Dichalcogenides,” Chemical Society Reviews 44, no. 9 (2015): 2702–2712, https://doi.org/10.1039/C5CS00151J. + + + S. Park, C. Kim, and S. O. Park, “Phase Engineering of Transition Metal Dichalcogenides With Unprecedentedly High Phase Purity, Stability, and Scalability via Molten‐Metal‐Assisted Intercalation,” Advanced Materials 32, no. 33 (2020): 2001889, https://doi.org/10.1002/adma.202001889. + + + G. Gao, Y. Jiao, F. Ma, Y. Jiao, E. Waclawik, and A. Du, “Charge Mediated Semiconducting‐to‐Metallic Phase Transition in Molybdenum Disulfide Monolayer and Hydrogen Evolution Reaction in New 1T′ Phase,” The Journal of Physical Chemistry C 119, no. 23 (2015): 13124–13128, https://doi.org/10.1021/acs.jpcc.5b04658. + + + Q. Huang, J. Shen, Y. Lu, R. Ye, and S. Gong, “Insights Into the Structural Evolution of MoS2 From the Semiconductive 2H to Metallic 1T Phase,” The Journal of Physical Chemistry C 127, no. 35 (2023): 17406–17414, https://doi.org/10.1021/acs.jpcc.3c03254. + + + J. Zhang, X. Tian, and M. Liu, “Cobalt‐Modulated Molybdenum–Dinitrogen Interaction in MoS2 for Catalyzing Ammonia Synthesis,” Journal of the American Chemical Society 141, no. 49 (2019): 19269–19275, https://doi.org/10.1021/jacs.9b02501. + + + Y. Zhang, D. Wang, and G. Wei, “Engineering Spin Polarization of the Surface‐Adsorbed Fe Atom by Intercalating a Transition Metal Atom Into the MoS2 Bilayer for Enhanced Nitrogen Reduction,” JACS Au 4, no. 4 (2024): 1509–1520, https://doi.org/10.1021/jacsau.4c00030. + + + H. M. Fruehwald, Y. Liebsch, and U. Javed, “Basal‐Plane Pores Activate Monolayer MoS2 for the Hydrogen Evolution Reaction,” ACS Catalysis 15, no. 5 (2025): 3768–3776, https://doi.org/10.1021/acscatal.4c07970. + + + X.‐H. Zhang, N. Li, J. Wu, Y.‐Z. Zheng, and X. Tao, “Defect‐Rich O‐Incorporated 1T‐MoS2 Nanosheets for Remarkably Enhanced Visible‐Light Photocatalytic H2 Evolution Over CdS: The Impact of Enriched Defects,” Applied Catalysis B: Environmental 229 (2018): 227–236, https://doi.org/10.1016/j.apcatb.2018.02.025. + + + S. Zhao, Y. Yang, and Z. Tang, “Insight Into Structural Evolution, Active Sites, and Stability of Heterogeneous Electrocatalysts,” Angewandte Chemie International Edition 61, no. 11 (2022): 202110186, https://doi.org/10.1002/anie.202110186. + + + H. Chen, X. Liang, Y. Liu, X. Ai, T. Asefa, and X. Zou, “Active Site Engineering in Porous Electrocatalysts,” Advanced Materials 32, no. 44 (2020): 2002435, https://doi.org/10.1002/adma.202002435. + + + R. Guo, W. An, and M. Liu, “Modulating the Coordination Environment of Active Site Structure for Enhanced Electrochemical Nitrogen Reduction: The Mechanistic Insight and an Effective Descriptor,” Applied Surface Science 644 (2024): 158799, https://doi.org/10.1016/j.apsusc.2023.158799. + + + L. Zhang, H. Zhou, and X. Yang, “Boosting Electroreduction Kinetics of Nitrogen to Ammonia via Atomically Dispersed Sn Protuberance,” Angewandte Chemie 135, no. 13 (2023): 202217473, https://doi.org/10.1002/ange.202217473. + + + S. Zhang, Y. Song, and Y. Liu, “Conjugated Coordination Polymers With Well‐Defined Single‐Atom Metal Sites for Efficient Nitrogen Electroreduction to Ammonia,” Advanced Functional Materials 36 (2025): 02874, https://doi.org/10.1002/adfm.202502874. + + + A. L. Golo, C. Kappes, M. A. C. Carvalho, and O. M. Yamashita, “Qualidade Das Sementes de Soja com a Aplicação de Diferentes Doses de Molibdênio e Cobalto,” Revista Brasileira de Sementes 31 (2009): 40–49, https://doi.org/10.1590/S0101‐31222009000100005. + + + B. M. Hoffman, D. Lukoyanov, Z.‐Y. Yang, D. R. Dean, and L. C. Seefeldt, “Mechanism of Nitrogen Fixation by Nitrogenase: The next Stage,” Chemical Reviews 114, no. 8 (2014): 4041–4062, https://doi.org/10.1021/cr400641x. + + + X. Ren, F. Liu, and H. Wu, “Reconstructed Bismuth Oxide Through In Situ Carbonation by Carbonate‐Containing Electrolyte for Highly Active Electrocatalytic CO2 Reduction to Formate,” Angewandte Chemie International Edition 63, no. 9 (2024): 202316640, https://doi.org/10.1002/anie.202316640. + + + Y. Liu, Y. Wang, and H. Li, “Effectiveness of Strain and Dopants on Breaking the Activity‐Stability Trade‐Off of RuO2 Acidic Oxygen Evolution Electrocatalysts,” Nature Communications 16, no. 1 (2025): 1717, https://doi.org/10.1038/s41467‐025‐56638‐8. + + + J. Chen and L. Wang, “Effects of the Catalyst Dynamic Changes and Influence of the Reaction Environment on the Performance of Electrochemical CO2 Reduction,” Advanced Materials 34, no. 25 (2022): 2103900, https://doi.org/10.1002/adma.202103900. + + + K. F. Kalz, R. Kraehnert, and M. Dvoyashkin, “Future Challenges in Heterogeneous Catalysis: Understanding Catalysts Under Dynamic Reaction Conditions,” Chemcatchem 9, no. 1 (2017): 17–29, https://doi.org/10.1002/cctc.201600996. + + + Y. Zhang, J. Xia, and B. Jiang, “REANN: A PyTorch‐Based End‐to‐End Multi‐Functional Deep Neural Network Package for Molecular, Reactive, and Periodic Systems,” Journal of Chemical Physics 156, no. 11 (2022): 114801, https://doi.org/10.1063/5.0080766. + + + Y. Zhang, C. Hu, and B. Jiang, “Embedded Atom Neural Network Potentials: Efficient and Accurate Machine Learning With a Physically Inspired Representation,” The Journal of Physical Chemistry Letters 10, no. 17 (2019): 4962–4967, https://doi.org/10.1021/acs.jpclett.9b02037. + + + Y. Zhang, J. Xia, and B. Jiang, “Physically Motivated Recursively Embedded Atom Neural Networks: Incorporating Local Completeness and Nonlocality,” Physical Review Letters 127, no. 15 (2021): 156002, https://doi.org/10.1103/PhysRevLett.127.156002. + + + G. A. Ross, E. Russell, and Y. Deng, “Enhancing Water Sampling in Free Energy Calculations With Grand Canonical Monte Carlo,” Journal of Chemical Theory and Computation 16, no. 10 (2020): 6061–6076, https://doi.org/10.1021/acs.jctc.0c00660. + + + D. J. Wales and J. P. Doye, “Global Optimization by Basin‐Hopping and the Lowest Energy Structures of Lennard‐Jones Clusters Containing up to 110 Atoms,” The Journal of Physical Chemistry A 101, no. 28 (1997): 5111–5116, https://doi.org/10.1021/jp970984n. + + + M. Liu, Y. Yang, and J. R. Kitchin, “Semi‐Grand Canonical Monte Carlo Simulation of the Acrolein Induced Surface Segregation and Aggregation of AgPd With Machine Learning Surrogate Models,” Journal of Chemical Physics 154, no. 13 (2021): 134701, https://doi.org/10.1063/5.0046440. + + + A. L. Dzubak, L.‐C. Lin, and J. Kim, “Ab Initio Carbon Capture in Open‐Site Metal–Organic Frameworks,” Nature Chemistry 4, no. 10 (2012): 810–816, https://doi.org/10.1038/nchem.1432. + + + V. Fung and D. Jiang, “Exploring Structural Diversity and Fluxionality of Ptn(n = 10–13) Clusters From First‐Principles,” The Journal of Physical Chemistry C 121, no. 20 (2017): 10796–10802, https://doi.org/10.1021/acs.jpcc.6b11968. + + + B. Zandkarimi, G. Sun, and A. Halder, “Interpreting the Operando XANES of Surface‐Supported Subnanometer Clusters: When Fluxionality, Oxidation State, and Size Effect Fight,” The Journal of Physical Chemistry C 124, no. 18 (2020): 10057–10066, https://doi.org/10.1021/acs.jpcc.0c02823. + + + K. Wang, Y. Li, and D. Yang, “Anchoring Ultrafine Ru Nanoparticles Triggers 2H MoS2 Basal Plane for Efficient Dual‐pH Hydrogen Evolution,” Electrochimica Acta 512 (2025): 145485, https://doi.org/10.1016/j.electacta.2024.145485. + + + Y. Wan, Z. Zhang, and X. Xu, “Engineering Active Edge Sites of Fractal‐Shaped Single‐Layer MoS2 Catalysts for High‐Efficiency Hydrogen Evolution,” Nano Energy 51 (2018): 786–792, https://doi.org/10.1016/j.nanoen.2018.02.027. + + + K. A. Persson, B. Waldwick, P. Lazic, and G. Ceder, “Prediction of Solid‐Aqueous Equilibria: Scheme to Combine First‐Principles Calculations of Solids With Experimental Aqueous States,” Physical Review B—Condensed Matter and Materials Physics 85, no. 23 (2012): 235438, https://doi.org/10.1103/PhysRevB.85.235438. + + + Z. Wang, X. Guo, J. Montoya, and J. K. Nørskov, “Predicting Aqueous Stability of Solid With Computed Pourbaix Diagram Using SCAN Functional,” npj Computational Materials 6, no. 1 (2020): 160, https://doi.org/10.1038/s41524‐020‐00430‐3. + + + N. Schubert, M. Schneider, and A. Michealis, “The Mechanism of Anodic Dissolution of Cobalt in Neutral and Alkaline Electrolyte at High Current Density,” Electrochimica Acta 113 (2013): 748–754, https://doi.org/10.1016/j.electacta.2013.06.093. + + + X. Bai, X. Zhao, and Y. Zhang, “Dynamic Stability of Copper Single‐Atom Catalysts Under Working Conditions,” Journal of the American Chemical Society 144, no. 37 (2022): 17140–17148, https://doi.org/10.1021/jacs.2c07178. + + + G. Sun and P. Sautet, “Metastable Structures in Cluster Catalysis From First‐Principles: Structural Ensemble in Reaction Conditions and Metastability Triggered Reactivity,” Journal of the American Chemical Society 140, no. 8 (2018): 2812–2820, https://doi.org/10.1021/jacs.7b11239. + + + P. Poths, S. Vargas, P. Sautet, and A. N. Alexandrova, “Thermodynamic Equilibrium versus Kinetic Trapping: Thermalization of Cluster Catalyst Ensembles Can Extend beyond Reaction Time Scales,” ACS Catalysis 14, no. 7 (2024): 5403–5415, https://doi.org/10.1021/acscatal.3c06154. + + + G. Han, H. Choi, and J. H. Kim, “Enhanced Catalytic Activity on Atomically Dispersed PtSe2 Two‐Dimensional Layers,” Nature Communications 16, no. 1 (2025): 6139, https://doi.org/10.1038/s41467‐025‐61320‐0. + + + Y. Shi, Z.‐R. Ma, and Y.‐Y. Xiao, “Electronic Metal–Support Interaction Modulates Single‐Atom Platinum Catalysis for Hydrogen Evolution Reaction,” Nature Communications 12, no. 1 (2021): 3021, https://doi.org/10.1038/s41467‐021‐23306‐6. + + + S. Islam, F. Khezeli, S. Ringe, and C. Plaisance, “An Implicit Electrolyte Model for Plane Wave Density Functional Theory Exhibiting Nonlinear Response and a Nonlocal Cavity Definition,” Journal of Chemical Physics 159, no. 23 (2023): 234117, https://doi.org/10.1063/5.0176308. + + + K. Mathew, V. Kolluru, S. Mula, S. N. Steinmann, and R. G. Hennig, “Implicit Self‐Consistent Electrolyte Model in Plane‐Wave Density‐Functional Theory,” Journal of Chemical Physics 151, no. 23 (2019): 234101, https://doi.org/10.1063/1.5132354. + + + R. Sundararaman, K. A. Schwarz, K. Letchworth‐Weaver, and T. Arias, “Spicing up Continuum Solvation Models with SaLSA: The Spherically Averaged Liquid Susceptibility Ansatz,” Journal of Chemical Physics 142, no. 5 (2015): 054102, https://doi.org/10.1063/1.4906828. + + + R. Ouyang, S. Curtarolo, E. Ahmetcik, M. Scheffler, and L. M. Ghiringhelli, “SISSO: A Compressed‐Sensing Method for Identifying the Best Low‐Dimensional Descriptor in an Immensity of Offered Candidates,” Physical Review Materials 2, no. 8 (2018): 083802, https://doi.org/10.1103/PhysRevMaterials.2.083802. + + + R. Ouyang, E. Ahmetcik, C. Carbogno, M. Scheffler, and L. M. Ghiringhelli, “Simultaneous Learning of Several Materials Properties From Incomplete Databases With Multi‐Task SISSO,” Journal of Physics: Materials 2, no. 2 (2019): 024002, https://doi.org/10.1088/2515‐7639/ab077b. + + + Q. H. Wang, K. Kalantar‐Zadeh, A. Kis, J. N. Coleman, and M. S. Strano, “Electronics and Optoelectronics of Two‐Dimensional Transition Metal Dichalcogenides,” Nature Nanotechnology 7, no. 11 (2012): 699–712, https://doi.org/10.1038/nnano.2012.193. + + + Z. Li, “Electronic Properties of NBS2 Single Layers,” (phD diss., University of British Columbia, 1984), https://doi.org/10.14288/1.0085230. + + + X. Wang, L. Ma, and C. Wang, “Seed Engineering Toward Layer‐Regulated Growth of Magnetic Semiconductor VS2,” Advanced Functional Materials 33, no. 19 (2023): 2213295, https://doi.org/10.1002/adfm.202213295. + + + J.‐W. Zhao, H.‐Y. Wang, L. Feng, J.‐Z. Zhu, J.‐X. Liu, and W.‐X. Li, “Crystal‐Phase Engineering in Heterogeneous Catalysis,” Chemical Reviews 124, no. 1 (2023): 164–209, https://doi.org/10.1021/acs.chemrev.3c00402. + + + Z. Qian, L. Jiao, and L. Xie, “Phase Engineering of Two‐Dimensional Transition Metal Dichalcogenides,” Chinese Journal of Chemistry 38, no. 7 (2020): 753–760, https://doi.org/10.1002/cjoc.202000064. + + + L. G. Bulusheva, G. I. Semushkina, and A. D. Fedorenko, “Heteroatom‐Doped Molybdenum Disulfide Nanomaterials for Gas Sensors, Alkali Metal‐Ion Batteries and Supercapacitors,” Nanomaterials 13, no. 15 (2023): 2182, https://doi.org/10.3390/nano13152182. + + + G. Liu, P. Liu, and D. Meng, “COx Hydrogenation to Methanol and Other Hydrocarbons Under Mild Conditions With Mo3S4@ZSM‐5,” Nature Communications 14, no. 1 (2023): 513, https://doi.org/10.1038/s41467‐023‐36259‐9. + + + L. Li, M. R. Morrill, and H. Shou, “On the Relationship Between Mo K‐Edge Energies and DFT Computed Partial Charges,” The Journal of Physical Chemistry C 117, no. 6 (2013): 2769–2773, https://doi.org/10.1021/jp309078a. + + + T. J. Ziehl and P. Zhang, “Reliable Element‐Specific D‐Band Analysis of Transition Metal Nanoparticles Using X‐Ray Absorption Spectroscopy,” Journal of Physical Chemistry C 129, no. 25 (2025): 11707–11714, https://doi.org/10.1021/acs.jpcc.5c02020. + + + F. Brette, S. Célérier, and C. Canaff, “XPS Binding Energy Shifts in 2DTi3C2Tz MXene Go Largely Beyond Intuitive Explanations: Rationalization From DFT Simulations and Experiments,” Small Methods 9, no. 1 (2025): 2400848, https://doi.org/10.1002/smtd.202400848. + + + D. R. MacFarlane, J. Choi, and B. H. Suryanto, “Transforming Renewables into Fertilizers and Energy Carriers with Electromaterials,” Advanced Materials 32, no. 18 (2020): 1904804, https://doi.org/10.1002/adma.201904804. + + + J. Choi, H. Lim, and S. Surendran, “Dichalcogenides as Emerging Electrocatalysts for Efficient Ammonia Synthesis: A Focus on Mechanisms and Theoretical Potentials,” Advanced Functional Materials 35 (2025): 2422585, https://doi.org/10.1002/adfm.202422585. + + + F. Sun, K. Yang, X. Qin, W. Wu, and Y. Lu, “Achieving Highly Efficient Electrocatalytic Hydrogen Evolution With Co‐Doped MoS2 Nanosheets,” Nanoscale Horizons 10, no. 6 (2025): 1120–1130, https://doi.org/10.1039/D5NH00111K. + + + G. Kresse and J. Furthmüller, “Efficiency of Ab‐Initio Total Energy Calculations for Metals and Semiconductors Using a Plane‐Wave Basis Set,” Computational Materials Science 6, no. 1 (1996): 15–50, https://doi.org/10.1016/0927‐0256(96)00008‐0. + + + G. Henkelman, B. P. Uberuaga, and H. Jónsson, “A Climbing Image Nudged Elastic Band Method for Finding Saddle Points and Minimum Energy Paths,” The Journal of Chemical Physics 113, no. 22 (2000): 9901–9904, https://doi.org/10.1063/1.1329672. + + + K. Sun, Y. Zhao, H.‐Y. Su, and W.‐X. Li, “Force Reversed Method for Locating Transition States,” Theoretical Chemistry Accounts 131 (2012): 1–10, https://doi.org/10.1007/s00214‐012‐1118‐x. + + + +
+ + + 42216307 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1462-2920 + + 28 + 6 + + 2026 + Jun + + + Environmental microbiology + Environ Microbiol + + Predicting Bacterial Radiation Resistance Through Identifying Novel Genomic Features. + + e70338 + e70338 + + 10.1111/1462-2920.70338 + + Radiation resistance in bacteria is a critical trait with implications for biotechnology, medicine and environmental science. Deinococcus species possess unique genomic features that enable their extraordinary survival in extreme environments. However, the diversity of radiation resistance mechanisms across bacteria remains poorly explored. Here, we analysed the genomic diversity and functional gene repertoire of Deinococcus and extended the analysis to a broader set of radiation-resistant bacteria. We found that highly resistant strains tend to have smaller genomes and harbour more genes positively associated with radiation resistance, highlighting their potential roles in sustaining cellular homeostasis under radiation-induced stress. By integrating machine learning with curated genomic datasets, we identified key resistance-associated gene signatures and developed a predictive tool to quantify bacterial radiation resistance. This study offers new insights into the genomic basis of radiation resistance and provides a practical framework for its assessment in environmental and microbial engineering applications. + © 2026 John Wiley & Sons Ltd. + + + + Liu + Jiayu + J + 0009-0002-9544-6330 + + College of Food Science and Light Industry, Nanjing Tech University, Nanjing, China. + + + College of Chemical and Biological Engineering, Zhejiang University, Hangzhou, China. + + + + Fang + Chao + C + 0009-0002-0121-0280 + + College of Food Science and Light Industry, Nanjing Tech University, Nanjing, China. + + + + Ji + Boyang + B + 0000-0002-7269-4342 + + BioInnovation Institute, Copenhagen, Denmark. + + + + Zhang + Tongrong + T + 0009-0004-0491-3824 + + College of Biotechnology and Pharmaceutical Engineering, Nanjing Tech University, Nanjing, China. + + + + Li + Lin + L + 0009-0009-1849-3003 + + College of Biotechnology and Pharmaceutical Engineering, Nanjing Tech University, Nanjing, China. + + + + Zhu + Liying + L + 0000-0002-2497-1624 + + College of Chemical and Molecular Engineering, Nanjing Tech University, Nanjing, China. + + + + Zhang + Zhidong + Z + 0000-0001-8511-5867 + + Xinjiang Key Laboratory of Special Environmental Microbiology, Institute of Microbiology, Xinjiang Academy of Agricultural Sciences, Urumqi, China. + + + + Zhu + Zhengming + Z + 0000-0002-4177-2416 + + College of Food Science and Light Industry, Nanjing Tech University, Nanjing, China. + + + + Jiang + Ling + L + 0000-0001-6625-5557 + + College of Food Science and Light Industry, Nanjing Tech University, Nanjing, China. + + + State Key Laboratory of Materials-Oriented Chemical Engineering, Nanjing Tech University, Nanjing, China. + + + + eng + + + 32472489 + National Natural Science Foundation of China + + + + 22578212 + National Natural Science Foundation of China + + + + U2106228 + National Natural Science Foundation of China + + + + 2024MD753948 + China Postdoctoral Science Foundation + + + + BK20233003 + Basic Research Program of Jiangsu Province + + + + + Journal Article + +
+ + England + Environ Microbiol + 100883692 + 1462-2912 + + IM + + + Deinococcus + genetics + radiation effects + + + Genome, Bacterial + + + Radiation Tolerance + genetics + + + Genomics + + + + Deinococcus + comparative genomics + genomic features + radiation resistance + +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 4 + 18 + + + 2025 + 11 + 11 + + + 2026 + 5 + 20 + + + 2026 + 5 + 30 + 0 + 53 + + + ppublish + + 42216307 + 10.1111/1462-2920.70338 + + + + Agostini, H. J., J. D. Carroll, and K. W. Minton. 1996. “Identification and Characterization of uvrA, a DNA Repair Gene of Deinococcus radiodurans.” Journal of Bacteriology 178: 6759–6765. + + + Aridhi, S., H. Sghaier, M. Zoghlami, M. Maddouri, and E. M. Nguifo. 2016. “Prediction of Ionizing Radiation Resistance in Bacteria Using a Multiple Instance Learning Model.” Journal of Computational Biology 23: 10–20. + + + Aw, A. 1956. “Studies on a Radio‐Resistant Micrococcus. I. Isolation, Morphology, Cultural Characteristics, and Resistance to Gamma Radiation.” Food Technology 10: 575–578. + + + Basu, B. 2022. “The Radiophiles of Deinococcaceae Family: Resourceful Microbes for Innovative Biotechnological Applications.” Current Research in Microbial Sciences 3: 100153. + + + Battista, J. R. 1997. “Against All Odds: The Survival Strategies of Deinococcus radiodurans.” Annual Review of Microbiology 51: 203–224. + + + Boyle, J. M. 1969. “Radiation‐Sensitive Mutants of T4D. II. T4y: Genetic Characterization.” Mutation Research 8: 441–449. + + + Cantalapiedra, C. P., A. Hernandez‐Plaza, I. Letunic, P. Bork, and J. HUERTA‐Cepas. 2021. “eggNOG‐mapper v2: Functional Annotation, Orthology Assignments, and Domain Prediction at the Metagenomic Scale.” Molecular Biology and Evolution 38: 5825–5829. + + + Chaudhari, N. M., V. K. Gupta, and C. Dutta. 2016. “BPGA—An Ultra‐Fast Pan‐Genome Analysis Pipeline.” Scientific Reports 6: 24373. + + + Cheng, Z., Y. Ke, X. Ding, et al. 2008. “Functional Characterization of TIP60 Sumoylation in UV‐Irradiated DNA Damage Response.” Oncogene 27: 931–941. + + + Cortez, D., G. Neira, C. GONZález, E. Vergara, and D. S. Holmes. 2022. “A Large‐Scale Genome‐Based Survey of Acidophilic Bacteria Suggests That Genome Streamlining Is an Adaption for Life at Low pH.” Frontiers in Microbiology 13: 803241. + + + Daly, M. J., E. K. Gaidamakova, V. Y. Matrosova, et al. 2010. “Small‐Molecule Antioxidant Proteome‐Shields in Deinococcus radiodurans.” PLoS One 5: e12570. + + + Daly, M. J., E. K. Gaidamakova, V. Y. Matrosova, et al. 2004. “Accumulation of Mn(II) in Deinococcus radiodurans Facilitates Gamma‐Radiation Resistance.” Science 306: 1025–1028. + + + Edgar, R. C. 2010. “Search and Clustering Orders of Magnitude Faster Than BLAST.” Bioinformatics 26: 2460–2461. + + + Egas, C., C. Barroso, H. J. Froufe, J. Pacheco, L. Albuquerque, and M. S. DA Costa. 2014. “Complete Genome Sequence of the Radiation‐Resistant Bacterium Rubrobacter radiotolerans RSPS‐4.” Standards in Genomic Sciences 9: 1062–1075. + + + Evans, D. M., and B. Moseley. 1983. “Roles of the uvsC, uvsD, uvsE, and mtcA Genes in the Two Pyrimidine Dimer Excision Repair Pathways of Deinococcus radiodurans.” Journal of Bacteriology 156: 576–583. + + + Gabani, P., and O. V. Singh. 2013. “Radiation‐Resistant Extremophiles and Their Potential in Biotechnology and Therapeutics.” Applied and Environmental Microbiology 97: 993–1004. + + + Ghosal, D., M. V. Omelchenko, E. K. Gaidamakova, et al. 2005. “How Radiation Kills Cells: Survival of Deinococcus radiodurans and Shewanella oneidensis Under Oxidative Stress.” FEMS Microbiology Reviews 29: 361–375. + + + Jeong, S. W., and Y. J. Choi. 2020. “Extremophilic Microorganisms for the Treatment of Toxic Pollutants in the Environment.” Molecules 25: 4916. + + + Jha, P. 2014. “Microbes Thriving in Extreme Enviroments: How Do They Do It?” International Journal of Applied Sciences and Biotechnology 2: 393–401. + + + Jiao, J., M. Ni, B. Zhang, et al. 2018. “Coordinated Regulation of Core and Accessory Genes in the Multipartite Genome of Sinorhizobium fredii.” PLoS Genetics 14: e1007428. + + + Jin, M., A. Xiao, L. Zhu, Z. Zhang, H. Huang, and L. Jiang. 2019. “The Diversity and Commonalities of the Radiation‐Resistance Mechanisms of Deinococcus and Its Up‐To‐Date Applications.” AMB Express 9: 138. + + + Karcagi, I., G. Draskovits, K. Umenhoffer, et al. 2016. “Indispensability of Horizontally Transferred Genes and Its Impact on Bacterial Genome Streamlining.” Molecular Biology and Evolution 33: 1257–1269. + + + Levin‐Zaidman, S., J. Englander, E. Shimoni, A. K. Sharma, K. W. Minton, and A. Minsky. 2003. “Ringlike Structure of the Deinococcus radiodurans Genome: A Key to Radioresistance?” Science 299: 254–256. + + + Lim, S., J. H. Jung, L. Blanchard, and A. de Groot. 2019. “Conservation and Diversity of Radiation and Oxidative Stress Resistance Mechanisms in Deinococcus Species.” FEMS Microbiology Reviews 43: 19–52. + + + Liu, Z. 2023. “Antioxidant Activity of the Thioredoxin System.” Biophysics Reports 9: 26–32. + + + Lu, H., G. Gao, G. Xu, et al. 2009. “Deinococcus radiodurans PprI Switches on DNA Damage Response and Cellular Survival Networks After Radiation Damage.” Molecular & Cellular Proteomics 8: 481–494. + + + Makharashvili, N., O. Koroleva, S. Bera, D. P. Grandgenett, and S. Korolev. 2004. “A Novel Structure of DNA Repair Protein RecO From Deinococcus radiodurans.” Structure 12: 1881–1889. + + + Mao, Y., Y. Yang, F. Lin, et al. 2024. “Functional Analysis of Stress Resistance of Bacillus cereus SCL10 Strain Based on Whole‐Genome Sequencing.” Microorganisms 12: 1168. + + + Minton, K. W. 1994. “DNA Repair in the Extremely Radioresistant Bacterium Deinococcus radiodurans.” Molecular Microbiology 13: 9–15. + + + Nayak, T., I. Sengupta, and P. K. Dhal. 2021. “A New Era of Radiation Resistance Bacteria in Bioremediation and Production of Bioactive Compounds With Therapeutic Potential and Other Aspects: An In‐Perspective Review.” Journal of Environmental Radioactivity 237: 106696. + + + Pal, S., R. Yuvaraj, H. Krishnan, B. Venkatraman, J. Abraham, and A. Gopinathan. 2024. “Unraveling Radiation Resistance Strategies in Two Bacterial Strains From the High Background Radiation Area of Chavara‐Neendakara: A Comprehensive Whole Genome Analysis.” PLoS One 19: e0304810. + + + Pontarp, M., J. SJöstedt, and P. Lundberg. 2013. “Experimentally Induced Habitat Filtering in Marine Bacterial Communities.” Marine Ecology Progress Series 477: 77–86. + + + Qi, H. Z., W. Z. Wang, J. Y. He, Y. Ma, F. Z. Xiao, and S. Y. He. 2020. “Antioxidative System of Deinococcus radiodurans.” Research in Microbiology 171: 45–54. + + + Ramoneda, J., M. Hoffert, E. Stallard‐Olivera, E. O. Casamayor, and N. Fierer. 2024. “Leveraging Genomic Information to Predict Environmental Preferences of Bacteria.” ISME Journal 18: wrae195. + + + Ramoneda, J., E. Stallard‐Olivera, M. Hoffert, et al. 2023. “Building a Genome‐Based Understanding of Bacterial pH Preferences.” Science Advances 9: eadf8998. + + + Ree, A. H., A. Bratland, R. V. Nome, T. Stokke, and O. Fodstad. 2003. “Repression of mRNA for the PLK Cell Cycle Gene After DNA Damage Requires BRCA1.” Oncogene 22: 8952–8955. + + + Repar, J., S. Cvjetan, D. Slade, M. Radman, D. Zahradka, and K. Zahradka. 2010. “RecA Protein Assures Fidelity of DNA Repair and Genome Stability in Deinococcus radiodurans.” DNA Repair 9: 1151–1161. + + + Romanovskaya, V., P. Rokitko, A. Mikheev, N. Gushcha, Y. R. Malashenko, and N. Chernaya. 2002. “The Effect of γ‐Radiation and Desiccation on the Viability of the Soil Bacteria Isolated From the Alienated Zone Around the Chernobyl Nuclear Power Plant.” Microbiology 71: 608–613. + + + Sabath, N., E. Ferrada, A. Barve, and A. Wagner. 2013. “Growth Temperature and Genome Size in Bacteria Are Negatively Correlated, Suggesting Genomic Streamlining During Thermal Adaptation.” Genome Biology and Evolution 5: 966–977. + + + Sashida, G., N. Bae, S. DI Giandomenico, et al. 2011. “The MEF/ELF4 Transcription Factor Fine Tunes the DNA Damage Response.” Cancer Research 71: 4857–4865. + + + Seemann, T. 2014. “Prokka: Rapid Prokaryotic Genome Annotation.” Bioinformatics 30: 2068–2069. + + + Simonsen, A. K. 2022. “Environmental Stress Leads to Genome Streamlining in a Widely Distributed Species of Soil Bacteria.” ISME Journal 16: 423–434. + + + Slade, D., and M. Radman. 2011. “Oxidative Stress Resistance in Deinococcus radiodurans.” Microbiology and Molecular Biology Reviews 75: 133–191. + + + Stelzer, C. P., M. Pichler, and P. Stadler. 2023. “Genome Streamlining and Clonal Erosion in Nutrient‐Limited Environments: A Test Using Genome‐Size Variable Populations.” Evolution 77: 2378–2391. + + + Tanaka, M., I. Narumi, T. Funayama, et al. 2005. “Characterization of Pathways Dependent on the uvsE, uvrA1, or uvrA2 Gene Product for UV Resistance in Deinococcus radiodurans.” Journal of Bacteriology 187: 3693–3697. + + + Tettelin, H., D. Riley, C. Cattuto, and D. Medini. 2008. “Comparative Genomics: The Bacterial Pan‐Genome.” Current Opinion in Microbiology 11: 472–477. + + + Timmins, J., and E. Moe. 2016. “A Decade of Biochemical and Structural Studies of the DNA Repair Machinery of Deinococcus radiodurans: Major Findings, Functional and Mechanistic Insight and Challenges.” Computational and Structural Biotechnology Journal 14: 168–176. + + + Torres‐Roca, J. F., S. Eschrich, H. Zhao, et al. 2005. “Prediction of Radiation Sensitivity Using a Gene Expression Classifier.” Cancer Research 65: 7169–7176. + + + Vyas, P., P. Rahi, and A. Gulati. 2009. “Stress Tolerance and Genetic Variability of Phosphate‐Solubilizing Fluorescent Pseudomonas From the Cold Deserts of the Trans‐Himalayas.” Microbial Ecology 58: 425–434. + + + Weiser, R., A. E. Green, M. J. Bull, et al. 2019. “Not All Pseudomonas aeruginosa Are Equal: Strains From Industrial Sources Possess Uniquely Large Multireplicon Genomes.” Microbial Genomics 5: e000276. + + + Zhu, H., and Q. He. 2024. “Healthful Nutrition as a Prevention and Intervention Paradigm to Promote Radiation Resistance and Human Health.” Food Frontiers 5: 223–224. + + + +
+ + + 42216302 + + 2026 + 05 + 30 + +
+ + 1563-5279 + + + 2026 + May + 29 + + + The International journal of neuroscience + Int J Neurosci + + Proteomic and transcriptomic analyses identify the role of RBM25 in the malignant progression of glioma. + + 1 + 16 + 1-16 + + 10.1080/00207454.2026.2681886 + + Glioma is a primary tumor derived from central nervous system glial cells. RNA binding motif protein 25 (RBM25) has been implicated in glioma progression, yet its underlying molecular mechanism remains incompletely understood. In this study, glioma-related datasets were retrieved from the Proteomic Data Commons (PDC) and Gene Expression Omnibus (GEO) databases. Core glioma-associated targets were screened using machine learning algorithms. Protein expression was assessed by Western blot, while migration, and invasion, cell cycle and apoptosis were analyzed by Transwell assay and flow cytometry. Chromatin immunoprecipitation (ChIP) and dual-luciferase reporter assays were used to validate the interaction between transcription factors and genes. Proteomic analysis revealed distinct differences between glioma and control groups, with differentially expressed proteins mainly enriched in mitochondrial energy metabolism, synaptic function, and neurodegenerative disease pathways. Transcriptomic profiles also exhibited significant alterations, with RBM25 and HSPA8 showing consistent changes at both protein and RNA levels. Multiple machine learning models identified RBM25, NKTR, MAP2K6, TRAPPC3, and HSPA8 as key genes associated with glioma, with RBM25 and NKTR showing strong relevance in model-based feature selection. RBM25 was upregulated in glioma and linked to neuronal signaling pathways, whereas HSPA8 and TRAPPC3 were downregulated. RBM25 knockdown suppressed glioma cell proliferation, migration, and invasion, and induced cell cycle arrest and apoptosis. In conclusion, RBM25 contributes to glioma malignancy and may serve as a potential biomarker and therapeutic target for glioma. + + + + Xu + Xiangdi + X + + Department of Neurosurgery, Xingtai People's Hospital, Xingtai, China. + + + + Wang + Jiahao + J + + Department of Neurosurgery, Xingtai People's Hospital, Xingtai, China. + + + + Xue + Mingming + M + + Department of Neurosurgery, Xingtai People's Hospital, Xingtai, China. + + + + Feng + Longkai + L + + Department of Neurosurgery, Xingtai People's Hospital, Xingtai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Int J Neurosci + 0270707 + 0020-7454 + + IM + + Glioma + Machine learning + Proteomic + RNA binding motif protein 25 + Transcriptomics + +
+ + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 5 + 30 + 0 + 52 + + + aheadofprint + + 42216302 + 10.1080/00207454.2026.2681886 + + +
+ + + 42216239 + + 2026 + 05 + 30 + + + 2026 + 05 + 30 + +
+ + 1582-4934 + + 30 + 11 + + 2026 + Jun + + + Journal of cellular and molecular medicine + J Cell Mol Med + + Integration of Transcriptomics With Interpretable Artificial Intelligence for Identifying Molecular Signatures of Physiological Stress in Sleep Deprivation. + + e71211 + e71211 + + 10.1111/jcmm.71211 + + Sleep deprivation induces systemic physiological stress accompanied by transcriptomic remodelling and immune dysregulation, yet objective molecular indicators for its assessment remain insufficient. This study integrated blood transcriptomic analysis with an interpretable machine learning framework to identify and validate candidate molecular signatures associated with sleep deprivation and their potential relevance to insomnia. Publicly available Gene Expression Omnibus datasets were used to construct an acute sleep deprivation training cohort, an independent sleep deprivation validation cohort, and a chronic insomnia validation cohort. Differentially expressed genes were first identified, followed by feature selection using six machine learning algorithms and Shapley additive explanations to improve model interpretability. Immune cell composition was inferred using CIBERSORT, and associations between candidate genes and immune cell subsets were further evaluated. Twenty-five differentially expressed genes were identified in the training cohort, from which eight high-priority candidate genes were selected by the interpretable machine learning framework. Among them, S100A3 showed consistent discriminatory performance across the training cohort, the independent sleep deprivation cohort, and the insomnia cohort, whereas VEGFB exhibited notable diagnostic potential, particularly in insomnia. Immune infiltration analysis indicated that sleep deprivation was associated with altered peripheral immune composition, including reduced resting natural killer cells and activated dendritic cells, together with changes in regulatory and naïve immune cell populations. Expression levels of S100A3 and VEGFB were significantly correlated with specific immune cell subsets, suggesting a link between these molecular signatures and stress-related immunomodulation. These findings identify S100A3 as a robust candidate biomarker shared by acute sleep deprivation and chronic insomnia, while VEGFB may reflect chronic metabolic or inflammatory adaptation. The proposed interpretable transcriptomic-machine learning framework provides a non-invasive strategy for discovering molecular indicators of sleep-related physiological stress and may support future risk stratification in sleep medicine. + © 2026 The Author(s). Journal of Cellular and Molecular Medicine published by Foundation for Cellular and Molecular Medicine and John Wiley & Sons Ltd. + + + + Wang + Kun + K + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + + Zong + Qiang + Q + + Department of Neurology, West China Hospital, Sichuan University, Chengdu, Sichuan, China. + + + + Wang + Chengcheng + C + + Department of Public Health and Health Management, Clinical College of, Anhui Medical University, Hefei, Anhui, China. + + + + Wang + Peng + P + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + + Shuai + Zhenhao + Z + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + Department of Computer Science and Technology, Xiamen University, Xiamen, Fujian, China. + + + + Wu + Min + M + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + + Peng + Yuming + Y + + Department of Geriatrics, Central Hospital of Karamay, Xinjiang, China. + + + + Zhou + Junying + J + 0000-0001-5060-3879 + + Sleep Medicine Centre, West China Hospital, Sichuan University, Chengdu, Sichuan, China. + + + + Shuai + Jianwei + J + 0000-0002-8712-0544 + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + + Ye + Fangfu + F + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + + Wu + Aimin + A + 0000-0002-8582-4599 + + Department of Orthopaedics, Key Laboratory of Orthopaedics of Zhejiang Province, The Second Affiliated Hospital and Yuying Children's Hospital of Wenzhou Medical University, Wenzhou, China. + + + + Zheng + Yanyan + Y + + The Wenzhou Third Clinical Institute Affiliated, Wenzhou Medical University, Oujiang Laboratory (Zhejiang Lab for Regenerative Medicine, Vision and Brain Health), Wenzhou Institute UCAS, Wenzhou, Zhejiang, China. + + + + eng + + + U24A2014 + National Natural Science Foundation of China + + + + LTGY23H090014 + Natural Science Foundation of Zhejiang Province + + + + 2020YFC2005605 + National Key Research and Development Program of China + + + + TSYC202301A076 + Xinjiang Tianshan Talents Project + + + + 2021E02080 + Xinjiang Regional Collaborative Innovation Project + + + + STI2030-Major Projects2021ZD0201900 + Ministry of Science and Technology of the People's Republic of China + + + + 2025HY1108 + General Project of Zhejiang Provincial Health Science and Technology Plan (Wenzhou) + + + + ZY2022024 + Major Science and Technology Project of Wenzhou Municipal Science and Technology Bureau + + + + + Journal Article + +
+ + England + J Cell Mol Med + 101083777 + 1582-1838 + + + + 0 + Biomarkers + + + IM + + + Sleep Deprivation + genetics + + + Humans + + + Stress, Physiological + genetics + + + Gene Expression Profiling + methods + + + Transcriptome + genetics + + + Artificial Intelligence + + + Machine Learning + + + Sleep Initiation and Maintenance Disorders + genetics + + + Biomarkers + + + + S100A3 + feature genes + immune infiltration + machine learning + sleep deprivation + +
+ + + + 2026 + 5 + 30 + 6 + 37 + + + 2026 + 5 + 30 + 6 + 36 + + + 2026 + 4 + 27 + + + 2026 + 3 + 12 + + + 2026 + 5 + 11 + + + 2026 + 5 + 30 + 0 + 2 + + + ppublish + + 42216239 + 10.1111/jcmm.71211 + + + + A. D. Laposky, E. Van Cauter, and A. V. Diez‐Roux, “Reducing Health Disparities: The Role of Sleep Deficiency and Sleep Disorders,” Sleep Medicine 18 (2016): 3–6, https://doi.org/10.1016/j.sleep.2015.01.007. + + + D. Riemann and U. Voderholzer, “Primary Insomnia: A Risk Factor to Develop Depression?,” Journal of Affective Disorders 76, no. 1–3 (2003): 255–259, https://doi.org/10.1016/s0165‐0327(02)00072‐1. + + + G. A. Kerkhof, “Epidemiology of Sleep and Sleep Disorders in The Netherlands,” Sleep Medicine 30 (2017): 229–239, https://doi.org/10.1016/j.sleep.2016.09.015. + + + Y. Pan, Y. Zhou, X. Shi, S. He, and W. Lai, “The Association Between Sleep Deprivation and the Risk of Cardiovascular Diseases: A Systematic Meta‐Analysis,” Biomedical Reports 19, no. 5 (2023): 78, https://doi.org/10.3892/br.2023.1660. + + + N. Hirokawa, Y. Noda, Y. Tanaka, and S. Niwa, “Kinesin Superfamily Motor Proteins and Intracellular Transport,” Nature Reviews. Molecular Cell Biology 10, no. 10 (2009): 682–696, https://doi.org/10.1038/nrm2774. + + + C. Benedict, M. Hallschmid, A. Lassen, et al., “Acute Sleep Deprivation Reduces Energy Expenditure in Healthy Men,” American Journal of Clinical Nutrition 93, no. 6 (2011): 1229–1236, https://doi.org/10.3945/ajcn.110.006460. + + + H. Liu and A. Chen, “Roles of Sleep Deprivation in Cardiovascular Dysfunctions,” Life Sciences 219 (2019): 231–237, https://doi.org/10.1016/j.lfs.2019.01.006. + + + Y. Wang, H. Mei, Y. R. Jiang, et al., “Relationship Between Duration of Sleep and Hypertension in Adults: A Meta‐Analysis,” Journal of Clinical Sleep Medicine 11, no. 9 (2015): 1047–1056, https://doi.org/10.5664/jcsm.5024. + + + R. A. Bernert, C. L. Turvey, Y. Conwell, and T. E. Joiner, Jr., “Association of Poor Subjective Sleep Quality With Risk for Death by Suicide During a 10‐Year Period: A Longitudinal, Population‐Based Study of Late Life,” JAMA Psychiatry 71, no. 10 (2014): 1129–1137, https://doi.org/10.1001/jamapsychiatry.2014.1126. + + + C. R. Newbury, R. Crowley, K. Rastle, and J. Tamminen, “Sleep Deprivation and Memory: Meta‐Analytic Reviews of Studies on Sleep Deprivation Before and After Learning,” Psychological Bulletin 147, no. 11 (2021): 1215–1240, https://doi.org/10.1037/bul0000348. + + + S. Garbarino, P. Lanteri, N. L. Bragazzi, N. Magnavita, and E. Scoditti, “Role of Sleep Deprivation in Immune‐Related Disease Risk and Outcomes,” Communications Biology 4, no. 1 (2021): 1304, https://doi.org/10.1038/s42003‐021‐02825‐4. + + + K. Wulff, S. Gatti, J. G. Wettstein, and R. G. Foster, “Sleep and Circadian Rhythm Disruption in Psychiatric and Neurodegenerative Disease,” Nature Reviews. Neuroscience 11, no. 8 (2010): 589–599, https://doi.org/10.1038/nrn2868. + + + L. Besedovsky, T. Lange, and M. Haack, “The Sleep‐Immune Crosstalk in Health and Disease,” Physiological Reviews 99, no. 3 (2019): 1325–1380, https://doi.org/10.1152/physrev.00010.2018. + + + N. Goel, ““Omics” Approaches for Sleep and Circadian Rhythm Research: Biomarkers for Identifying Differential Vulnerability to Sleep Loss,” Current Sleep Medicine Reports 1, no. 1 (2015): 38–46, https://doi.org/10.1007/s40675‐014‐0003‐7. + + + W. Wu, X. Yang, C. Yao, O. Liu, Q. Zhao, and J. Shuai, “E‐SegNet: E‐Shaped Structure Networks for Accurate 2D and 3D Medical Image Segmentation,” Research 8 (2025): 869, https://doi.org/10.34133/research.0869. + + + R. Wang, F. Chen, H. Chen, et al., “Deep Learning in Digital Breast Tomosynthesis: Current Status, Challenges, and Future Trends,” Medical Communications 6, no. 6 (2025): e70247, https://doi.org/10.1002/mco2.70247. + + + X. Yang, Y. Wang, Y. Lin, et al., “A Multi‐Task Self‐Supervised Strategy for Predicting Molecular Properties and FGFR1 Inhibitors,” Advanced Science (Weinheim, Baden‐Württemberg, Germany) 12, no. 13 (2025): e2412987, https://doi.org/10.1002/advs.202412987. + + + Z. Liu, H. Lin, X. Li, et al., “The Network Structural Entropy for Single‐Cell RNA Sequencing Data During Skin Aging,” Briefings in Bioinformatics 26, no. 1 (2024): bbae698, https://doi.org/10.1093/bib/bbae698. + + + R. Liu, Z. Wang, T. Han, L. Shao, and Q. Zhao, “HetGAT‐LMI: Interpretable Heterogeneous Graph Attention Method for Predicting lncRNA‐miRNA Interactions,” Journal of Chemical Information and Modeling 66, no. 1 (2026): 796–807, https://doi.org/10.1021/acs.jcim.5c02664. + + + Z. Pan, X. Yang, C. Wang, T. Han, and Q. Zhao, “Multimodal Feature Fusion for Bone Toxicity Prediction and Local Platform,” Journal of Chemical Information and Modeling 65, no. 23 (2025): 12799–12810, https://doi.org/10.1021/acs.jcim.5c02280. + + + T. Han, Z. Pan, W. Ge, and Q. Zhao, “Multimodal Multi‐Granularity Fusion Model With Mamba Architecture for Ames Mutagenicity Prediction,” Journal of Medicinal Chemistry 69, no. 2 (2026): 1766–1778, https://doi.org/10.1021/acs.jmedchem.5c03551. + + + W. Y. Zhang, Z. H. Chen, X. X. An, et al., “Analysis and Validation of Diagnostic Biomarkers and Immune Cell Infiltration Characteristics in Pediatric Sepsis by Integrating Bioinformatics and Machine Learning,” World Journal of Pediatrics: WJP 19, no. 11 (2023): 1094–1103, https://doi.org/10.1007/s12519‐023‐00717‐7. + + + K. Wang, L. Zhang, L. Li, et al., “Identification of Drug‐Induced Liver Injury Biomarkers From Multiple Microarrays Based on Machine Learning and Bioinformatics Analysis,” International Journal of Molecular Sciences 23, no. 19 (2022): 11945, https://doi.org/10.3390/ijms231911945. + + + J. Zhu, L. D. Sanford, R. Ren, Y. Zhang, and X. Tang, “Multiple Machine Learning Methods Reveal Key Biomarkers of Obstructive Sleep Apnea and Continuous Positive Airway Pressure Treatment,” Frontiers in Genetics 13 (2022): 927545, https://doi.org/10.3389/fgene.2022.927545. + + + L. Palagini, P. A. Geoffroy, M. Miniati, et al., “Insomnia, Sleep Loss, and Circadian Sleep Disturbances in Mood Disorders: A Pathway Toward Neurodegeneration and Neuroprogression?,” A Theoretical Review. CNS Spectr 27, no. 3 (2022): 298–308, https://doi.org/10.1017/S1092852921000018. + + + H. A. Uyhelji, D. M. Kupfer, V. L. White, M. L. Jackson, H. P. A. Van Dongen, and D. M. Burian, “Exploring Gene Expression Biomarker Candidates for Neurobehavioral Impairment From Total Sleep Deprivation,” BMC Genomics 19, no. 1 (2018): 341, https://doi.org/10.1186/s12864‐018‐4664‐3. + + + R. Pellegrino, D. Y. Sunaga, C. Guindalini, et al., “Whole Blood Genome‐Wide Gene Expression Profile in Males After Prolonged Wakefulness and Sleep Recovery,” Physiological Genomics 44, no. 21 (2012): 1003–1012, https://doi.org/10.1152/physiolgenomics.00058.2012. + + + E. S. Arnardottir, E. V. Nikonova, K. R. Shockley, et al., “Blood‐Gene Expression Reveals Reduced Circadian Rhythmicity in Individuals Resistant to Sleep Deprivation,” Sleep 37, no. 10 (2014): 1589–1600, https://doi.org/10.5665/sleep.4064. + + + D. Piber, J. H. Cho, O. Lee, D. M. Lamkin, R. Olmstead, and M. R. Irwin, “Sleep Disturbance and Activation of Cellular and Transcriptional Mechanisms of Inflammation in Older Adults,” Brain, Behavior, and Immunity 106 (2022): 67–75, https://doi.org/10.1016/j.bbi.2022.08.004. + + + S. N. Archer, E. E. Laing, C. S. Möller‐Levet, et al., “Mistimed Sleep Disrupts Circadian Regulation of the Human Transcriptome,” Proceedings of the National Academy of Sciences of the United States of America 111, no. 6 (2014): E682–E691, https://doi.org/10.1073/pnas.1316335111. + + + M. García‐Domínguez, “Relationship of S100 Proteins With Neuroinflammation,” Biomolecules 15, no. 8 (2025): 1125, https://doi.org/10.3390/biom15081125. + + + C. Xia, Z. Braunstein, A. C. Toomey, J. Zhong, and X. Rao, “S100 Proteins as an Important Regulator of Macrophage Inflammation,” Frontiers in Immunology 8 (2018): 1908, https://doi.org/10.3389/fimmu.2017.01908. + + + A. Mehlem, I. Palombo, X. Wang, C. E. Hagberg, U. Eriksson, and A. Falkevall, “PGC‐1α Coordinates Mitochondrial Respiratory Capacity and Muscular Fatty Acid Uptake via Regulation of VEGF‐B,” Diabetes 65, no. 4 (2016): 861–873, https://doi.org/10.2337/db15‐1231. + + + E. R. Mahoney, L. Dumitrescu, A. M. Moore, et al., “Brain Expression of the Vascular Endothelial Growth Factor Gene Family in Cognitive Aging and Alzheimer's Disease,” Molecular Psychiatry 26, no. 3 (2021): 888–896, https://doi.org/10.1038/s41380‐019‐0458‐5. + + + C. Münz, T. Dao, G. Ferlazzo, M. A. de Cos, K. Goodman, and J. W. Young, “Mature Myeloid Dendritic Cell Subsets Have Distinct Roles for Activation and Viability of Circulating Human Natural Killer Cells,” Blood 105, no. 1 (2005): 266–273, https://doi.org/10.1182/blood‐2004‐06‐2492. + + + P. Poženel, K. Zajc, and U. Švajger, “Factor of Time in Dendritic Cell (DC) Maturation: Short‐Term Activation of DCs Significantly Improves Type 1 Cytokine Production and T Cell Responses,” Journal of Translational Medicine 22, no. 1 (2024): 541, https://doi.org/10.1186/s12967‐024‐05368‐4. + + + B. H. De Lorenzo, L. de Oliveira Marchioro, C. R. Greco, and D. Suchecki, “Sleep‐Deprivation Reduces NK Cell Number and Function Mediated by β‐Adrenergic Signalling,” Psychoneuroendocrinology 57 (2015): 134–143, https://doi.org/10.1016/j.psyneuen.2015.04.006. + + + M. Miyara and S. Sakaguchi, “Natural Regulatory T Cells: Mechanisms of Suppression,” Trends in Molecular Medicine 13, no. 3 (2007): 108–116, https://doi.org/10.1016/j.molmed.2007.01.003. + + + T. Bollinger, A. Bollinger, L. Skrum, S. Dimitrov, T. Lange, and W. Solbach, “Sleep‐Dependent Activity of T Cells and Regulatory T Cells,” Clinical and Experimental Immunology 155, no. 2 (2009): 231–238, https://doi.org/10.1111/j.1365‐2249.2008.03822.x. + + + C. S. Möller‐Levet, S. N. Archer, G. Bucca, et al., “Effects of Insufficient Sleep on Circadian Rhythmicity and Expression Amplitude of the Human Blood Transcriptome,” Proceedings of the National Academy of Sciences of the United States of America 110, no. 12 (2013): E1132–E1141, https://doi.org/10.1073/pnas.1217154110. + + + Y. Vanrobaeys, Z. J. Peterson, E. N. Walsh, et al., “Spatial Transcriptomics Reveals Unique Gene Expression Changes in Different Brain Regions After Sleep Deprivation,” Nature Communications 14, no. 1 (2023): 7095, https://doi.org/10.1038/s41467‐023‐42751‐z. + + + P. Chuchana, P. Holzmuller, F. Vezilier, et al., “Intertwining Threshold Settings, Biological Data and Database Knowledge to Optimize the Selection of Differentially Expressed Genes From Microarray,” PLoS One 5, no. 10 (2010): e13518, https://doi.org/10.1371/journal.pone.0013518. + + + M. R. Zielinski and A. J. Gibbons, “Neuroinflammation, Sleep, and Circadian Rhythms,” Frontiers in Cellular and Infection Microbiology 12 (2022): 853096, https://doi.org/10.3389/fcimb.2022.853096. + + + D. W. Chen, J. Wang, L. L. Zhang, Y. J. Wang, and C. Y. Gao, “Cerebrospinal Fluid Amyloid‐β Levels Are Increased in Patients With Insomnia,” Journal of Alzheimer's Disease: JAD 61, no. 2 (2018): 645–651, https://doi.org/10.3233/JAD‐170032. + + + T. R. F. Green, J. B. Ortiz, S. Wonnacott, R. J. Williams, and R. K. Rowe, “The Bidirectional Relationship Between Sleep and Inflammation Links Traumatic Brain Injury and Alzheimer's Disease,” Frontiers in Neuroscience 14 (2020): 894, https://doi.org/10.3389/fnins.2020.00894. + + + M. J. Peters, R. Joehanes, L. C. Pilling, et al., “The Transcriptional Landscape of Age in Human Peripheral Blood,” Nature Communications 6 (2015): 8570, https://doi.org/10.1038/ncomms9570. + + + +
+ + + 42216193 + + 2026 + 05 + 29 + +
+ + 1742-4755 + + + 2026 + May + 29 + + + Reproductive health + Reprod Health + + Predicting short birth intervals in Bangladesh using stacked machine learning and SHAP explainability: evidence from BDHS 2022. + 10.1186/s12978-026-02367-0 + + Short birth interval (SBI) is a major public health concern, associated with adverse outcomes such as preterm birth, low birth weight, and maternal depletion. Identifying its influential predictors is essential for improving family planning and maternal health interventions. The study aimed to predict SBI and identify its influential predictors using stacked machine learning and SHAP explainability. + This study used data, obtained from the Bangladesh Demographic and Health Survey (BDHS), 2022. The dataset comprised 11,872 respondents, of whom 2,137 experienced SBI (18.0%). Class imbalance problem was addressed by applying class weighting during model training. Boruta and least absolute shrinkage and selection operator-based methods were applied to identify the most important predictors of SBI. Subsequently, multiple machine learning models (including logistic regression, random forest, extreme gradient boosting, categorical boosting, artificial neural network, and stacking ensemble) were used to predict SBI and evaluated their model performances using accuracy, precision, sensitivity, F1-score, and the area under the curve (AUC). Finally, SHAP explainability were employed to identify the most influential predictors of SBI. + The stacking ensemble model achieved the highest predictive performance compared to the individual models, with an accuracy of 65.8%, precision of 42.6%, sensitivity of 72.3%, F1-score of 53.6%, and modest AUC of approximately 0.667. The SHAP analysis showed that no educated respondents, higher parity, and do not intend to use contraceptive method were the most influential predictors of SBI. + Interventions could therefore focus on improving female education, expanding access to contraceptives, and promoting awareness of optimal birth spacing. Policymakers may incorporate SHAP explainability to support data-driven reproductive health strategies to reduce SBI in Bangladesh. + © 2026. The Author(s). + + + + Mia + Mostakim + M + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Akter + Shanti + S + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Sraboni + Takyeatun Nesa + TN + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Islam + Md Merajul + MM + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Tawabunnahar + Mst + M + + Department of Statistics, Jatiya Kabi Kazi Nazrul Islam University, Trishal, Mymensingh, 2224, Bangladesh. + + + + Maniruzamman + Md + M + + Statistics Discipline, Khulna University, Khulna, 9208, Bangladesh. + + + + Hossain + Md Golam + MG + + Health Research Group, Department of Statistics, University of Rajshahi, Rajshahi, 6205, Bangladesh. hossain95@yahoo.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Reprod Health + 101224380 + 1742-4755 + + IM + + Birth Spacing + Family Planning + Maternal and Child health + Model Interpretability + Predictive Modeling + + Declarations. Ethics approval and consent to participate: The survey was conducted in accordance with the Declaration of Helsinki, and the protocol for the 2022 BDHS received ethical clearance from both the ICF Institutional Review Board ethics committee and the Bangladesh Medical Research Council (BMRC). Informed written consent was obtained from each participant before commencement of the interview. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. Conflict of interest: The authors declare that they have no competing interests. +
+ + + + 2025 + 10 + 14 + + + 2026 + 5 + 19 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 45 + + + aheadofprint + + 42216193 + 10.1186/s12978-026-02367-0 + 10.1186/s12978-026-02367-0 + + +
+ + + 42216185 + + 2026 + 05 + 29 + +
+ + 1758-2946 + + + 2026 + May + 29 + + + Journal of cheminformatics + J Cheminform + + Towards the design of artificial sensing materials via quantum-informed explainable AI. + 10.1186/s13321-026-01232-3 + + Computational design of sensing materials remains fundamentally challenging due to the vast configurational landscape and the absence of robust property correlations that enable efficient molecular representation. These challenges become particularly critical in healthcare applications, where reliable and interpretable molecular recognition is essential for non-invasive diagnostics. To address these challenges, we developed MORE-ML, a quantum-informed AI framework that combines electronic-structure-derived properties of e-nose molecular building blocks with machine learning (ML) methods to uncover sensing mechanisms and guide the design of new systems. Within this framework, we expanded our previous dataset, MORE-Q, to MORE-QX by sampling a larger conformational space of interactions between body odor volatilomes (BOV) molecules and mucin-derived receptors, both in the gas phase and when deposited on graphene. MORE-QX provides extensive electronic binding features (BFs) computed upon BOV adsorption. Analysis of the property space revealed weak correlations between quantum-mechanical (QM) properties of building blocks and resulting BFs. Leveraging this observation, we defined electronic descriptors of building blocks as inputs for tree-based ML models to predict BFs. Benchmarking showed CatBoost models outperform alternatives, especially in transferability to unseen compounds. Through explainable AI, we reduced the high-dimensional QM property space to a compact and physically interpretable set of descriptors, revealing the properties that most influence BF predictions. Collectively, MORE-ML combines QM insights with ML to provide mechanistic understanding and rational design principles for artificial sensing materials in BOV sensing. This approach establishes a foundation for advancing materials capable of analyzing complex odor mixtures, bridging the gap between molecular-level computations and practical e-nose applications. + © 2026. The Author(s). + + + + Chen + Li + L + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. + + + + Medrano Sandonas + Leonardo + L + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. leonardo.medrano@tu-dresden.de. + + + + Huang + Shirong + S + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. + + + + Croy + Alexander + A + + Institute of Physical Chemistry, Friedrich Schiller University Jena, 07737, Jena, Germany. + + + + Cuniberti + Gianaurelio + G + + Institute for Materials Science and Max Bergmann Center for Biomaterials, TUD Dresden University of Technology, 01062, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Dresden Center for Computational Materials Science (DCMS), TUD Dresden University of Technology, 01062, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Cluster of Excellence CARE, TUD Dresden University of Technology and RWTH Aachen, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + Cluster of Excellence CeTI, TUD Dresden University of Technology, Dresden, Germany. gianaurelio.cuniberti@tu-dresden.de. + + + + eng + + + 101046369 + HORIZON EUROPE European Innovation Council + + + + RTG2767 + Deutsche Forschungsgemeinschaft + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + J Cheminform + 101516718 + 1758-2946 + + + Explainable AI + Healthcare + Molecular sensing + Quantum-informed descriptors + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 17 + + + 2026 + 5 + 21 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 45 + + + aheadofprint + + 42216185 + 10.1186/s13321-026-01232-3 + 10.1186/s13321-026-01232-3 + + +
+ + + 42216176 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + 26 + 1 + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Correction to: Simultaneous prediction of early and delayed mortality in burn patients: a comparative machine learning analysis of feature importance in a single-center retrospective study. + 194 + 10.1186/s12911-026-03563-5 + + + Motamedi + Mehran + M + + Nanotechnology Engineering, Babol Noshirvani University of Technology, Shariati Avenue, Babol, Mazandaran Province, 47148-71167, Iran. + + + + Moallemkolaei + Najibeh Mohseni + NM + + Health Information Management, Health Information Management Research Center, Kashan University of Medical Sciences, Ravandi Boulevard, Kashan, Isfahan Province, 87159-73449, Iran. + + + + Hesamirostami + Mohammadhossein + M + + Plastic and Reconstructive Surgery, Mazandaran University of Medical Sciences, Daneshgah Boulevard, Sari, Mazandaran Province, 48157-33971, Iran. hesami_plas@yahoo.com. + + + + Ghorbani + Mojtaba + M + + Plastic and Reconstructive Surgery, Mazandaran University of Medical Sciences, Daneshgah Boulevard, Sari, Mazandaran Province, 48157-33971, Iran. + + + + Arani + Leila Shokrizadeh + LS + + Health Information Management, Health Information Management Research Center, Kashan University of Medical Sciences, Ravandi Boulevard, Kashan, Isfahan Province, 87159-73449, Iran. + + + + eng + + Published Erratum + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + + BMC Med Inform Decis Mak. 2025 Dec 5;26(1):7. doi: 10.1186/s12911-025-03311-1. + 41350855 + + +
+ + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 44 + + + epublish + + 42216176 + 10.1186/s12911-026-03563-5 + 10.1186/s12911-026-03563-5 + + +
+ + + 42216170 + + 2026 + 05 + 29 + +
+ + 1475-9276 + + + 2026 + May + 29 + + + International journal for equity in health + Int J Equity Health + + Intersection of gender and class in the assessment of self-rated health in the Spanish population: a classification tree study. + 10.1186/s12939-026-02897-w + + This study assesses the influence of various specific health conditions as activity limitations and groups of chronic diseases, in estimating poor self-rated health for the Spanish population aged 30-60, stratified by the intersections of gender and social class. Moving beyond unidimensional social gradients, the research utilises decision tree analysis to identify specific configurations of SRH responses that align with the epidemiological profiles of distinct intersectional strata. + Data were drawn from the 2023 Spanish Health Survey (ESdE), focusing on a sample of 10,210 adults aged 30-60. This age bracket was selected to capture health inequality dynamics during the working life-course. Specific machine learning decision trees (J48 algorithm) were employed to assess the pathways for classifying individuals with poor SRH across six distinct intersectional groups. + Resulting decision trees differ significantly in composition, shape, and length across strata. A clear trend emerged: less skilled groups exhibited higher tree complexity, reflecting a more rapid accumulation of chronic illnesses at earlier ages. + This research contributes to the emerging field of study regarding what truly underlies individuals' general assessment of their health. The resulting decision trees illustrate the social gradient in health in a novel way that enriches the understanding of health inequalities. Instead of simply showing a linear trend across a one-dimensional variable, these trees reveal that as disadvantages accumulate through the intersection between gender and social class, the combination of relevant diseases do not only become more complex, but also distinct, in specific and unique ways for each group, as the intersectional framework predicts. + © 2026. The Author(s). + + + + Gumà-Lao + Jordi + J + + Centre for Demographic Studies, Barcelona, Spain. jguma@ced.uab.es. + + + + Barnils + Núria Pedrós + NP + + Institute for Public Health and Nursing Research, University of Bremen, Bremen, Germany. + + + Department of Epidemiology and Global Health, Umeå University, Umeå, Sweden. + + + + Parra-Casado + Daniel La + D + + Department of Sociology II, University of Alicante, Alicante, Spain. + + + + eng + + + Ramón y Cajal program (RYC2022-037781-I) + Agencia Estatal de Investigación + + + + "Generación de Conocimiento" Project [PID2022-141543OB-I00] + Agencia Estatal de Investigación + + + + 535865195 + Deutsche Forschungsgemenischaft + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Int J Equity Health + 101147692 + 1475-9276 + + IM + + Health inequity + Intersectional framework + Machine learning + Self-rated health + + Declarations. Human ethics and consent to participate: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 3 + + + 2026 + 5 + 14 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 44 + + + aheadofprint + + 42216170 + 10.1186/s12939-026-02897-w + 10.1186/s12939-026-02897-w + + +
+ + + 42216166 + + 2026 + 05 + 29 + +
+ + 1471-2474 + + + 2026 + May + 29 + + + BMC musculoskeletal disorders + BMC Musculoskelet Disord + + Optimizing preoperative planning for total hip arthroplasty using random forest models to predict stem size and compatibility. + 10.1186/s12891-026-10022-9 + + Preoperative planning is essential for optimal outcomes post-total hip arthroplasty (THA). Appropriate stem size and compatibility with femoral dimensions are essential in THA to prevent distal fixation. Previous studies have proposed deep learning-based models with image recognition for preoperative planning to determine the best-fit stem; however, whether size and compatibility are adequately optimized remains unclear. This study developed methods that may assist surgeons in preoperative planning to estimate the stem size and compatibility using supervised machine learning models. + Two Random Forest (RF) models were developed to estimate the best-fit stem size and stem compatibility with the femoral geometry. Femoral size information measured at 10 locations from computed tomography images of 320 hips was used to train the models. The training data included the sizes and compatibility information as the target variables for supervised learning provided by a simulation software currently used in clinical practice to determine the optimal stem. As part of feature engineering, ratios derived from combinations of the 10 measured values were used as learning data. The size estimation model was designed as a seven-class classification model, whereas the compatibility estimation model was a binary classification model, predicting whether the stem will exclusively fit distally or not. Both models were tested using data from 109 hips of patients who underwent THA. The model performances were assessed using accuracy, F1 score, precision, and recall. Each parameter's impact was determined using feature importance analysis. + The size and compatibility estimation models trained without ratio information showed accuracies of 89.0% (exact-match: 46.8%) and 85.3%, respectively. When it was included, the models' performance improved, with the size and compatibility estimation accuracies increasing to 92.7% (exact-match: 39.4%) and 87.2%, respectively. Feature importance analysis highlighted that distal medullary cavity diameter is key in size estimation, while overall femoral dimensions are vital for compatibility estimation. + This study developed models that estimate the two critical factors in stem selection: size and compatibility. These models may support preoperative planning for THA using the Accolade II stem, although further validation is required to establish applicability to other implant systems. + © 2026. The Author(s). + + + + Kaneoka + Takehiro + T + 0000-0002-2742-4183 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Imagama + Takashi + T + 0000-0001-8509-1850 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Okazaki + Tomoya + T + 0000-0002-6635-3541 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Matsuki + Yuta + Y + 0000-0002-0664-4136 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Kawakami + Takehiro + T + 0000-0001-6363-560X + + Department of Orthopaedic surgery, Yamaguchi Prefectural Grand Medical Centre, Hofu, Yamaguchi, JP, Japan. + + + + Yamazaki + Kazuhiro + K + 0000-0002-1627-7368 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Sasaki + Kei + K + 0009-0003-8535-1589 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. + + + + Asai + Yoshiyuki + Y + 0000-0001-5519-4306 + + Department of Systems Bioinformatics, Graduate School of Medicine, Yamaguchi University, Yamaguchi, Japan. + + + + Sakai + Takashi + T + 0000-0001-6367-1299 + + Department of Orthopaedic Surgery, Yamaguchi University Graduate School of Medicine, Ube, 755-8505, Japan. cozy@yamaguchi-u.ac.jp. + + + + eng + + + JP22he0122010 + Japan Agency for Medical Research and Development (AMED) + + + + JP 23K10426 + JSPS KAKENHI + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Musculoskelet Disord + 100968565 + 1471-2474 + + IM + + femoral dimensions + machine learning + preoperative planning + random forest + total hip arthroplasty + + Declarations. Ethics approval and consent to participate: This retrospective study’s protocol was approved by the by the Ethics Committee of Yamaguchi University Graduate School of Medicine (approval number: H2021-166-2), and informed consent was obtained from all participants. The ethical standards from the 1964 Helsinki declaration and its later amendments were upheld. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2024 + 12 + 4 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 44 + + + aheadofprint + + 42216166 + 10.1186/s12891-026-10022-9 + 10.1186/s12891-026-10022-9 + + +
+ + + 42216115 + + 2026 + 05 + 29 + +
+ + 1471-2393 + + + 2026 + May + 30 + + + BMC pregnancy and childbirth + BMC Pregnancy Childbirth + + Predicting facility delivery and its determinants among reproductive-age women in Ethiopia using machine learning algorithm: evidence from performance monitoring for action Ethiopia 2019 dataset. + 10.1186/s12884-026-09354-0 + + Facility delivery attended by skilled health professionals is a critical strategy for reducing maternal and neonatal mortality. Despite substantial efforts to expand maternal health services in Ethiopia, a large proportion of births still occur at home. This study aimed to predict facility delivery and identify its associated factors among reproductive-age women in Ethiopia using machine learning approaches. + This study used secondary data from the 2019 Performance Monitoring for Action (PMA) Ethiopia cross-sectional household and female survey. A weighted sample of 5,413 women aged 15-49 years who had a recent birth was included in the analysis. Data extraction and preprocessing were conducted using STATA version 17, while machine learning models were implemented using Python version 3.11.5. Seven supervised machine learning algorithms were developed to predict facility delivery. Model performance was evaluated using accuracy, precision, recall, F1 score, and the area under the receiver operating characteristic curve (AUC). Data preparation included feature engineering, data splitting, handling missing values, addressing class imbalance, and outlier detection. SHapley Additive exPlanations (SHAP) were applied to interpret the contribution of important predictors to model predictions. + Among the evaluated models, the Random Forest algorithm demonstrated the best predictive performance, achieving 74.15% accuracy, 72.58% recall, 76.27% F1-score, and 80.36% precision on test data. The most influential predictors of facility delivery included higher household wealth status, secondary or higher maternal education, television ownership, discussion of delivery location with a partner, partner encouragement for antenatal care attendance, family planning use, maternal age between 20 and 34 years, age at first sexual intercourse of 19 years or older, awareness of emergency contacts, and completion of primary education. + Interpretable machine learning approaches can provide useful insights for identifying factors associated with facility delivery. The findings highlight key socioeconomic and behavioral characteristics that may inform targeted strategies to improve utilization of facility-based delivery services and support efforts to enhance maternal health outcomes in Ethiopia. + © 2026. The Author(s). + + + + Degefa + Siraj Muhidin + SM + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. sirajmuhidin6@gmail.com. + + + + Hailu + Beriso Alemu + BA + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. + + + + Serbessa + Naol Gonfa + NG + + Department of Health Informatics, College of Health Science, Mattu University, Mettu, Ethiopia. + + + + Tsehay + Asmamaw Ketemaw + AK + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Sedi + Tigist Tollessa + TT + + Department of Health Informatics, College of Medicine and Health Sciences, Arbaminch University, Arbaminch, Ethiopia. + + + + Woldekidan + Eden Ketema + EK + + Department of Health Informatics, College of Medicine and Health Sciences, Arbaminch University, Arbaminch, Ethiopia. + + + + Ahmed + Mohammedjud Hassen + MH + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Adem + Jibril Bashir + JB + + Department of Public Health, College of medicine and Health sciences, Arsi University, Asella, Ethiopia. + + + + Wale + Agmasie Damtew + AD + + Department of Health Informatics, School of Public Health, Asrat Woldeyes Health Science Campus, Debre Berhan University, Debre Berhan, Ethiopia. + + + + Guadie + Habtamu Alganeh + HA + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + Asemahagn + Mulusew Andualem + MA + + School of Public Health, College of Medicine and Health Sciences, Bahir Dar University, Bahir Dar, Ethiopia. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + England + BMC Pregnancy Childbirth + 100967799 + 1471-2393 + + IM + + Determinants + Ethiopia + Facility delivery + Women + + Declarations. Ethics approval and consent to participate: For this study, secondary anonymized data were used, and permission to access the dataset was obtained from the Performance Monitoring for Action (PMA) data repository through the official PMA data access portal: PMA Dataset Access Portal. Ethical clearance for this secondary data analysis was obtained from the Institutional Review Board (IRB) of Bahir Dar University, College of Medicine and Health Sciences. The study was conducted in accordance with the Declaration of Helsinki. Since the dataset was fully anonymized and publicly available for research purposes, informed consent from participants was not required for this secondary analysis. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2024 + 11 + 7 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 42 + + + aheadofprint + + 42216115 + 10.1186/s12884-026-09354-0 + 10.1186/s12884-026-09354-0 + + +
+ + + 42216109 + + 2026 + 05 + 29 + +
+ + 2045-3701 + + + 2026 + May + 29 + + + Cell & bioscience + Cell Biosci + + Decoding the role of H19 in cholestatic liver injury using snRNA-seq, spatial transcriptomics, and machine learning-based disease prediction. + 10.1186/s13578-026-01590-3 + + Despite recent advances, Primary Sclerosing Cholangitis (PSC)-a chronic obstructive biliary disease-still lacks effective therapies to prevent disease progression or the need for liver transplantation. Moreover, up to 30% of transplant recipients experience recurrence. Long non-coding RNA H19 (H19) has been implicated in promoting PSC progression, yet the cellular and molecular mechanisms underlying its pathogenic role remain incompletely understood. + Liver tissues from age- and sex-matched wild type (WT), H19 knockout (H19KO), Mdr2 knockout (Mdr2KO), and double-knockout (DKO; Mdr2KO/H19KO) mice were analyzed using single-nucleus RNA sequencing (snRNAseq) and GeoMx spatial transcriptomics to define the cell type and spatially specific effects of H19 deletion in cholestatic liver injury. Machine learning models were built to develop cell-type-specific gene prediction signatures and cross-validated using the human dataset GSE243981. A disease-associated cholangiocyte subcluster that increased in Mdr2KO but was markedly reduced in DKO mice was identified. SPP1 signaling was significantly dysregulated in cholestatic liver injury and mitigated following H19 deletion. Translationally conserved healthy (Clu, Spp1) and diseased (Csmd1, Slco3a1, Cftr) cholangiocyte markers were identified. When validated in a human patient dataset (GSE243981), our machine-learning prediction models achieved AUC values > 0.869. Finally, spatial analyses demonstrated that the mitigation of disease-associated gene expression following H19 deletion was specifically restricted to hepatocytes within the bile duct region. + H19 deletion mitigates cholestatic injury by suppressing pathogenic cholangiocyte states, normalizing Spp1-mediated signaling, and shifting transcriptional programs specifically within the periductal niche. Furthermore, our machine-learning signatures demonstrate robust cross-species translation and may benefit future post-transplant analytics and disease recurrence predictions. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Way + Grayson W + GW + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Jiang + Xixian + X + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Lu + Hongkun + H + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Wu + Nan + N + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Zhao + Derrick + D + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Tai + Yun-Ling + YL + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Bayatpour + Sareh + S + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Wang + Xuan + X + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. + + + + Zhou + Huiping + H + + Department of Microbiology and Immunology, Richmond VA Medical Center, Virginia Commonwealth University, 1220 East Broad Street, MMRB-5044, Richmond, VA, 23298-0678, USA. huiping.zhou@vcuhealth.org. + + + Richmond Veterans Affairs Medical Center, Richmond, VA, 23249, USA. huiping.zhou@vcuhealth.org. + + + + eng + + + 5T32AA029975 + GF + NIH HHS + United States + + + DK115377, 2R56DK115377-05A1, 5R01AA030180, R01DK139587, NIH-NCI P01CA275740 + GF + NIH HHS + United States + + + 5I01BX005730,1 IS1 BX004777-01 and 1IS1BX005517-01, IK6BX004477 + U.S. Department of Veterans Affairs + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Cell Biosci + 101561195 + 2045-3701 + + + Cholestasis + H19 + Long non-coding RNA + Machine learning + Primary sclerosing cholangitis + SPP1 + + Declarations. Conflict of interest: Huiping Zhou is the corresponding author and is also an Editor for the journal. Ethics approval and consent to participate: All animal experiments were performed following institutional guidelines for ethical animal studies and approved by the Virginia Commonwealth University and Richmond VA Medical Center Institutional Animal Care and Use Committee, Virginia, USA. All patient samples used followed Richmond VA Medical Center Institutional Review Board guidelines for de-identified consenting patients. Consent for publication: All authors have given their consent for publication. +
+ + + + 2025 + 12 + 11 + + + 2026 + 5 + 7 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 40 + + + aheadofprint + + 42216109 + 10.1186/s13578-026-01590-3 + 10.1186/s13578-026-01590-3 + + +
+ + + 42216097 + + 2026 + 05 + 29 + +
+ + 1758-9193 + + + 2026 + May + 29 + + + Alzheimer's research & therapy + Alzheimers Res Ther + + EEG biomarkers can predict early-stage Alzheimer's disease and correlate with intracerebral pathology: a multimodal machine learning study. + 10.1186/s13195-026-02096-3 + + Early recognition of Alzheimer's disease (AD) is crucial for timely intervention and delaying disease progression. Electroencephalogram (EEG) technology provides a direct reflection of the brain's dynamic activity. However, the relationship between potential EEG features and cognitive function in early-stage AD patients, as well as cerebrospinal fluid (CSF) pathological biomarkers, remains unclear. + This study included 101 patients with mild cognitive impairment (MCI) and mild AD, alongside 69 healthy controls (HC) matched for gender, age, and educational attainment. Extracting EEG power spectral density (PSD) and microstates analysis features as training features for machine learning (ML), we employed five ML algorithms-Support Vector Machines (SVM), Logistic Regression (LR), Random Forests (RF), XGBoost, and LightGBM-for training and testing. Model performance was assessed using the area under the receiver operating characteristic curve (AUC). SHapley Additive exPlanations (SHAP) plots were employed to elucidate variable importance within the model, and sequential forward selection (SFS) was utilised to identify potential features. Correlation analysis and mediation analysis were conducted to investigate the relationships between EEG features, CSF pathological biomarkers, and cognitive function. + The LR model demonstrated the highest average predictive performance in the training set (mean AUC = 0.859 ± 0.059). The model incorporating PSD and microstates features demonstrated optimal predictive performance in the test set (AUC = 0.949, 95% CI: 0.877-1.000), outperforming any single-feature model. Based on SHAP and SFS analyses, six potential EEG indicators were identified: central region delta frequency band, central region theta frequency band, temporal region beta frequency band, microstate mean duration, microstate C duration, and the transition probability from microstate C to A. Mediation analysis revealed a significant negative correlation between central region theta frequency band and CSF Aβ₁₋₄₂ levels (r = - 0.31, p = 0.015), and the central region theta frequency band mediated the relationship between Aβ₁₋₄₂ levels and Mini-Mental State Examination (MMSE) scores (indirect effect = 0.0007, 95% CI: 0.0001-0.0013). + The combined application of EEG and ML enables efficient classification diagnosis of early-stage AD, and EEG is correlated with intracerebral pathological biomarkers and cognitive impairment. + © 2026. The Author(s). + + + + Geng + Zhi + Z + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Song + Wenqian + W + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Gao + Chen + C + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Zhu + Yun + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Yue + Y + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + Department of Sleep Psychology, The Second Hospital of Anhui Medical University, Anhui Medical University, Hefei, China. + + + + Song + Bo + B + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Guo + Haihua + H + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Jiayun + J + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Fang + Miao + M + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Yan + Yibing + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Zhou + Shanshan + S + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Hu + Panpan + P + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Tian + Yanghua + Y + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. + + + + Wu + Xingqi + X + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. wuxq@fy.ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. wuxq@fy.ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. wuxq@fy.ahmu.edu.cn. + + + + Wang + Kai + K + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. kwang@ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. kwang@ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. kwang@ahmu.edu.cn. + + + Anhui Provincial Institute of Translational Medicine, Anhui Medical University, Hefei, China. kwang@ahmu.edu.cn. + + + + Wei + Ling + L + + Department of Neurology, The First Affiliated Hospital of Anhui Medical University, Hefei, 230022, China. weil@fy.ahmu.edu.cn. + + + Anhui Province Key Laboratory of Cognition and Neuropsychiatric Disorders, Hefei, China. weil@fy.ahmu.edu.cn. + + + Collaborative Innovation Centre of Neuropsychiatric Disorder and Mental Health, Hefei, China. weil@fy.ahmu.edu.cn. + + + + eng + + + 82101498 + National Natural Science Foundation of China + + + + 82371201 + National Natural Science Foundation of China + + + + 82371201 + National Natural Science Foundation of China + + + + 2021kj19 + The 2021 Youth Foundation training program of the First Affliated Hospital of Anhui Medical University + + + + 202204295107020006 + The Anhui Province Clinical Medical ResearchTransformation Special Project + + + + XZZR202402048 + The Natural Science Foundation of theXizang Autonomous Region Group Medical Aid Project to Xizang + + + + 2022zhyx-B11 + Research Fund of Anhui Institute of Translational Medicine + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Alzheimers Res Ther + 101511643 + + IM + + Alzheimer’s disease + CSF biomarkers + EEG microstates + EEG power spectral density + Machine learning + + Declarations. Ethics approval and consent to participate: The studies involving human participants were reviewed and approved by the Research Ethics Committee of the First Affiliated Hospital of Anhui Medical University. The patients/participants provided their written informed consent to participate in this study. Consent for publication: All participants provided consent for the publication of this manuscript. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 12 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 40 + + + aheadofprint + + 42216097 + 10.1186/s13195-026-02096-3 + 10.1186/s13195-026-02096-3 + + +
+ + + 42216034 + + 2026 + 05 + 29 + +
+ + 1475-2867 + + + 2026 + May + 29 + + + Cancer cell international + Cancer Cell Int + + DNA damage response signature-based prognostic genes for intrahepatic cholangiocarcinoma: a combined analysis of machine learning and biological experiments. + 10.1186/s12935-026-04355-7 + + Intrahepatic cholangiocarcinoma (ICC) is a highly aggressive subtype of primary liver cancer with insidious onset, early metastasis, and poor prognosis. DNA damage response (DDR) dysfunction is linked to ICC tumorigenesis, progression, and drug resistance. However, the detailed mechanisms remain underexplored. + DDR activity was quantified by ssGSEA across 6 independent ICC cohorts. DDR risk model was analyzed using 10 machine learning algorithms to construct 101 combined models, and the optimal Lasso + RSF model was adopted by c-index. The core gene SFN was selected for experimental validation. Single‑cell RNA sequencing and spatial transcriptomics were used to explore cellular localization and tissue distribution of signature genes. In vitro assays were performed in ICC cell lines after SFN knockdown to assess cell proliferation and chemosensitivity. + The DDR risk model showed stable prognostic performance in training and external validation cohorts. High‑risk patients exhibited poor prognosis, immunosuppressive microenvironment and reduced sensitivity to multiple chemotherapeutic agents. SFN was specifically enriched in malignant cells. Knockdown of SFN significantly suppressed cell proliferation and colony formation, enhanced sensitivity to cisplatin and gemcitabine, and increased γ‑H2AX expression indicating elevated DNA double‑strand breaks. + We constructed a robust DDR‑based prognostic model for ICC that enables accurate risk stratification and prediction of therapeutic response. SFN serves as a critical driver of chemoresistance and a potential therapeutic target. These results offer novel biomarkers and mechanistic insights to facilitate precision medicine for ICC patients. + © 2026. The Author(s). + + + + Lu + Kai + K + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Li + Hanqi + H + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Wu + Yinying + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Dong + Xuyuan + X + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Dong + Danfeng + D + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Fan + Yangwei + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Li + Enxiao + E + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. + + + + Sun + Liankang + L + + Department of Hepatobiliary Surgery, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. sunliankang@xjtu.edu.cn. + + + + Shi + Yu + Y + + Department of Medical Oncology, The First Affiliated Hospital of Xi'an Jiaotong University, 277 Yanta West Road, Xi'an, 710061, Shaanxi Province, China. shiyu@xjtu.edu.cn. + + + + eng + + + 2022JQ-846 + Natural Science Basic Research Program of Shaanxi + + + + 2021QN-01,2022QN-15 + Research Foundation of the First Affiliated Hospital of Xi'an Jiaotong University + + + + xzy012022103 + Fundamental Research Funds for the Central Universities + + + + 82303663 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Cancer Cell Int + 101139795 + 1475-2867 + + + DNA damage response + Experimental validation + Intrahepatic cholangiocarcinoma + Machine learning + Prognostic markers + + Declarations. Ethics approval and consent to participate: All data utilized in this study were retrieved from publicly available online databases, as specified in the manuscript. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 8 + 3 + + + 2026 + 5 + 23 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 38 + + + aheadofprint + + 42216034 + 10.1186/s12935-026-04355-7 + 10.1186/s12935-026-04355-7 + + +
+ + + 42216026 + + 2026 + 05 + 29 + +
+ + 1757-6512 + + + 2026 + May + 29 + + + Stem cell research & therapy + Stem Cell Res Ther + + KRT6A derived from mesenchymal stem cells as a potential biomarker and therapeutic target for alopecia areata: insights from multi-omics analysis and experimental evidence. + 10.1186/s13287-026-05077-3 + + Mesenchymal stem cells (MSCs) secretome have shown promise in the treatment of alopecia areata (AA). However, the key therapeutic genes remain unclear. This study aimed to identify potential critical therapeutic molecules using multi-omics approaches. + MSCs extracellular vesicles related genes was retrieved from ExoCarta database, and which integrated with transcriptomic and proteomic sequencing data from AA for cross-analysis to identify AA-related therapeutic genes. Mfuzz clustering, PPI networks, and machine learning algorithms were employed to potential key therapeutic factors. Functional mechanisms were explored through gene expression analysis, immune infiltration, single-cell RNA sequencing (scRNA-seq) and spatial transcriptomics. AA mice were used for experimental validation. + We identified 146 MSCs-derived genes with potential therapeutic relevance for AA. Enrichment analysis suggests that they are involved in skin development and differentiation. Through Mfuzz clustering, 13 machine learning algorithms, and combined with SHAP interpretability analysis, the KRT6A was we further identified as the most critical candidate gene. Validation analyses demonstrated that KRT6A serves as a robust diagnostic marker for AA (AUC = 0.989), a predictor of disease severity (AUC = 0.769), and a protective factor (HR = 0.52, 95%CI: 0.34-0.79). Immune infiltration analysis revealed severe immune dysregulation in AA, and KRT6A was significantly negative correlated with dysregulated immune cells. By exploring the expression source of KRT6A, we found that it was mainly enriched in skin hair follicle tissues, and single-cell subset analysis and spatial transcriptomics further mapped KRT6A to hair follicle stem-like cells from the cellular level, yet KRT6A was significantly downregulated in AA models. Primary human hair follicle mesenchymal stem cells (HFMSCs) further confirmed KRT6A localization. Furthermore, KRT6A-overexpressing HFMSCs exhibited enhanced migration, whereas KRT6A knockdown reduced migration and suppressed WNT pathway activation. Conditioned medium from KRT6A-overexpressing HFMSCs effectively alleviated alopecia and reduced apoptosis in AA mice, whereas KRT6A knockdown reversed these effects. + MSCs-derived KRT6A may serve as a potentia biomarker and therapeutic target for AA, which provide novel insights into AA pathogenesis and may help the development of targeted therapeutic strategies. + © 2026. The Author(s). + + + + Peng + Shixiong + S + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Deng + Jia + J + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Meng + Xiuming + X + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Deng + Shuangjie + S + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. + + + + Yan + Wenjie + W + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. ywj716@glmu.edu.cn. + + + + Huang + Xi + X + + Department of Dermatology, the Affiliated Hospital of Guilin Medical University, Guilin Medical University, Lequn Road, Guilin, China. professorhuangxi@163.com. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Stem Cell Res Ther + 101527581 + 1757-6512 + + IM + + Alopecia areata + KRT6A + Machine learning + Mesenchymal stem cells + Multi-omics + + Declarations. Ethics approval and consent to participate: The animal research, entitled “KRT6A from Mesenchymal Stem Cells Exosomes as a Potential Biomarker and Therapeutic Target for Alopecia Areata: Insights from Multi-omics Analysis and Experimental Evidence”, was approved by the Animal Ethics Committee of Guilin Medical University (GLMU-IACUC-20251084) on August 13, 2025, and was performed in accordance with the ARRIVE 2.0 guidelines. The human-related research in this study, which was part of the project entitled “Exosome Multimodal Analysis Reveals the Mechanism by Which Mesenchymal Stem Cell Exosomes Regulate Hair Follicle Regeneration”, was approved by the Ethics Committee of the Affiliated Hospital of Guilin Medical University on February 18, 2025 (No. 2025QTLL-10), and was conducted in compliance with the principles of the Declaration of Helsinki. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 10 + 11 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216026 + 10.1186/s13287-026-05077-3 + 10.1186/s13287-026-05077-3 + + +
+ + + 42216024 + + 2026 + 05 + 29 + +
+ + 2050-6511 + + + 2026 + May + 29 + + + BMC pharmacology & toxicology + BMC Pharmacol Toxicol + + Network toxicology and bioinformatics reveal potential molecular links between cadmium exposure and pancreatic cancer. + 10.1186/s40360-026-01156-6 + + Environmental cadmium (Cd) pollution poses a severe threat to human health due to its strong bioaccumulation and high carcinogenicity. Although Cd exposure has been linked to various cancers, its specific role in pancreatic cancer (PC) remains unclear. This study aimed to explore the molecular mechanisms underlying Cd-associated PC and identify potential diagnostic and therapeutic targets. + Transcriptomic data of PC were obtained from the GEO database to screen differentially expressed genes (DEGs), which were then intersected with Cd-related genes retrieved from the Comparative Toxicogenomics Database (CTD). Functional enrichment analyses, including GO and KEGG, were conducted to identify key biological processes and pathways. Multiple machine learning algorithms were used to construct a diagnostic model and identify hub genes. Furthermore, molecular docking and molecular dynamics simulations were performed to evaluate drug-target interactions, and in vitro experiments were used to validate the effects of Cd exposure on PC cell proliferation and invasiveness. + A total of five key genes-FN1, COL5A1, AHR, COL3A1, and TIMP1-were identified as core regulators of Cd-associated PC. Functional analyses indicated that Cd primarily affects the extracellular matrix (ECM) metabolic and collagen remodeling pathways. Experimental results confirmed that Cd exposure significantly enhanced the proliferation and invasiveness of PC cells. Molecular docking and dynamics simulations revealed that the EGFR inhibitor dacomitinib exhibited favorable predicted binding affinity to FN1, suggesting its potential as a therapeutic agent. + This study reveals that Cd may promote the malignant progression of PC by regulating ECM remodeling through key genes such as FN1. Dacomitinib shows promise as an FN1-associated therapy, offering new insights for the precise prevention and treatment of Cd-associated PC. + © 2026. The Author(s). + + + + Liu + Shuyuan + S + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Lu + Xinyan + X + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + + Li + Desheng + D + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + + Ma + Jingyuan + J + + The First Clinical Medical College, Liaoning University of Traditional Chinese Medicine, Shenyang, China. + + + + Zhang + Yunshu + Y + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Li + Junchen + J + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. + + + + Wan + Xing + X + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. wanx03@dmu.edu.cn. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. wanx03@dmu.edu.cn. + + + + Shang + Dong + D + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + Institute of Integrative Medicine, Dalian Medical University, Dalian, China. shangdong@dmu.edu.cn. + + + + Zhang + Qingkai + Q + + Department of General Surgery, The First Affiliated Hospital of Dalian Medical University, Dalian, China. zhangqk@dmu.edu.cn. + + + Clinical Laboratory of Integrative Medicine, The First Affiliated Hospital of Dalian Medical University, Dalian, China. zhangqk@dmu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Pharmacol Toxicol + 101590449 + 2050-6511 + + IM + + Cadmium + Machine learning + Molecular dynamic simulation + Network toxicology + Pancreatic cancer + + Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 11 + 11 + + + 2026 + 5 + 20 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216024 + 10.1186/s40360-026-01156-6 + 10.1186/s40360-026-01156-6 + + +
+ + + 42216013 + + 2026 + 05 + 29 + +
+ + 1749-7922 + + + 2026 + May + 29 + + + World journal of emergency surgery : WJES + World J Emerg Surg + + Machine learning models for early mortality prediction in trauma patients using public data: a nationwide retrospective study. + 10.1186/s13017-026-00706-x + + Trauma is a leading cause of morbidity and mortality worldwide, particularly in younger populations. Early identification of high-risk trauma patients is critical for timely interventions and improved outcomes. Although artificial intelligence and machine learning have demonstrated promise in healthcare, their application in trauma mortality prediction has been limited. + This study developed and validated machine learning models to predict mortality in trauma patients using a large public dataset from the National Community-Based Critical Injury Survey (South Korea, 2016-2020). Overall, 207,012 cases were analyzed. Six machine learning algorithms, including logistic regression, k-nearest neighbor, decision tree, random forest (RF), extreme gradient boosting (XGB), and multi-layer perceptron, were trained and evaluated. Their performance was assessed using the areas under the receiver operating characteristic curve (AUROC) and precision-recall curve (AUPRC), and other metrics. Shapley additive explanations (SHAP) scores were used to interpret feature importance. + The XGB model demonstrated the highest performance (AUROC 0.985; AUPRC 0.957), followed closely by the RF model (AUROC 0.984; AUPRC 0.956). Performance remained stable during the COVID-19 period, supporting the model's temporal robustness under systemic disruption. SHAP analysis identified clinically actionable features such as out-of-hospital cardiac arrest, injury severity score, age, and time to transfusion. Unlike many prior studies based on small or single-center datasets, our model was developed using a nationally representative cohort and prioritized interpretability, scalability, and generalizability. + This study presents a high-performing, interpretable machine learning framework for early mortality risk stratification in trauma patients using nationwide registry data. The strong discrimination and temporal robustness of the model support its value as a system-level prediction tool; however, further calibration analyses, external validation, and prospective implementation studies are required before integration into clinical workflows. + © 2026. The Author(s). + + + + Baik + Seung Min + SM + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Lee + Jae Gil + JG + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Shim + Hongjin + H + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Mokdong Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Kim + Sujung + S + + Division of Acute Care Surgery, Department of Surgery, Korea University Anam Hospital, Korea University College of Medicine, Goryeodae-ro 73, Seongbuk-gu, Seoul, 02841, Republic of Korea. + + + + Hong + Kyung Sook + KS + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Seoul Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Yi + Heejung + H + + Division of Critical Care Medicine, Department of Surgery, Ewha Womans University Seoul Hospital, Ewha Womans University College of Medicine, Seoul, Republic of Korea. + + + + Lee + Kyung Hyun + KH + + Department of Digital Health, SAIHST, Sungkyunkwan University, Seoul, Republic of Korea. + + + + Lee + Jae-Myeong + JM + + Division of Acute Care Surgery, Department of Surgery, Korea University Anam Hospital, Korea University College of Medicine, Goryeodae-ro 73, Seongbuk-gu, Seoul, 02841, Republic of Korea. ljm3225@hanmail.net. + + + + eng + + + RS-2023-00240766 + National Research Foundation of Korea + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + World J Emerg Surg + 101266603 + 1749-7922 + + IM + + Artificial intelligence + Clinical decision-making + Emergency medical services + Injury severity score + + Declarations. Ethics approval and consent to participate: The Ewha Womans University Mokdong Hospital Institutional Review Board deemed this study exempt from ethics review and waived the informed consent requirement. Consent for publication: Not applicable. Competing interests: The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 10 + 20 + + + 2026 + 5 + 23 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 37 + + + aheadofprint + + 42216013 + 10.1186/s13017-026-00706-x + 10.1186/s13017-026-00706-x + + +
+ + + 42215973 + + 2026 + 05 + 29 + +
+ + 1472-6963 + + + 2026 + May + 29 + + + BMC health services research + BMC Health Serv Res + + Why are rural hospitals closing in the U.S.? Predictors identified using explainable machine learning. + 10.1186/s12913-026-14810-w + + Rural hospital closures in the U.S. reduce access to essential healthcare services and worsen health and economic outcomes in rural communities. This study uses national longitudinal data and explainable machine learning (XML) to identify and interpret risk factors of rural hospital closures. + We conducted a retrospective longitudinal study of U.S. rural hospitals using national datasets from 2011 to 2022, integrating hospital-level financial, operational, policy, population, and community data. Longitudinal feature engineering and statistical summarization were performed, class imbalance and multicollinearity were addressed using random undersampling and variance inflation factor (VIF) analysis, and an XGBoost classifier was trained using stratified three-fold cross-validation and Optuna for hyperparameter tuning. Model explainability was assessed using SHapley Additive exPlanations (SHAP). + Among 2,683 rural hospitals, 139 (5.2%) closed during the study period. The model achieved a recall of 86%, accuracy of 75%, and an AUC of 89%. The key variables linked to closure risk are sustained financial weakness and volatility (e.g., total margin, variability in return on equity, and current ratio), operational instability (low patient volume and variability in bed-days available), policy context (e.g., years since Medicaid expansion), and community context, including sociodemographic characteristics of the service area (e.g., proportion of Black or African American residents), which may reflect underlying structural and socioeconomic conditions rather than direct predictors or causal drivers of closure. + These findings indicate that the risk of closure of rural hospitals reflects accumulated long-term financial and operational instability, as well as policy and community context, rather than short-term distress, highlighting the value of longitudinal and explainable modeling approaches. + Longitudinal data integrated into XML provides a practical approach for early warning systems that enable proactive monitoring and timely interventions, particularly for hospitals serving historically underserved communities. + Not applicable. + © 2026. The Author(s). + + + + Balakrishnan + Kiruthika + K + + National Center for Rural Health Professions, University of Illinois College of Medicine Rockford, 1601 Parkview Avenue, Rockford, IL, 61107, USA. bkiruthi@uic.edu. + + + AI.Health4All Center, University of Illinois Chicago, 1747 West Roosevelt Road, Chicago, IL, 60608, USA. bkiruthi@uic.edu. + + + + Abuhay + Tesfamariam M + TM + + Department of Medicine, University of Illinois Chicago, 840 S. Wood St., Chicago, IL, 60612, USA. + + + AI.Health4All Center, University of Illinois Chicago, 1747 West Roosevelt Road, Chicago, IL, 60608, USA. + + + + Hinkle + Hana E + HE + + National Center for Rural Health Professions, University of Illinois College of Medicine Rockford, 1601 Parkview Avenue, Rockford, IL, 61107, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Health Serv Res + 101088677 + 1472-6963 + + IM + + Early warning systems + Explainable machine learning + Hospital closure risk factors + Longitudinally derived features + Rural hospital closures + + Declarations. Ethics consent to participate: This study is a retrospective analysis of publicly available data and published literature and did not involve human participants, identifiable private information, or the collection of new data requiring ethical approval or informed consent. Consent for publication: Not applicable Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 10 + + + 2026 + 5 + 15 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 36 + + + aheadofprint + + 42215973 + 10.1186/s12913-026-14810-w + 10.1186/s12913-026-14810-w + + +
+ + + 42215935 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Explainable machine learning for the prediction of Alzheimer's disease-related cognitive impairment: a consensus feature selection approach. + 10.1186/s12911-026-03585-z + + Early identification of Alzheimer's disease-related cognitive impairment remains challenging, and existing machine learning (ML) models often suffer from feature instability and limited interpretability. This study developed robust and explainable ML models using cerebrospinal fluid (CSF) biomarkers by systematically comparing sparsity-based (LASSO), importance-based (Boruta), and consensus feature selection strategies. + A publicly available cohort of 333 individuals (91 cognitively impaired, 242 cognitively normal) was analyzed. Data were split into training (70%) and independent test (30%) sets. Multiple classifiers, including Elastic Net-regularized logistic regression (LR), support vector machine (SVM), random forest, XGBoost, and Naive Bayes (NB), were trained using repeated 5-fold cross-validation (10 repetitions; 10 × 5-fold cross-validation) with class weighting. Model performance was evaluated using discrimination, calibration, and clinical utility metrics, and interpretability was assessed using SHAP. + All models demonstrated strong discriminative performance on the test set (AUROC 0.861-0.958). LASSO-based models showed high specificity, Boruta-based models achieved higher sensitivity, and consensus-based models provided the most balanced performance. The consensus-LR and -SVM models achieved AUROC values of 0.954 and 0.951, respectively. Beyond discrimination, the consensus-LR model demonstrated good calibration and consistent net clinical benefit in decision curve analysis, analyses that remain relatively underreported in the Alzheimer's disease machine learning literature. SHAP analyses highlighted biologically plausible contributions from key biomarkers, including tau, Aβ42, NT-proBNP, pancreatic polypeptide, and IL-7. + In summary, stable and interpretable ML models for Alzheimer's disease-related cognitive impairment can be developed using CSF-derived biomarkers obtained through lumbar puncture. The proposed consensus-based feature selection framework improves feature stability and model transparency, facilitating the discrimination between cognitively normal and impaired individuals and providing a foundation for future external validation studies. + © 2026. The Author(s). + + + + Cantaş Türkiş + Fulden + F + 0000-0002-7018-7187 + + Division of Biostatistics, Faculty of Medicine, Muğla Sıtkı Koçman University, Muğla, 48000, Turkey. fuldencantas@mu.edu.tr. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + Calibration + Clinical utility + Explainability + Feature selection + Machine learning + + Declarations. Ethics approval and consent to participate: Not applicable. This study is a secondary analysis of publicly available, anonymized data obtained from an open-access repository. Ethical approval and informed consent were obtained in the original study, and no additional ethical approval was required for the present analysis. The study was conducted in accordance with the principles of the Declaration of Helsinki. Consent for publication: Not applicable. The study does not include any individual-level identifiable data. Authors’ information: Fulden Cantaş Türkiş is an Assistant Professor at Muğla Sıtkı Koçman University, Faculty of Medicine, Department of Biostatistics. Her research interests include biostatistics, time-to-event data analysis, machine learning, artificial intelligence in healthcare, explainable artificial intelligence, predictive modeling, and statistical learning using real-world clinical data. She collaborates with multiple interdisciplinary research groups as the lead biostatistician and provides statistical consultancy for clinical and translational research projects. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 22 + + + 2026 + 5 + 20 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 35 + + + aheadofprint + + 42215935 + 10.1186/s12911-026-03585-z + 10.1186/s12911-026-03585-z + + +
+ + + 42215930 + + 2026 + 05 + 29 + +
+ + 1472-6947 + + + 2026 + May + 29 + + + BMC medical informatics and decision making + BMC Med Inform Decis Mak + + Beyond prediction: explainable machine learning for ferritin estimation from complete blood count. + 10.1186/s12911-026-03601-2 + + Serum ferritin is a primary marker of body iron stores; however, its diagnostic utility is limited by cost and non-specific elevation during inflammatory states. This study aimed to develop and validate explainable machine learning (ML) models to estimate ferritin status using only widely available and cost-effective complete blood count (CBC) and demographic parameters. + This prospective study analyzed 12,450 adult laboratory records. To ensure ferritin reflected true iron status, cases with inflammation (elevated white blood cell count or erythrocyte sedimentation rate) were excluded. A balanced dataset of 7,200 samples was used to train five supervised ML algorithms, including Logistic Regression, XGBoost, and Artificial Neural Network (ANN), for both binary classification and regression tasks. Model interpretability was assessed using SHapley Additive Explanations (SHAP) to evaluate global feature importance. + The ANN model achieved the best classification performance, with an area under the curve of 0.837 and an F1-score of 0.760 in discriminating low ferritin levels (< 30 ng/mL) from normal values. Although the regression model demonstrated a moderate global R² of 0.32, it showed higher predictive accuracy in lower ferritin ranges critical for diagnosing iron deficiency. SHAP analysis revealed Sex, Mean Corpuscular Hemoglobin, and Red Cell Distribution Width as the most influential predictors, consistent with iron-restricted erythropoiesis. + ML models based solely on routine hemogram data provide a reliable, zero-cost screening approach for iron deficiency. The integration of explainable AI enhances clinical credibility and supports implementation as an accessible decision support tool. + © 2026. The Author(s). + + + + Us + Ramazan Berk + RB + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. berkus62@gmail.com. + + + + Panatli + Oguzhan + O + + Department of Biomedical Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + Department of Computer Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + + Bozkürk + Mine Büşra + MB + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Öztürk + Atakan + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Sağlam + Suadiye + S + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Kösem + Arzu + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Öztürk + Alpaslan + A + + Department of Medical Biochemistry, Ankara Etlik City Hospital, Yenimahalle, Ankara, 06170, Türkiye. + + + + Bostanci + Gazi Erkan + GE + + Department of Computer Engineering, Faculty of Engineering, Ankara University, Gölbaşı, Ankara, 06830, Türkiye. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + BMC Med Inform Decis Mak + 101088682 + 1472-6947 + + IM + + Clinical decision support systems + Complete blood count + Explainable artificial intelligence + Ferritin + Iron deficiency + SHAP + + Declarations. Ethics approval and consent to participate: The study protocol was approved by the Ankara Etlik City Hospital Ethics Committee (Approval No: AEŞH-BADEK1-2025-032, Date: 02/07/2025) and was conducted in accordance with the principles of the Declaration of Helsinki. Informed consent was obtained from all participants prior to inclusion in the study. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 6 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 35 + + + aheadofprint + + 42215930 + 10.1186/s12911-026-03601-2 + 10.1186/s12911-026-03601-2 + + +
+ + + 42215875 + + 2026 + 05 + 29 + +
+ + 1480-9222 + + + 2026 + May + 29 + + + Biological procedures online + Biol Proced Online + + A novel prognostic model based on MVIRGs identifies ANGPT2 as a key target driving the malignant progression of HCC. + 10.1186/s12575-026-00347-z + + Hepatocellular carcinoma (HCC) is a highly lethal malignancy with high recurrence and limited therapies. Microvascular invasion (MVI) is a critical prognostic factor, but its molecular mechanisms and precise predictive tools are lacking. This study aimed to identify key MVI-associated genes (MVIRGs), develop a prognostic model, and elucidate the role of ANGPT2 in HCC progression and therapeutic responses. + Machine learning on multi-cohort data (TCGA, ICGC) identified MVIRGs and constructed a prognostic model. ANGPT2, the core oncogenic MVIRG, was validated clinically (IHC) and functionally (in vitro and in vivo). We analyzed its association with the tumor immune microenvironment (TIME), immune checkpoint inhibitors (ICIs), and drug sensitivity. + A powerful six-MVIRG prognostic model was developed, with ANGPT2 identified as the sole oncogenic gene. Clinically, ANGPT2 was significantly overexpressed, correlating strongly with aggressive features like MVI, vascular invasion, and advanced stages, serving as a robust poor prognostic biomarker for OS and PFS. Functionally, ANGPT2 knockdown significantly inhibited HCC cell growth and migration in vitro, and inhibited tumor growth in vivo. Bioinformatics revealed ANGPT2 fosters an immunosuppressive TIME, upregulating immune checkpoints (e.g., PD-L1) to mediate resistance to ICIs. High ANGPT2 expression showed a differential drug response: resistance to targeted therapies (e.g., EGFR-TKIs) but paradoxically increased sensitivity to chemotherapies (e.g., docetaxel, paclitaxel). + This study constructed a powerful MVIRG model and identified ANGPT2 as a core oncogenic molecule. ANGPT2 drives HCC progression, mediates immune resistance, and differentially regulates drug sensitivity, making it a key biomarker for prognosis and treatment guidance. + © 2026. The Author(s). + + + + Li + Xian + X + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Tan + Zhouli + Z + + The Fifth School of Clinical Medicine, Anhui Medical University, Hefei, China. + + + Navy Clinical College, Anhui Medical University, Beijing, China. + + + + Feng + Shanru + S + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Yu + Qiang + Q + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Zhou + Jian + J + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Fan + Jia + J + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. + + + + Xu + Yang + Y + + Department of Hepatobiliary Surgery and Liver Transplantation, Key Laboratory of Carcinogenesis and Cancer Invasion, Ministry of Education, Liver Cancer Institute, Zhongshan Hospital, Fudan University, 180 Fenglin Road, Shanghai, 200032, China. xuyangdoctor@163.com. + + + + eng + + + 82073272 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Biol Proced Online + 100963717 + 1480-9222 + + + ANGPT2 + Hepatocellular carcinoma + MVIRGs + Microvascular invasion + Prognostic model + + Declarations. Ethics approval and consent to participate: Ethical approval was provided by the Ethics Committee of Zhongshan Hospital, and written informed consent was obtained from each patient (Approval number: No. Y2020-374). All animal experiments involved in this study were reviewed and approved by the Ethics Committee of Zhongshan Hospital, Fudan University, Xiamen Hospital (Approval number: No. Y2024-021). We confirm that all experiments were performed in accordance with the approved protocols and all relevant guidelines and regulations for the care and use of laboratory animals. Regarding the tumor burden, the maximum tumor size/burden permitted by our Ethics Committee/IRB is a tumor volume not exceeding 2000 mm3 or a longest tumor diameter not exceeding 2.0 cm. We confirm that this maximum permitted tumor size/burden was not exceeded at any point during the study. Clinical trial number: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 31 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 33 + + + aheadofprint + + 42215875 + 10.1186/s12575-026-00347-z + 10.1186/s12575-026-00347-z + + +
+ + + 42215857 + + 2026 + 05 + 29 + +
+ + 1471-2164 + + + 2026 + May + 30 + + + BMC genomics + BMC Genomics + + PRIME: An evaluation framework for protein representation inference and generalization in viral mutation space. + 10.1186/s12864-026-12976-5 + + Protein language models (PLMs) have revolutionized protein fitness prediction, yet their application to rapidly evolving viral pathogens is often confounded by extreme sequence homology. This homology leads to "data leakage" in standard random validation splits, yielding inflated performance metrics that fail to translate into real-world biosurveillance utility. + We present Protein Representation Inference for Mutation Evaluation (PRIME), a framework that integrates domain-specific fine-tuning with a rigorous position-stratified validation protocol to evaluate viral threats. Using a dataset of 347,432 SARS-CoV-2 receptor binding domain (RBD) sequences, we demonstrate that while random training data split yields deceptive R2 values (> 0.90), they fail to generalize to novel mutational sites. By benchmarking models up to 650 M parameters, we show that domain-specific fine-tuning of the ESM-C 600 M model with correctly stratified data provides an initial demonstration of predictive signal for binding affinity and expression at unseen mutational sites of binding affinity and expression on unseen sites (R2 ~0.23), a significant advancement over base foundation models which exhibit no predictive power (R2 <0). PRIME's embedding-based clustering identified 3.03% of bat coronavirus sequences as candidates for further experimental prioritization based on their functional similarity to human-infective strains in embedding space, offering a perspective complementary to traditional phylogenetic methods. + PRIME establishes a new benchmark for the application of PLMs in pathogen surveillance. Our findings demonstrate that state-of-the-art models and fine-tuning, when paired with stratified validation, provide biologically meaningful insights into pathogen evolution and zoonotic risk. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Gibson + Kaetlyn + K + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Li + Po-E + PE + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Li + Valerie + V + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Dix + Martha + M + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Hung + Li-Wei + LW + + Biochemistry and Biotechnology Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Stelle + George Widgery + GW + + Applied Computer Science Group, Computer, Computational and Statistical Sciences Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Babinski + Michal + M + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Chain + Patrick + P + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. + + + + Hu + Bin + B + + Genomics and Bioanalytics Group, Bioscience Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA. bhu@lanl.gov. + + + + eng + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + 20250637DI, 20250638DI, 20250639DI, 20240734DI, 20210767DI, 20200732ER + Los Alamos National Laboratory + + + + + Journal Article + + + 2026 + 05 + 30 + +
+ + England + BMC Genomics + 100965258 + 1471-2164 + + IM + + Biosurveillance + Gomology leakage + Host tropism prediction + Machine learning efficiency + Model fine-tuning + Phenotype prediction + Position-stratified validation + Protein language models + + Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 3 + 12 + + + 2026 + 5 + 18 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 32 + + + aheadofprint + + 42215857 + 10.1186/s12864-026-12976-5 + 10.1186/s12864-026-12976-5 + + +
+ + + 42215832 + + 2026 + 05 + 29 + +
+ + 1573-6822 + + + 2026 + May + 29 + + + Cell biology and toxicology + Cell Biol Toxicol + + Integrative multi-omics, machine learning, and experimental validation reveal that TPM1 suppresses M2 macrophage polarization and enhances chemosensitivity in acute myeloid leukemia. + 10.1007/s10565-026-10201-3 + + Acute myeloid leukemia (AML) remains a therapeutic challenge due to chemoresistance and immunosuppression. This study aimed to discover novel regulatory mechanisms in AML pathogenesis. + Integrative transcriptomic (GSE30029) and proteomic (PXD008378) analyses with machine learning (LASSO, SVM-RFE, random forest) were performed to identify core AML regulators. Functional validation was conducted in AML cell lines (HL-60, NB4), including cell proliferation and apoptosis assays, cytarabine (Ara-C) sensitivity testing, and a subcutaneous xenograft model. Macrophage polarization was evaluated in co-culture systems. Molecular mechanisms were explored via MeRIP, RIP, and mRNA stability assays. + Tropomyosin 1 (TPM1) was identified as a potential key factor in AML. TPM1 was downregulated in AML tissues and cells. TPM1 overexpression inhibited AML cell proliferation, promoted apoptosis and oxidative stress, and enhanced sensitivity to Ara-C. Furthermore, TPM1 upregulation attenuated M2 macrophage polarization. Mechanistically, the m6A eraser fat mass and obesity-associated protein (FTO) destabilized TPM1 mRNA in an m6A-dependent manner. Downregulation of TPM1 reversed the effects of FTO depletion on AML cell proliferation, Ara-C sensitivity, and M2 macrophage polarization. + This study unveils a novel FTO/m6A/TPM1 axis that coordinately governs AML cell growth, chemosensitivity, and macrophage polarization, highlighting it as a promising therapeutic target. + © 2026. The Author(s). + + + + Li + Yue + Y + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + Wei + Baosheng + B + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + Hu + Liuping + L + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. huhuliuping@163.com. + + + + Du + Yuzhen + Y + + Department of Clinical Laboratory, Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine, No. 222, West Huanhu 3Rd Road, Lingang New City 201306, Pudong New Area, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Switzerland + Cell Biol Toxicol + 8506639 + 0742-2091 + + IM + + Acute myeloid leukemia + Chemosensitivity + M6A eraser + Macrophage polarization + Tropomyosin 1 + + Declarations. Ethics approval: The present study was approved by the ethical review committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine with approval No.20250222. Written informed consent was obtained from all enrolled patients. Human study: This study was carried out in strict accordance with the relevant regulations and requirements of the Declaration of Helsinki. Written informed consents were obtained from all participants and this study was permitted by the Ethics Committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine. Animal study: The procedures performed on all animals complied with the standards formulated by the Experimental Animal Ethics Committee of Sixth People's Hospital Affiliated to Shanghai Jiao Tong University School of Medicine and obtained the approval of the said committee. Conflicts of interest: The authors declare no competing interests. Clinical trial number: Not applicable +
+ + + + 2026 + 1 + 31 + + + 2026 + 4 + 23 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 26 + + + aheadofprint + + 42215832 + 10.1007/s10565-026-10201-3 + 10.1007/s10565-026-10201-3 + + +
+ + + 42215825 + + 2026 + 05 + 29 + +
+ + 1618-1905 + + + 2026 + May + 30 + + + International microbiology : the official journal of the Spanish Society for Microbiology + Int Microbiol + + Gut microbial alterations and functional shifts in patients with hypertriglyceridemia: insights from a northwestern Chinese metagenomic study. + 10.1007/s10123-026-00845-w + + Although hypertriglyceridemia (HTG) is a significant contributor to lipid-associated pathologies such as atherosclerotic cardiovascular disease, its regulation by host‒microbiome interactions remain insufficiently characterized. While the gut microbiota (GM) is known to influence cholesterol metabolism, its specific role in systemic triglyceride (TG) homeostasis, particularly in non-Western populations, is poorly defined. This study aimed to identify preliminary robust GM signatures associated with HTG and to assess their translational potential using integrated multiomics and explainable machine learning approaches. In a cross-sectional investigation of 50 well-phenotyped adults from Northwest China, we combined 16S rRNA sequencing, shotgun metagenomics, and ensemble machine learning (LightGBM/XGBoost) to elucidate the associations between the GM and TGs. Microbial features were rigorously linked to serum lipid profiles through dual-algorithm validation and SHAP interpretability analysis, while functional potential was assessed via KEGG pathway mapping. Subjects with HTG exhibited a distinct gut microbial configuration, marked by consistent enrichment of Faecalibacterium and Bacteroides coprocola (positively correlated with serum TG levels) and depletion of Bifidobacterium pseudocatenulatum and Lactobacillus salivarius (inversely correlated). Machine learning converged on five exploratory consensus biomarker taxa, three of which were independently confirmed by LEfSe analysis (Faecalibacterium). Functional profiling further revealed the upregulation of microbial starch and sucrose metabolism pathways in the HTG cohort. Our findings establish a preliminary gut microbial signature for HTG patients and suggest context‑dependent associations of butyrate-producing taxa such as Faecalibacterium. By integrating multiomics with explainable artificial intelligence, this work addresses key challenges in reproducibility and mechanistic inference in microbiome research. These results pave the way for novel microbiota-targeted therapeutic strategies, including precision probiotics and dietary interventions, to modulate lipid metabolism, pending further validation in expanded cohorts and functional studies. + © 2026. The Author(s). + + + + Lv + Jing + J + + Department of Clinical Laboratory, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Wang + Ji-Han + JH + + Yan'an Medical College of Yan'an University, Yan'an, Shaanxi, 716000, China. + + + + Wang + Yang-Yang + YY + + School of Physics and Electronic Information, Yan'an University, Yan'an, Shaanxi, 716000, China. + + + + Huang + Jing + J + + Department of Clinical Pharmacy, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Chen + Fen-Rong + FR + + Department of Gastroenterology, The Second Affiliated Hospital of Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710000, China. + + + + Fang + Sa + S + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Wang + Xiao-Juan + XJ + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Li + Zi-Tong + ZT + + Department of Spine Surgery, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. + + + + Shi + Yu-Peng + YP + + Department of Gastroenterology, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. xjshiyupeng@163.com. + + + + Guo + Lei + L + + Department of Spine Surgery, Honghui Hospital, Xi'an Jiaotong University, Xi'an, Shaanxi Province, 710054, China. guolei0711@163.com. + + + + eng + + + 2025JC-YBMS-916 + Shaanxi Natural Science Foundation of China + + + + No. 81702067 and 82560411 + National Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 30 + +
+ + Switzerland + Int Microbiol + 9816585 + 1139-6709 + + IM + + Biomarker + Gut microbiota + Hypertriglyceridemia + Machine learning + Triglyceride + + Declarations. Competing interests: The authors declare no competing interests. Consent to participate: Informed consent was provided by all recruited subjects prior to the study. +
+ + + + 2026 + 3 + 18 + + + 2026 + 5 + 22 + + + 2026 + 5 + 11 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 26 + + + aheadofprint + + 42215825 + 10.1007/s10123-026-00845-w + 10.1007/s10123-026-00845-w + + + + The Writing Committee Of The Report On Cardiovascular Health And Diseases In China (2022) Key points of Report on Cardiovascular Health and Diseases in China 2021. Chin J Cardiovasc Res, 20(7): 577–596 + + + An HM et al (2011) Antiobesity and lipid-lowering effects of Bifidobacterium spp. in high fat diet-induced obese rats. Lipids Health Dis 10:116 + + 21745411 + 10.1186/1476-511X-10-116 + + + + Association LM et al (2022) China guideline for clinical lipid profile testing. Chin J Lab Med 45(10):1017–1033 + + + Bäckhed F et al (2004) The gut microbiota as an environmental factor that regulates fat storage. Proc Natl Acad Sci USA 101(44):15718–15723 + + 15505215 + 524219 + 10.1073/pnas.0407076101 + + + + Bäckhed F, Manchester JK, Semenkovich CF, Gordon JI (2007) Mechanisms underlying the resistance to diet-induced obesity in germ-free mice. Proc Natl Acad Sci USA 104(3):979–984 + + 17210919 + 1764762 + 10.1073/pnas.0605374104 + + + + Bell JA et al (2021) Sex differences in systemic metabolites at four life stages: cohort study with repeated metabolomics. BMC Med 19(1):58 + + 33622307 + 7903597 + 10.1186/s12916-021-01929-2 + + + + Beserra BT et al (2015) A systematic review and meta-analysis of the prebiotics and synbiotics effects on glycaemia, insulin concentrations and lipid parameters in adult patients with overweight or obesity. Clin Nutr 34(5):845–858 + + 25456608 + 10.1016/j.clnu.2014.10.004 + + + + Bezirtzoglou E, Stavropoulou E (2011) Immunology and probiotic impact of the newborn and young children intestinal microflora. Anaerobe 17(6):369–374 + + 21515397 + 10.1016/j.anaerobe.2011.03.010 + + + + Bishehsari F, Voigt RM, Keshavarzian A (2020) Circadian rhythms and the gut microbiota: from the metabolic syndrome to cancer. Nat Rev Endocrinol 16(12):731–739 + + 33106657 + 8085809 + 10.1038/s41574-020-00427-4 + + + + Bondia-Pons I et al (2014) Metabolome and fecal microbiota in monozygotic twin pairs discordant for weight: a Big Mac challenge. FASEB journal: official publication Federation Am Soc Experimental Biology 28(9):4169–4179 + + 10.1096/fj.14-250167 + + + + Borén J et al (2020) Low-density lipoproteins cause atherosclerotic cardiovascular disease: pathophysiological, genetic, and therapeutic insights: a consensus statement from the European Atherosclerosis Society Consensus Panel. Eur Heart J 41(24):2313–2330 + + 32052833 + 7308544 + 10.1093/eurheartj/ehz962 + + + + Brischetto CS, Connor WE, Connor SL, Matarazzo JD (1983) Plasma lipid and lipoprotein profiles of cigarette smokers from randomly selected families: enhancement of hyperlipidemia and depression of high-density lipoprotein. Am J Cardiol 52(7):675–680 + + 6624657 + 10.1016/0002-9149(83)90396-X + + + + Buck GM, Sever LE, Batt RE, Mendola P (1997) Life-style factors and female infertility. Epidemiology 8(4):435–441 + + 9209860 + 10.1097/00001648-199707000-00015 + + + + Cano PG, Santacruz A, Trejo FM, Sanz Y (2013) Bifidobacterium CECT 7765 improves metabolic and immunological alterations associated with obesity in high-fat diet-fed mice. Obesity 21(11):2310–2321 + + 23418126 + 10.1002/oby.20330 + + + + Castaner O et al (2018a) The Gut Microbiome Profile in Obesity: A Systematic Review. International journal of endocrinology, 2018 + + + Castaner O et al (2018b) The Gut Microbiome Profile in Obesity: A Systematic Review. International journal of endocrinology, 2018: 4095789 + + + Chang CC, Liu TC, Lu CJ, Chiu HC, Lin WN (2023) Machine learning strategy for identifying altered gut microbiomes for diagnostic screening in myasthenia gravis. Front Microbiol 14:1227300 + + 37829445 + 10565662 + 10.3389/fmicb.2023.1227300 + + + + Cheng Z et al (2020) Revealing the Variation and Stability of Bacterial Communities in Tomato Rhizosphere Microbiota. Microorganisms, 8(2) + + + Cole JR et al (2014) Ribosomal Database Project: data and tools for high throughput rRNA analysis. Nucleic Acids Res 42(D1):D633–D642 + + 24288368 + 10.1093/nar/gkt1244 + + + + Comertpay B, Gov E (2025) Multiomics Analysis and Machine Learning-based Identification of Molecular Signatures for Diagnostic Classification in Liver Disease Types Along the Microbiota-gut-liver Axis. J Clin Exp Hepatol 15(5):102552 + + 40292334 + 12019836 + 10.1016/j.jceh.2025.102552 + + + + Cotillard A et al (2013) Dietary intervention impact on gut microbial gene richness. Nature 500(7464):585–588 + + 23985875 + 10.1038/nature12480 + + + + Cui Y, Li S, Yin Y, Li X, Li X (2022) Daytime restricted feeding promotes circadian desynchrony and metabolic disruption with changes in bile acids profiles and gut microbiota in C57BL/6 Male Mice. J Nutr Biochem 109:109121 + + 35940511 + 10.1016/j.jnutbio.2022.109121 + + + + de la Cuesta-Zuluaga J et al (2019) Age- and Sex-Dependent Patterns of Gut Microbial Diversity in Human Adults. mSystems, 4(4) + + + Dominguez-Bello MG, Blaser MJ, Ley RE, Knight R (2011) Development of the Human Gastrointestinal Microbiota and Insights From High-Throughput Sequencing. Gastroenterology 140(6):1713–1719 + + 21530737 + 10924805 + 10.1053/j.gastro.2011.02.011 + + + + Edgar RC (2013) UPARSE: highly accurate OTU sequences from microbial amplicon reads. Nat Methods 10(10):996–998 + + 23955772 + 10.1038/nmeth.2604 + + + + Esan O, Wierzbicki AS (2021) Triglycerides and cardiovascular disease. Curr Opin Cardiol 36(4):469–477 + + 33797418 + 10.1097/HCO.0000000000000862 + + + + Ference BA et al (2019) Association of Triglyceride-Lowering LPL Variants and LDL-C-Lowering LDLR Variants With Risk of Coronary Heart Disease. JAMA 321(4):364–373 + + 30694319 + 6439767 + 10.1001/jama.2018.20045 + + + + Fernandes V, Santos MJ, Perez A (2016) Statin-related myotoxicity. Endocrinol Nutr 63(5):239–249 + + 27005745 + 10.1016/j.endonu.2016.01.001 + + + + Fernández-Friera L et al (2017) Normal LDL-Cholesterol Levels Are Associated With Subclinical Atherosclerosis in the Absence of Risk Factors. J Am Coll Cardiol 70(24):2979–2991 + + 29241485 + 10.1016/j.jacc.2017.10.024 + + + + Franzosa EA et al (2014) Relating the metatranscriptome and metagenome of the human gut. Proc Natl Acad Sci USA 111(22):E2329–E2338 + + 24843156 + 4050606 + 10.1073/pnas.1319284111 + + + + Fu JY et al (2015) The Gut Microbiome Contributes to a Substantial Proportion of the Variation in Blood Lipids. Circul Res 117(9):817–824 + + 10.1161/CIRCRESAHA.115.306807 + + + + Gao NN et al (2016) Dyslipidemia in rural areas of North China: prevalence, characteristics, and predictive value. Lipids Health Dis 15:9 + + 10.1186/s12944-016-0328-y + + + + Garcia-Giustiniani D, Stein R (2016) Genet Dyslipidemia Arq Bras Cardiol 106(5):434–438 + + + Ghazalpour A, Cespedes I, Bennett BJ, Allayee H (2016) Expanding role of gut microbiota in lipid metabolism. Curr Opin Lipidol 27(2):141–147 + + 26855231 + 5125441 + 10.1097/MOL.0000000000000278 + + + + Gorden DL et al (2015) Biomarkers of NAFLD progression: a lipidomics approach to an epidemic. J Lipid Res 56(3):722–736 + + 25598080 + 4340319 + 10.1194/jlr.P056002 + + + + Gordon DJ et al (1987) Seasonal cholesterol cycles: the Lipid Research Clinics Coronary Primary Prevention Trial placebo group. Circulation 76(6):1224–1231 + + 3315294 + 10.1161/01.CIR.76.6.1224 + + + + Guo L et al (2022) Associations of gut microbiota with dyslipidemia based on sex differences in subjects from Northwestern China. World J Gastroenterol 28(27):3455–3475 + + 36158270 + 9346449 + 10.3748/wjg.v28.i27.3455 + + + + Han K et al (2023) Extension Region Domain of Soybean 7S Globulin Contributes to Serum Triglyceride-Lowering Effect via Modulation of Bile Acids Homeostasis. Mol Nutr Food Res 67(17):e2200883 + + 37423975 + 10.1002/mnfr.202200883 + + + + Hendijani F, Akbari V (2018) Probiotic supplementation for management of cardiovascular risk factors in adults with type II diabetes: A systematic review and meta-analysis. Clin Nutr 37(2):532–541 + + 28318686 + 10.1016/j.clnu.2017.02.015 + + + + Huang YJ, Ke W, Hu L, Wei YD, Dong MX (2023) Liquid chromatography-mass spectrometry-based metabolomic profiling reveals sex differences of lipid metabolism among the elderly from Southwest China. BMC Geriatr 23(1):156 + + 36944918 + 10031952 + 10.1186/s12877-023-03897-z + + + + Huang Z et al (2025) The synergistic role of gut microbiota and RNA in metabolic diseases: mechanisms and therapeutic insights. Front Microbiol 16:1504395 + + 39944642 + 11814227 + 10.3389/fmicb.2025.1504395 + + + + Ingelsson E et al (2007) Clinical utility of different lipid measures for prediction of coronary heart disease in men and women. JAMA 298(7):776–785 + + 17699011 + 10.1001/jama.298.7.776 + + + + Jasirwan COM, Lesmana CRA, Hasan I, Sulaiman AS, Gani RA (2019) The role of gut microbiota in non-alcoholic fatty liver disease: pathways of mechanisms. Biosci Microbiota Food Health 38(3):81–88 + + 31384519 + 6663510 + 10.12938/bmfh.18-032 + + + + Jellinger PS, American Association Of Clinical Endocrinologists And American College Of Endocrinology Guidelines For Management Of Dyslipidemia And Prevention Of Cardiovascular Disease - Executive Summary (2017) Endocr practice: official J Am Coll Endocrinol Am Association Clin Endocrinologists 23(4):479–497 + + 10.4158/EP171764.GL + + + + Kakiyama G et al (2013) Modulation of the fecal bile acid profile by gut microbiota in cirrhosis. J Hepatol 58(5):949–955 + + 23333527 + 3936319 + 10.1016/j.jhep.2013.01.003 + + + + Kim S et al (2020a) Akkermansia muciniphila Prevents Fatty Liver Disease, Decreases Serum Triglycerides, and Maintains Gut Homeostasis. Appl Environ Microbiol, 86(7) + + + Kim YS, Unno T, Kim BY, Park MS (2020b) Sex Differences in Gut Microbiota. World J Mens Health 38(1):48–60 + + 30929328 + 10.5534/wjmh.190009 + + + + Kindt A et al (2018) The gut microbiota promotes hepatic fatty acid desaturation and elongation in mice. Nat Commun 9(1):3760 + + 30218046 + 6138742 + 10.1038/s41467-018-05767-4 + + + + Klempfner R et al (2016) Elevated Triglyceride Level Is Independently Associated With Increased All-Cause Mortality in Patients With Established Coronary Heart Disease: Twenty-Two-Year Follow-Up of the Bezafibrate Infarction Prevention Study and Registry. Circ Cardiovasc Qual Outcomes 9(2):100–108 + + 26957517 + 10.1161/CIRCOUTCOMES.115.002104 + + + + Koh A, De Vadder F, Kovatcheva-Datchary P, Bäckhed F (2016) From Dietary Fiber to Host Physiology: Short-Chain Fatty Acids as Key Bacterial Metabolites. Cell 165(6):1332–1345 + + 27259147 + 10.1016/j.cell.2016.05.041 + + + + Kokkinos PF, Fernhall B (1999) Physical activity and high density lipoprotein cholesterol levels: what is the relationship? Sports Med 28(5):307–314 + + 10593643 + 10.2165/00007256-199928050-00002 + + + + Law MR, Wald NJ, Rudnicka AR (2003) Quantifying effect of statins on low density lipoprotein cholesterol, ischaemic heart disease, and stroke: systematic review and meta-analysis. Br Med J 326(7404):1423–1427 + + 10.1136/bmj.326.7404.1423 + + + + Le Chatelier E et al (2013) Richness of human gut microbiome correlates with metabolic markers. Nature 500(7464):541–546 + + 23985870 + 10.1038/nature12506 + + + + Lee H et al (2020) Association of four lipid components with mortality, myocardial infarction, and stroke in statin-naïve young adults: A nationwide cohort study. Eur J Prev Cardiol 27(8):870–881 + + 32013600 + 10.1177/2047487319898571 + + + + Lim GB (2016) Dyslipidaemia: Balancing the benefits and risks of statin therapy. Nat Rev Cardiol 13(11):632–633 + + 27681574 + 10.1038/nrcardio.2016.164 + + + + Liu H et al (2018) Astaxanthin Prevents Alcoholic Fatty Liver Disease by Modulating Mouse Gut Microbiota. Nutrients, 10(9) + + + Lv J et al (2023) Alterations of gut microbiota are associated with blood pressure: a cross-sectional clinical trial in Northwestern China. J translational Med 21(1):429 + + 10.1186/s12967-023-04176-6 + + + + Mach F et al (2020) 2019 ESC/EAS Guidelines for the management of dyslipidaemias: lipid modification to reduce cardiovascular risk. Eur Heart J 41(1):111–188 + + 31504418 + 10.1093/eurheartj/ehz455 + + + + Management JC o.t.C.G.f.L., 2023. Chinese guidelines for lipid management (2023). Chin J Cardiol, 51(3): 221–255 + + + Marques FZ et al (2019) Guidelines for Transparency on Gut Microbiome Studies in Essential and Experimental Hypertension. Hypertension (Dallas, Tex.: 1979), 74(6): 1279–1293 + + + Matey-Hernandez ML et al (2018) Genetic and microbiome influence on lipid metabolism and dyslipidemia. Physiol Genom 50(2):117–126 + + 10.1152/physiolgenomics.00053.2017 + + + + Meikle PJ, Wong G, Barlow CK, Kingwell BA (2014) Lipidomics: potential role in risk prediction and therapeutic monitoring for diabetes and cardiovascular disease. Pharmacol Ther 143(1):12–23 + + 24509229 + 10.1016/j.pharmthera.2014.02.001 + + + + Morales C et al (2022) Characterization of microbial communities from gut microbiota of hypercholesterolemic and control subjects. Front Cell Infect Microbiol 12:943609 + + 36523636 + 9745040 + 10.3389/fcimb.2022.943609 + + + + Moszak M, Szulińska M, Bogdańsk P (2020) You Are What You Eat-The Relationship between Diet, Microbiota, and Metabolic Disorders-A Review. Nutrients 12(4):1096 + + 32326604 + 7230850 + 10.3390/nu12041096 + + + + Nichols GA, Philip S, Reynolds K, Granowitz CB, Fazio S (2018) Increased Cardiovascular Risk in Hypertriglyceridemic Patients With Statin-Controlled LDL Cholesterol. J Clin Endocrinol Metab 103(8):3019–3027 + + 29850861 + 10.1210/jc.2018-00470 + + + + Nogal A, Valdes AM, Menni C (2021) The role of short-chain fatty acids in the interplay between gut microbiota and diet in cardio-metabolic health. Gut Microbes 13(1):1–24 + + 33764858 + 8007165 + 10.1080/19490976.2021.1897212 + + + + Novielli P et al (2024) Explainable artificial intelligence for microbiome data analysis in colorectal cancer biomarker identification. Front Microbiol 15:1348974 + + 38426064 + 10901987 + 10.3389/fmicb.2024.1348974 + + + + O’Doherty AF, Jones HS, Sathyapalan T, Ingle L, Carroll S (2017) The Effects of Acute Interval Exercise and Strawberry Intake on Postprandial Lipemia. Med Sci Sports Exerc 49(11):2315–2323 + + 29045326 + 10.1249/MSS.0000000000001341 + + + + Oliphant K, Allen-Vercoe E (2019) Macronutrient metabolism by the human gut microbiome: major fermentation by-products and their impact on host health. Microbiome 7:15 + + 10.1186/s40168-019-0704-8 + + + + Org E et al (2015) Genetic and environmental control of host-gut microbiota interactions. Genome Res 25(10):1558–1569 + + 26260972 + 4579341 + 10.1101/gr.194118.115 + + + + Organization WH (2025) Obesity and overweight Fact Sheet. Available from: https://www.who.int/news-room/fact-sheets/detail/obesity-and-overweight + + + Pan L et al (2016) The prevalence, awareness, treatment and control of dyslipidemia among adults in China. Atherosclerosis 248:2–9 + + 26978581 + 10.1016/j.atherosclerosis.2016.02.006 + + + + Plaza-Diaz J (2020) Nutrition, Microbiota and Noncommunicable Diseases. Nutrients 12(7):4 + + 10.3390/nu12071971 + + + + Qin JJ et al (2010) A human gut microbial gene catalogue established by metagenomic sequencing. Nature 464(7285):59–65 + + 20203603 + 3779803 + 10.1038/nature08821 + + + + Rabot S et al (2010) Germ-free C57BL/6J mice are resistant to high-fat-diet-induced insulin resistance and have altered cholesterol metabolism. FASEB journal: official publication Federation Am Soc Experimental Biology 24(12):4948–4959 + + + Raposeiras-Roubin S et al (2021) Triglycerides and Residual Atherosclerotic Risk. J Am Coll Cardiol 77(24):3031–3041 + + 34140107 + 8215641 + 10.1016/j.jacc.2021.04.059 + + + + Razavi AC, Potts KS, Kelly TN, Bazzano LA (2019) Sex, gut microbiome, and cardiovascular disease risk. Biol Sex Differ 10:14 + + 10.1186/s13293-019-0240-z + + + + Ridaura VK et al (2013) Gut Microbiota from Twins Discordant for Obesity Modulate Metabolism in Mice. Science 341(6150):1079–U49 + + 10.1126/science.1241214 + + + + Rinninella E et al (2019) What is the Healthy Gut Microbiota Composition? A Changing Ecosystem across Age, Environment, Diet, and Diseases. Microorganisms 7(1):22 + + 10.3390/microorganisms7010014 + + + + Riva A et al (2017) Pediatric obesity is associated with an altered gut microbiota and discordant shifts in Firmicutes populations. Environ Microbiol 19(1):95–105 + + 27450202 + 10.1111/1462-2920.13463 + + + + Rodriguez J, Delzenne NM (2021) Modulation of the gut microbiota-adipose tissue-muscle interactions by prebiotics. J Endocrinol 249(1):R1–R23 + + 33502337 + 10.1530/JOE-20-0499 + + + + Ruscica M et al (2019) Nutraceutical approach for the management of cardiovascular risk - a combination containing the probiotic Bifidobacterium longum BB536 and red yeast rice extract: results from a randomized, double-blind, placebo-controlled study. Nutr J 18(1):13 + + 30795775 + 6387491 + 10.1186/s12937-019-0438-2 + + + + Rynazal R et al (2023) Leveraging explainable AI for gut microbiome-based colorectal cancer classification. Genome Biol 24(1):21 + + 36759888 + 9912568 + 10.1186/s13059-023-02858-4 + + + + Schloissnig S et al (2013) Genomic variation landscape of the human gut microbiome. Nature 493(7430):45–50 + + 23222524 + 10.1038/nature11711 + + + + Schoeler M, Caesar R (2019) Dietary lipids, gut microbiota and lipid metabolism. Rev Endocr Metab Disord 20(4):461–472 + + 31707624 + 6938793 + 10.1007/s11154-019-09512-0 + + + + Seganfredo FB et al (2017) Weight-loss interventions and gut microbiota changes in overweight and obese patients: a systematic review. Obes reviews: official J Int Association Study Obes 18(8):832–851 + + 10.1111/obr.12541 + + + + Shimizu M, Hashiguchi M, Shiga T, Tamura H-o, Mochizuki M (2015) Meta-Analysis: Effects of Probiotic Supplementation on Lipid Profiles in Normal to Mildly Hypercholesterolemic Individuals. PloS one, 10(10) + + + Song D, Yang CS, Zhang X, Wang Y (2021) The relationship between host circadian rhythms and intestinal microbiota: A new cue to improve health by tea polyphenols. Crit Rev Food Sci Nutr 61(1):139–148 + + 31997655 + 10.1080/10408398.2020.1719473 + + + + Song PK et al (2019) Trends in Lipids Level and Dyslipidemia among Chinese Adults, 2002–2015. Biomed Environ Sci: BES 32(8):559–570 + + 31488232 + + + + Taskinen MR et al (1987) Alcohol-induced changes in serum lipoproteins and in their metabolism. Am Heart J 113(2 Pt 2):458–464 + + 3544760 + 10.1016/0002-8703(87)90614-4 + + + + Thompson PD, Panza G, Zaleski A, Taylor B (2016) Statin-Associated Side Effects. J Am Coll Cardiol 67(20):2395–2410 + + 27199064 + 10.1016/j.jacc.2016.02.071 + + + + Tomaro-Duchesneau C et al (2014) Effect of orally administered L. fermentum NCIMB 5221 on markers of metabolic syndrome: an in vivo analysis using ZDF rats. Appl Microbiol Biotechnol 98(1):115–126 + + 24121931 + 10.1007/s00253-013-5252-8 + + + + Turnbaugh PJ et al (2009) A core gut microbiome in obese and lean twins. Nature 457(7228):480–U7 + + 19043404 + 10.1038/nature07540 + + + + Turnbaugh PJ et al (2007) Hum Microbiome Project Nat 449(7164):804–810 + + + Turnbaugh PJ et al (2006) An obesity-associated gut microbiome with increased capacity for energy harvest. Nature 444(7122):1027–1031 + + 17183312 + 10.1038/nature05414 + + + + Uranga AP, Levine J, Jensen M (2005) Isotope tracer measures of meal fatty acid metabolism: reproducibility and effects of the menstrual cycle. Am J Physiol Endocrinol Metab 288(3):E547–E555 + + 15507534 + 10.1152/ajpendo.00340.2004 + + + + Velagapudi VR et al (2010) The gut microbiota modulates host energy and lipid metabolism in mice. J Lipid Res 51(5):1101–1112 + + 20040631 + 10.1194/jlr.M002774 + + + + Vergès B (2015) Pathophysiology of diabetic dyslipidaemia: where are we? Diabetologia 58(5):886–899 + + 25725623 + 4392164 + 10.1007/s00125-015-3525-8 + + + + Vital M, Karch A, Pieper DH (2017) Colonic Butyrate-Producing Communities in Humans: an Overview Using Omics Data. mSystems, 2(6) + + + Vítek L, Haluzík M (2016) The role of bile acids in metabolic regulation. J Endocrinol 228(3):R85–R96 + + 26733603 + 10.1530/JOE-15-0469 + + + + Vojinovic D et al (2019) Relationship between gut microbiota and circulating metabolites in population-based cohorts. Nat Commun 10(1):5813 + + 31862950 + 6925111 + 10.1038/s41467-019-13721-1 + + + + Wang F et al (2018) Perilla Oil Supplementation Improves Hypertriglyceridemia and Gut Dysbiosis in Diabetic KKAy Mice. Mol Nutr Food Res 62(24):e1800299 + + 30358922 + 6646911 + 10.1002/mnfr.201800299 + + + + Wang H et al (2023) Probio-X Relieves Symptoms of Hyperlipidemia by Regulating Patients’ Gut Microbiome, Blood Lipid Metabolism, and Lifestyle Habits. Microbiol Spectr 11(3):e0444022 + + 37022264 + 10269629 + 10.1128/spectrum.04440-22 + + + + Wang LX, Liu K, Gao DW, Hao JK (2013) Protective effects of two Lactobacillus plantarum strains in hyperlipidemic mice. World J Gastroenterol 19(20):3150–3156 + + 23716997 + 3662957 + 10.3748/wjg.v19.i20.3150 + + + + Wu Y, Zhang Q, Ren Y, Ruan Z (2017) Effect of probiotic Lactobacillus on lipid profile: A systematic review and meta-analysis of randomized, controlled trials. PLoS ONE 12(6):e0178868 + + 28594860 + 5464580 + 10.1371/journal.pone.0178868 + + + + Xia M et al (2024) Structural and functional alteration of the gut microbiota in elderly patients with hyperlipidemia. Front Cell Infect Microbiol 14:1333145 + + 38812752 + 11133514 + 10.3389/fcimb.2024.1333145 + + + + Yang DF et al (2023) Acute sleep deprivation exacerbates systemic inflammation and psychiatry disorders through gut microbiota dysbiosis and disruption of circadian rhythms. Microbiol Res 268:127292 + + 36608535 + 10.1016/j.micres.2022.127292 + + + + Yatsunenko T et al (2012) Human gut microbiome viewed across age and geography. Nature 486(7402):222–227 + + 22699611 + 3376388 + 10.1038/nature11053 + + + + Yoo S-R et al (2013) Probiotics L. plantarum and L. curvatus in Combination Alter Hepatic Lipid Metabolism and Suppress Diet-Induced Obesity. Obesity 21(12):2571–2578 + + 23512789 + 10.1002/oby.20428 + + + + Zhao D, Liu J, Wang M, Zhang X, Zhou M (2019) Epidemiology of cardiovascular disease in China: current features and implications. Nat Rev Cardiol 16(4):203–212 + + 30467329 + 10.1038/s41569-018-0119-4 + + + + Zhu Y et al (2025) Machine learning algorithms reveal gut microbiota signatures associated with chronic hepatitis B-related hepatic fibrosis. World J Gastroenterol 31(16):105985 + + 40308807 + 12038523 + 10.3748/wjg.v31.i16.105985 + + + + +
+ + + 42215821 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1550-7416 + + 28 + 4 + + 2026 + May + 29 + + + The AAPS journal + AAPS J + + New Frontiers of Drug Development Through the Use of New Approach Methodologies. + 112 + 10.1208/s12248-026-01263-6 + + On November 2025, AAPS PharmSci 360 convened a symposium that included experts in the application of various types of New Approach Methodologies (NAMs). They shared their experiences and insights on topics that included microphysiological systems (MPS), the use of 3D organoids, and in silico tools. MPS systems were explored from the perspective of their testing and qualification through an academia-industry-government tissue chip testing consortium whose mission is to perform context-of-use-based testing of MPS and conduct comparative evaluations to support the use of MPS systems in safety assessments. 3D organoids were described and insights shared on how and when they may provide an appropriate tool for evaluating drug safety and effectiveness, and their use in supporting personalized medicine. Regarding in silico tools, examples were provided to describe their growing utility in predicting drug toxicity, population variability, and its potential benefits over traditional evidence-based toxicology. These tools include in silico models (e.g., physiologically based pharmacokinetic models), Artificial Intelligence (AI), and Machine Learning (ML) which, unlike other aspects of model informed drug development, reduce reliance on predefined models and allows for the integration of diverse sources of data. Computationally, these tools can generate predictions in hours where it would otherwise have taken weeks or months (and extensive experimentation). Within this meeting report, we highlight the key issues discussed during that symposium and share additional aspects to consider when developing a NAMs-based roadmap for specific contexts of use. + © 2026. This is a U.S. Government work and not under copyright protection in the US; foreign copyright protection may apply. + + + + Martinez + M N + MN + 0000-0002-4512-853X + + Food and Drug Administration, Center for Veterinary Medicine, Office of Generic Animal Drugs, CPK1 5001 Campus Drive, College Park, MD, 20740-3835, USA. marilyn.martinez@fda.hhs.gov. + + + + Mochel + J P + JP + 0000-0002-0997-3111 + + Precision One Health Initiative and Biomedical & Translational Sciences Institute (One Health), Diane L. Wynocker Endowed Professor, Athens, GA, USA. + + + + Allenspach + K + K + 0000-0002-2168-5809 + + Precision One Health and Department of Pathology, College of Veterinary Medicine, The University of Georgia, 501 D. W. Brooks Drive, Athens, GA, 30602, USA. + + + + Zdyrski + C + C + 0000-0002-7556-5298 + + Precision One Health and College of Veterinary Medicine, The University of Georgia, 501 D. W. Brooks Drive, Athens, GA, 30602, USA. + + + + Krishna + S + S + 0000-0002-4960-2753 + + Physicians Committee for Responsible Medicine, 5100 Wisconsin Ave., NW, Suite 400, Washington, DC, 20016, USA. + + + + Rusyn + I + I + 0000-0001-9340-7384 + + Department of Veterinary Physiology and Pharmacology, Texas A&M College of Veterinary Medicine & Biomedical Sciences, 4466 TAMU, College Station, TX, 77843, USA. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + United States + AAPS J + 101223209 + 1550-7416 + + IM + + + Drug Development + methods + trends + + + Humans + + + Microphysiological Systems + + + Computer Simulation + + + Organoids + + + Animals + + + Machine Learning + + + Artificial Intelligence + + + + AI + NAMs + PBPK models + organ-on-a-chip + organoid + + Declarations. Disclaimer: The findings and conclusions in this research have not been formally disseminated by the Food and Drug Administration and should not be construed to represent any Agency endorsement, determination, or policy. The mention of commercial products, their sources, or their use in connection with material reported herein is not to be construed as either an actual or implied endorsement of such products by the FDA. Animal Use and Assurances: No animals were used in the writing of this Commentary. A.I. Statement: "No, but part of the graphical abstract had assist from Google AI. This was indicated in the figure.". Conflict of interest: Ivan Rusyn has no conflicts of interest to declare. Jonathan Mochel is a co-founder of 3D Health Solutions Inc., a small biotechnology company specializing in the development of animal-derived organoids for drug testing. Karin Allenspach co-founder of 3D Health Solutions. She serves as a consultant for Ceva Animal Health, Antech Diagnostics, hills, Royal Canin, Purina, and Heel GmbH. Christopher Zdyrski is the Director of Research and Product Development at 3D Health Solutions. Shagun Krishna has no conflicts of interest to declare. Marilyn N. Martinez has no conflicts of interest to declare. +
+ + + + 2026 + 3 + 12 + + + 2026 + 5 + 18 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 25 + + + epublish + + 42215821 + 10.1208/s12248-026-01263-6 + 10.1208/s12248-026-01263-6 + + + + Avila AM, Bebenek I, Mendrick DL, Peretz J, Yao J, Brown PC. Gaps and challenges in nonclinical assessments of pharmaceuticals: An FDA/CDER perspective on considerations for development of new approach methodologies. Regul Toxicol Pharmacol. 2023;139:105345. https://doi.org/10.1016/j.yrtph.2023.105345 . + + 10.1016/j.yrtph.2023.105345 + 36746323 + + + + Avila AM, Bebenek I, Bonzo JA, Bourcier T, Davis Bruno KL, Carlson DB, et al. An FDA/CDER perspective on nonclinical testing strategies: classical toxicology approaches and new approach methodologies (NAMs). Regul Toxicol Pharmacol. 2020;114:104662. https://doi.org/10.1016/j.yrtph.2020.104662 . + + 10.1016/j.yrtph.2020.104662 + 32325112 + + + + Jia Y, Jackye P, Bebenek I, Avila A, Alapatt T, Lee B, et al. FDA/CDER/OND experience with new approach mthodologies (NAMs). Int J Toxicol. 2025;10915818251384270. https://doi.org/10.1177/10915818251384270 . + + 10.1177/10915818251384270 + + + + Portela JMD, Paul P, Moriarty O, Theunissen P, Beken S, Brendler-Schwaab S, et al. Review on organs-on-chips for medicines safety assessment: a European regulatory perspective. ALTEX. 2026;43:98–112. https://doi.org/10.14573/altex.2502061 . Accessed 24 May 2026. + + + U.S. FDA. Roadmap to reducing animal testing in preclinical safety studies [Internet]. 2025.  https://www.fda.gov/files/newsroom/published/roadmap_to_reducing_animal_testing_in_preclinical_safety_studies.pdf . Accessed 25 May 2026. + + + Krebs CE, Camp C, Constantino H, Courtot L, Kavanagh O, McCarthy J, et al. Author guide for addressing animal methods bias in publishing. Adv Sci. 2023;10:2303226. https://doi.org/10.1002/advs.202303226 . + + 10.1002/advs.202303226 + + + + PCRM. The physicians committee recommends the NIH fund human-based research infrastructure [Internet]. 2025. https://www.pcrm.org/news/good-science-digest/physicians-committee-recommends-nih-fund-human-based-research . Accessed 24 May 2026. + + + Berggren E, Worth AP. Managing change while phasing out animal testing in chemical safety assessments – a collection of stakeholder experiences and expectations. NAM J. 2026;2:100079. https://doi.org/10.1016/j.namjnl.2026.100079 . + + 10.1016/j.namjnl.2026.100079 + + + + Hope L, Bailey J. Breaking down the barriers to animal-free research. Altern Lab Anim. 2025;53:215–31. https://doi.org/10.1177/02611929251349465 . + + 10.1177/02611929251349465 + 40624753 + + + + Oyetade OB, Allen DG, Carder J, Farley-Dawson EA, Reinke EN, Marko S, et al. Ways to broaden the awareness, consideration and adoption of new approach methodologies (NAMs)*. ALTEX. ALTEX Edition; 2025;42:714–26. https://doi.org/10.14573/altex.2505281 . + + + U.S. FDA. Implementing alternative methods: agency-wide efforts for advancing development, qualification, and implementation of new alternative methods for product testing [Internet]. 2025 [cited 2026 Jan 26]. https://www.fda.gov/science-research/advancing-alternative-methods-fda/implementing-alternative-methods . Accessed 26 Jan 2026. + + + Alves VM, Borba J, Capuzzi SJ, Muratov E, Andrade CH, Rusyn I, et al. Oy Vey! A comment on “Machine learning of toxicological big data enables read-across structure activity relationships outperforming animal test reproducibility”. Toxicol Sci [Internet]. 2019;167:3–4. https://doi.org/10.1093/toxsci/kfy286 . + + 10.1093/toxsci/kfy286 + 30500930 + 6317419 + + + + Beilmann M, Adkins K, Boonen HCM, Hewitt P, Hu W, Mader R, et al. Application of new approach methodologies for nonclinical safety assessment of drug candidates. Nat Rev Drug Discov. 2025;24:705–25. https://doi.org/10.1038/s41573-025-01182-9 . + + 10.1038/s41573-025-01182-9 + 40316753 + + + + Dao T, Sadrieh N. A CDER perspective: landscape of New approach methodologies (NAMs) submitted in drug development programs. Regul Toxicol Pharmacol. 2026;165:106007. https://doi.org/10.1016/j.yrtph.2025.106007 . + + 10.1016/j.yrtph.2025.106007 + 41360337 + + + + Yao J, Peretz J, Bebenek I, Avila A, Alapatt T, Lee B, et al. FDA/CDER/OND experience with New approach methodologies (NAMs). Int J Toxicol. 2026;45:136–56. https://doi.org/10.1177/10915818251384270 . + + 10.1177/10915818251384270 + 41231273 + + + + U.S. Food & Drug Administration. CDER/Office of new drugs streamlined nonclinical studies and acceptable New approach methodologies (NAMs) [Internet]. [cited 2026 Apr 25]. https://www.fda.gov/about-fda/center-drug-evaluation-and-research-cder/cderoffice-new-drugs-streamlined-nonclinical-studies-and-acceptable-new-approach-methodologies-nams . Accessed 25 Apr 2026. + + + U.S. Food & Drug Administration. General considerations for the use of new approach methodologies in drug development [Internet]. [cited 2026 Apr 25]. https://www.fda.gov/regulatory-information/search-fda-guidance-documents/general-considerations-use-new-approach-methodologies-drug-development . Accessed 25 Apr 2026. + + + The 3Rs Collaborative. Microphysiological systems technology hub [Internet].  https://3rc.org/microphysiological-systems-companies/ . Accessed 24 May 2026. + + + Marx U, Beken S, Chen Z, Dehne EM, Doherty A, Ewart L, et al. Biology-inspired dynamic microphysiological system approaches to revolutionize basic research, healthcare and animal welfare. ALTEX. ALTEX Edition. 2025. p. 204–23. https://doi.org/10.14573/altex.2410112 . + + + Marx U, Akabane T, Andersson TB, Baker E, Beilmann M, Beken S, et al. Biology-inspired microphysiological systems to advance patient benefit and animal welfare in drug development. ALTEX. ALTEX Edition. 2020;37:365–94. https://doi.org/10.14573/altex.2001241 . + + + Baker TK, Van Vleet TR, Mahalingaiah PK, Grandhi TSP, Evers R, Ekert J, et al. The current status and use of microphysiological systems by the pharmaceutical industry: the international consortium for innovation and quality microphysiological systems affiliate survey and commentary. Drug Metab Dispos. 2024;52:198–209. https://doi.org/10.1124/dmd.123.001510 . + + 10.1124/dmd.123.001510 + 38123948 + + + + Baran SW, Brown PC, Baudy AR, Fitzpatrick SC, Frantz C, Fullerton A, et al. Perspectives on the evaluation and adoption of complex in vitro models in drug development: workshop with the FDA and the pharmaceutical industry (IQ MPS Affiliate). ALTEX. 2022;39:297–314. https://doi.org/10.14573/altex.2112203 . + + 10.14573/altex.2112203 + 35064273 + + + + Tasnim F, Huang X, Lee CZW, Ginhoux F, Yu H. Recent advances in models of immune-mediated drug-induced liver injury. Front Toxicol [Internet]. 2021;3–2021.  https://www.frontiersin.org/journals/toxicology/articles/10.3389/ftox.2021.605392 . Accessed 24 May 2026. + + + Lim AY, Kato Y, Sakolish C, Valdiviezo A, Han G, Bajaj P, et al. Reproducibility and robustness of a liver microphysiological system PhysioMimix LC12 under varying culture conditions and cell type combinations. Bioengineering. 2023. https://doi.org/10.3390/bioengineering10101195 . + + 10.3390/bioengineering10101195 + 38002450 + 10669060 + + + + Kato Y, Lim AY, Sakolish C, Valdiviezo A, Moyer HL, Hewitt P, et al. Analysis of reproducibility and robustness of OrganoPlate® 2-lane 96, a liver microphysiological system for studies of pharmacokinetics and toxicological assessment of drugs. Toxicol In Vitro. 2022;85:105464. https://doi.org/10.1016/j.tiv.2022.105464 . + + 10.1016/j.tiv.2022.105464 + 36057418 + 10015056 + + + + Ewart L, Apostolou A, Briggs SA, Carman CV, Chaff JT, Heng AR, et al. Performance assessment and economic analysis of a human Liver-Chip for predictive toxicology. Commun Med. 2022;2:154. https://doi.org/10.1038/s43856-022-00209-1 . + + 10.1038/s43856-022-00209-1 + 36473994 + 9727064 + + + + Pamies D, Ekert J, Zurich M-G, Frey O, Werner S, Piergiovanni M, et al. Recommendations on fit-for-purpose criteria to establish quality management for microphysiological systems and for monitoring their reproducibility. Stem Cell Rep. 2024;19:604–17. https://doi.org/10.1016/j.stemcr.2024.03.009 . + + 10.1016/j.stemcr.2024.03.009 + + + + Rusyn I, Sakolish C, Kato Y, Stephan C, Vergara L, Hewitt P, et al. Microphysiological systems evaluation: experience of TEX-VAL tissue chip testing consortium. Toxicol Sci. 2022;188:143–52. https://doi.org/10.1093/toxsci/kfac061 . + + 10.1093/toxsci/kfac061 + 35689632 + 9333404 + + + + Sakolish C, Reese CE, Luo Y-S, Valdiviezo A, Schurdak ME, Gough A, et al. Analysis of reproducibility and robustness of a human microfluidic four-cell liver acinus microphysiology system (LAMPS). Toxicology. 2021;448:152651. https://doi.org/10.1016/j.tox.2020.152651 . + + 10.1016/j.tox.2020.152651 + 33307106 + + + + Sakolish C, Luo Y-S, Valdiviezo A, Vernetti LA, Rusyn I, Chiu WA. Prediction of hepatic drug clearance with a human microfluidic four-cell liver acinus microphysiology system. Toxicology. 2021;463:152954. https://doi.org/10.1016/j.tox.2021.152954 . + + 10.1016/j.tox.2021.152954 + 34543702 + 8585690 + + + + Sakolish C, Chen Z, Dalaijamts C, Mitra K, Liu Y, Fulton T, et al. Predicting tubular reabsorption with a human kidney proximal tubule tissue-on-a-chip and physiologically-based modeling. Toxicol In Vitro. 2020;63:104752. https://doi.org/10.1016/j.tiv.2019.104752 . + + 10.1016/j.tiv.2019.104752 + 31857146 + + + + Sakolish C, House JS, Chramiec A, Liu Y, Chen Z, Halligan SP, et al. Tissue-engineered bone tumor as a reproducible human in vitro model for studies of anticancer drugs. Toxicol Sci. 2020;173:65–76. https://doi.org/10.1093/toxsci/kfz220 . + + 10.1093/toxsci/kfz220 + 31626302 + 8204946 + + + + Liu Y, Sakolish C, Chen Z, Phan DTT, Bender RHF, Hughes CCW, et al. Human in vitro vascularized micro-organ and micro-tumor models are reproducible organ-on-a-chip platforms for studies of anticancer drugs. Toxicology. 2020;445:152601. https://doi.org/10.1016/j.tox.2020.152601 . + + 10.1016/j.tox.2020.152601 + 32980478 + 7606810 + + + + Sakolish C, Weber EJ, Kelly EJ, Himmelfarb J, Mouneimne R, Grimm FA, et al. Technology transfer of the microphysiological systems: a case study of the human proximal tubule tissue chip. Sci Rep. 2018;8:14882. https://doi.org/10.1038/s41598-018-33099-2 . + + 10.1038/s41598-018-33099-2 + 30291268 + 6173737 + + + + Sakolish C, Lin H-C, Moyer HL, Ford LC, Christen CH, Wetmore BA, et al. An in vitro-in silico workflow for predicting renal clearance of environmental chemicals and drugs. Toxicology. 2026;519:154336. https://doi.org/10.1016/j.tox.2025.154336 . + + 10.1016/j.tox.2025.154336 + 41224188 + + + + Moyer HL, Vergara L, Stephan C, Sakolish C, Ford LC, Tsai H-H, et al. Comparative analysis of Caco-2 cells and human jejunal and duodenal enteroid-derived cells in gel- and membrane-based barrier models of intestinal permeability. Toxicol Sci. 2025;204:181–97. https://doi.org/10.1093/toxsci/kfaf011 . + + 10.1093/toxsci/kfaf011 + 39886939 + 11939079 + + + + Sakolish C, Tsai HHD, Lin HC, Bajaj P, Villenave R, Ferguson SS, et al. Comparative analysis of proximal tubule cell sources for in vitro studies of renal proximal tubule toxicity. Biomedicines. 2025. https://doi.org/10.3390/biomedicines13030563 . + + 10.3390/biomedicines13030563 + 40149543 + 11940618 + + + + Sakolish C, Moyer HL, Tsai H-H, Ford LC, Dickey AN, Bajaj P, et al. Comparative analysis of the physiological and transport functions of various sources of renal proximal tubule cells under static and fluidic conditions in PhysioMimix T12 platform. Drug Metab Dispos. 2025. https://doi.org/10.1124/dmd.124.001488 . + + 10.1124/dmd.124.001488 + 39884810 + + + + Negi CK, Sakolish C, Tsai H-H, Nitsche K, Gang H, Bajaj P, et al. Comparative analysis of species-specific hepatocyte function and drug effects in a liver microphysiological system PhysioMimix LC12 and 96-well plates. ACS Pharmacol Transl Sci. 2025;8:4138–58. https://doi.org/10.1021/acsptsci.5c00554 . + + 10.1021/acsptsci.5c00554 + 41262563 + 12624441 + + + + Moyer HL, Vergara L, Stephan C, Sakolish C, Lin HC, Chiu WA, et al. Human small intestinal tissue models to assess barrier permeability: comparative analysis of Caco-2 cells, jejunal and duodenal enteroid-derived cells, and EpiIntestinalTM tissues in membrane-based cultures with and without flow. Bioengineering. 2025. https://doi.org/10.3390/bioengineering12080809 . Multidisciplinary Digital Publishing Institute (MDPI). + + 10.3390/bioengineering12080809 + 40868322 + 12384003 + + + + Nitsche KS, Sakolish C, Carmichael PL, Hewitt P, Bajaj P, Ferguson SS, et al. Exploring the potential of liver microphysiological systems of varied configurations to model cholestatic chemical effects. Arch Toxicol. 2025. https://doi.org/10.1007/s00204-025-04263-1 . + + 10.1007/s00204-025-04263-1 + 41361122 + 12967466 + + + + Lin H-C, Sakolish C, Moyer HL, Carmichael PL, Baltazar MT, Ferguson SS, et al. An in vitro-in silico workflow for predicting renal clearance of PFAS. Toxicol Appl Pharmacol. 2024;489:117015. https://doi.org/10.1016/j.taap.2024.117015 . + + 10.1016/j.taap.2024.117015 + 38917890 + 11585971 + + + + Sakolish C, Moyer HL, Tsai H-H, Ford LC, Dickey AN, Wright FA, et al. Analysis of reproducibility and robustness of a renal proximal tubule microphysiological system OrganoPlate 3-lane 40 for in vitro studies of drug transport and toxicity. Toxicol Sci. 2023;196:52–70. https://doi.org/10.1093/toxsci/kfad080 . + + 10.1093/toxsci/kfad080 + 37555834 + 10613961 + + + + Sakolish C, Georgescu A, Huh DD, Rusyn I. A model of human small airway on a chip for studies of subacute effects of inhalation toxicants. Toxicol Sci. 2022;187:267–78. https://doi.org/10.1093/toxsci/kfac036 . + + 10.1093/toxsci/kfac036 + 35357501 + 9154286 + + + + Thenuwara G, Javed B, Singh B, Tian F. Biosensor-enhanced organ-on-a-chip models for investigating Glioblastoma tumor microenvironment dynamics. Sensors Basel. 2024. https://doi.org/10.3390/s24092865 . + + 10.3390/s24092865 + 39338706 + 11435446 + + + + Macko P, Palosaari T, Whelan M. Extrapolating from acute to chronic toxicity in vitro. Toxicol In Vitro. 2021;76:105206. https://doi.org/10.1016/j.tiv.2021.105206 . + + 10.1016/j.tiv.2021.105206 + 34186185 + 8434427 + + + + Sato T, Vries RG, Snippert HJ, van de Wetering M, Barker N, Stange DE, et al. Single Lgr5 stem cells build crypt-villus structures in vitro without a mesenchymal niche. Nature. 2009;459:262–5. https://doi.org/10.1038/nature07935 . + + 10.1038/nature07935 + 19329995 + + + + Sakthivel V, Dharshan SS, Namasivayam SKR, Arockiaraj J. Advances in 3D organoids and organ-on-a-chip systems for biomedical research. J Biomed Mater Res A. 2026;114:e70028. https://doi.org/10.1002/jbma.70028 . + + 10.1002/jbma.70028 + 41481795 + + + + Zhao Z, Chen X, Dowbaj AM, Sljukic A, Bratlie K, Lin L, et al. Organoids. Nat Rev Methods Primers. 2022;2:94. https://doi.org/10.1038/s43586-022-00174-y . + + 10.1038/s43586-022-00174-y + 37325195 + 10270325 + + + + Clevers H. Modeling development and disease with organoids. Cell. 2016;165:1586–97. https://doi.org/10.1016/j.cell.2016.05.082 . + + 10.1016/j.cell.2016.05.082 + 27315476 + + + + Fatehullah A, Tan SH, Barker N. Organoids as an in vitro model of human development and disease. Nat Cell Biol. 2016;18:246–54. https://doi.org/10.1038/ncb3312 . + + 10.1038/ncb3312 + 26911908 + + + + National Institutes of Health. NIH Standardized Organoid Modeling (SOM) Center [Internet]. [cited 2026 Apr 25]. https://www.nih.gov/som . Accessed 25 Apr 2026. + + + Zdyrski C, Gabriel V, Ospina O, Nicholson HF, Catucci M, Melvin BJ, et al. Establishment and transcriptomic characterization of canine organoids from multiple tissues. Front Cell Dev Biol [Internet]. 2025;13–2025. https://www.frontiersin.org/journals/cell-and-developmental-biology/articles/10.3389/fcell.2025.1680376 . Accessed 24 May 2026. + + + Zhu J, Ji L, Chen Y, Li H, Huang M, Dai Z, et al. Organoids and organs-on-chips: insights into predicting the efficacy of systemic treatment in colorectal cancer. Cell Death Discov. 2023;9:72. https://doi.org/10.1038/s41420-023-01354-9 . + + 10.1038/s41420-023-01354-9 + 36813783 + 9947255 + + + + Park SE, Georgescu A, Huh D. Organoids-on-a-chip. Science. 2019;364:960–5. https://doi.org/10.1126/science.aaw7894 . + + 10.1126/science.aaw7894 + 31171693 + 7764943 + + + + Wang H, Ning X, Zhao F, Zhao H, Li D. Human organoids-on-chips for biomedical research and applications. Theranostics. 2024;14:788–818. https://doi.org/10.7150/thno.90492 . + + 10.7150/thno.90492 + 38169573 + 10758054 + + + + Spiró Z, El-Heliebi A, Mair MJ, Pieber TR, Prietl B, Spiegl-Kreinecker S, et al. Ex vivo drug screening on patient-derived tumor material to advance functional precision in oncology: an overview on current approaches and unresolved challenges. Cancer Treat Rev. 2026. https://doi.org/10.1016/j.ctrv.2025.103072 . + + 10.1016/j.ctrv.2025.103072 + 41475298 + + + + Lo Y-H, Karlsson K, Kuo CJ. Applications of organoids for cancer biology and precision medicine. Nat Cancer. 2020;1:761–73. https://doi.org/10.1038/s43018-020-0102-y . + + 10.1038/s43018-020-0102-y + 34142093 + 8208643 + + + + Oh JH, Cho J-Y. Comparative oncology: overcoming human cancer through companion animal studies. Exp Mol Med. 2023;55:725–34. https://doi.org/10.1038/s12276-023-00977-3 . + + 10.1038/s12276-023-00977-3 + 37009802 + 10167357 + + + + Allenspach K, Zavros Y, Elbadawy M, Zdyrski C, Mochel JP. Leveraging the predictive power of 3D organoids in dogs to develop new treatments for man and man’s best friend. BMC Biol. 2023;21:297. https://doi.org/10.1186/s12915-023-01799-5 . + + 10.1186/s12915-023-01799-5 + 38155352 + 10755934 + + + + Fang Z, Li P, Du F, Shang L, Li L. The role of organoids in cancer research. Exp Hematol Oncol. 2023;12:69. https://doi.org/10.1186/s40164-023-00433-y . + + 10.1186/s40164-023-00433-y + 37537666 + 10401879 + + + + Kothadiya S, Cutshaw G, Uthaman S, Hassan N, Sahoo DK, Wickham H, et al. Cisplatin-induced metabolic responses measured with Raman spectroscopy in cancer cells, spheroids, and canine-derived organoids. ACS Appl Mater Interfaces. 2024;16:50267–81. https://doi.org/10.1021/acsami.4c08629 . + + 10.1021/acsami.4c08629 + 39284013 + + + + Peterson HM, Zdyrski C, Allenspach K, Mochel JP, Trepanier LA. Urothelial genotoxicity of household chemicals in healthy canine urinary bladder organoids relative to observed urinary exposures in pet dogs. Front Vet Sci. 2025. https://doi.org/10.3389/fvets.2025.1702980 . + + 10.3389/fvets.2025.1702980 + 41502853 + 12771537 + + + + Elbadawy M, Usui T, Mori T, Tsunedomi R, Hazama S, Nabeta R, et al. Establishment of a novel experimental model for muscle-invasive bladder cancer using a dog bladder cancer organoid culture. Cancer Sci. 2019;110:2806–21. https://doi.org/10.1111/cas.14118 . + + 10.1111/cas.14118 + 31254429 + 6726682 + + + + Ettayebi K, Crawford SE, Murakami K, Broughman JR, Karandikar U, Tenge VR, et al. Replication of human noroviruses in stem cell–derived human enteroids. Science. 2016;353:1387–93. https://doi.org/10.1126/science.aaf5211 . + + 10.1126/science.aaf5211 + 27562956 + 5305121 + + + + Zou WY, Blutt SE, Crawford SE, Ettayebi K, Zeng X-L, Saxena K, et al. Human intestinal enteroids: new models to study gastrointestinal virus infections. In: Turksen K, editor. Organoids: Stem Cells, Structure, and Function [Internet]. New York, NY: Springer New York; 2019. p. 229–47. https://doi.org/10.1007/7651_2017_1 . + + + Nicholson HF, Zdyrski C, Leyson CM, Corbett MP, Kumar N, Catucci M, et al. Development and characterization of chicken lung organoids for in vitro modeling of avian influenza virus-host cell interaction. Sci Rep. 2026;16:1572. https://doi.org/10.1038/s41598-025-30641-x . + + 10.1038/s41598-025-30641-x + 41519874 + 12800103 + + + + Lee SH, Hu W, Matulay JT, Silva MV, Owczarek TB, Kim K, et al. Tumor evolution and drug response in patient-derived organoid models of bladder cancer. Cell. 2018;173:515-528.e17. https://doi.org/10.1016/j.cell.2018.03.017 . + + 10.1016/j.cell.2018.03.017 + 29625057 + 5890941 + + + + Taurin S, Alzahrani R, Aloraibi S, Ashi L, Alharmi R, Hassani N. Patient-derived tumor organoids: a preclinical platform for personalized cancer therapy. Transl Oncol. 2025;51:102226. https://doi.org/10.1016/j.tranon.2024.102226 . + + 10.1016/j.tranon.2024.102226 + 39622151 + + + + Tindle C, Fuller M, Fonseca A, Taheri S, Ibeawuchi S-R, Beutler N, et al. Adult stem cell-derived complete lung organoid models emulate lung disease in COVID-19. Elife. 2021;10:e66417. https://doi.org/10.7554/eLife.66417 . + + 10.7554/eLife.66417 + 34463615 + 8463074 + + + + Giles R, Meijer EM, Maas RGC, van Dijk CGM, Verhaar MC, Cheng C. Animal-free alternatives for Matrigel in human iPSC-derived blood vessel organoid culture. Sci Rep. 2025;15:36042. https://doi.org/10.1038/s41598-025-20091-w . + + 10.1038/s41598-025-20091-w + 41094042 + 12528733 + + + + Fujii M, Matano M, Toshimitsu K, Takano A, Mikami Y, Nishikori S, et al. Human intestinal organoids maintain self-renewal capacity and cellular diversity in niche-inspired culture condition. Cell Stem Cell. 2018;23:787-793.e6. https://doi.org/10.1016/j.stem.2018.11.016 . + + 10.1016/j.stem.2018.11.016 + 30526881 + + + + Chakrabarti J, Koh V, So JBY, Yong WP, Zavros Y. A preclinical human-derived autologous gastric cancer organoid/Immune cell co-culture model to predict the efficacy of targeted therapies. J Vis Exp. 2021.  https://doi.org/10.3791/61443 . + + + Harter MF, Recaldin T, Gjorevski N. Organoids as models of immune-organ interaction. Cell Rep. 2025. https://doi.org/10.1016/j.celrep.2025.116214 . + + 10.1016/j.celrep.2025.116214 + 40906560 + + + + Chandra L, Borcherding DC, Kingsbury D, Atherly T, Ambrosini YM, Bourgois-Mochel A, et al. Derivation of adult canine intestinal organoids for translational research in gastroenterology. BMC Biol. 2019;17:33. https://doi.org/10.1186/s12915-019-0652-6 . + + 10.1186/s12915-019-0652-6 + 30975131 + 6460554 + + + + Ambrosini YM, Park Y, Jergens AE, Shin W, Min S, Atherly T, et al. Recapitulation of the accessible interface of biopsy-derived canine intestinal organoids to study epithelial-luminal interactions. PLoS One. 2020;15:e0231423. https://doi.org/10.1371/journal.pone.0231423 . + + 10.1371/journal.pone.0231423 + 32302323 + 7164685 + + + + Sahoo DK, Martinez MN, Dao K, Gabriel V, Zdyrski C, Jergens AE, et al. Canine intestinal organoids as a novel in vitro model of intestinal drug permeability: a proof-of-concept study. Cells. 2023. https://doi.org/10.3390/cells12091269 . + + 10.3390/cells12091269 + 37998395 + 10670380 + + + + Corbett MP, Gabriel V, Livania V, Díaz-Regañón D, Ralston A, Zdyrski C, et al. A preclinical model to assess intestinal barrier integrity using canine enteroids and colonoids. Biology. 2025. https://doi.org/10.3390/biology14030270 . + + 10.3390/biology14030270 + 40136526 + 11939752 + + + + Martinez MN, Mochel JP, Toutain P-L. Evolving value and validity of animal models in veterinary therapeutic research: impact of scientific progress. Eur J Pharm Sci. 2025;210:107111. https://doi.org/10.1016/j.ejps.2025.107111 . + + 10.1016/j.ejps.2025.107111 + 40286991 + + + + Moshksayan K, Khanna R, Camli B, Yakay ZN, Harihara A, Zdyrski C, et al. A microfluidic platform for culturing and high-content imaging of adult stem cell-derived organoids. Sci Rep [Internet]. 2025;15:40162. https://doi.org/10.1038/s41598-025-23883-2 . + + 10.1038/s41598-025-23883-2 + 41249220 + 12623891 + + + + Moshksayan K, Harihara A, Mondal S, Hegarty E, Atherly T, Sahoo DK, et al. OrganoidChip facilitates hydrogel-free immobilization for fast and blur-free imaging of organoids. Sci Rep. 2023;13:11268. https://doi.org/10.1038/s41598-023-38212-8 . + + 10.1038/s41598-023-38212-8 + 37438409 + 10338466 + + + + U.S. FDA. USFDA Guidance for industry: M15 general principles for model-informed drug development [Internet]. 2024 [cited 2026 Jan 5]. https://www.fda.gov/media/184747/download . Accessed 5 Jan 2026. + + + EMA. Guideline on the reporting of physiologically based pharmacokinetic (PBPK) modelling and simulation [Internet]. 2018 [cited 2026 Jan 5]. https://www.ema.europa.eu/en/documents/scientific-guideline/guideline-reporting-physiologically-based-pharmacokinetic-pbpk-modelling-and-simulation_en.pdf . Accessed 5 Jan 2026. + + + Slankster-Schmierer E. OECD Releases new Test Guidelines for NAMs in 2023 [Internet]. ICAPO. 2023 [cited 2026 Feb 6]. https://www.icapo.org/news/oecd-releases-new-test-guidelines-nams-2023 . Accessed 6 Feb 2026. + + + Rowland Yeo K, Gil Berglund E, Chen Y. Dose optimization informed by PBPK modeling: State-of-the art and future. Clin Pharmacol Ther. 2024;116:563–76. https://doi.org/10.1002/cpt.3289 . + + 10.1002/cpt.3289 + 38686708 + + + + Vasilogianni A-M, Achour B, Scotcher D, Peters SA, Al-Majdoub ZM, Barber J, et al. Hepatic scaling factors for in vitro&#x2013; in vivo extrapolation of metabolic drug clearance in patients with colorectal cancer with liver metastasis. Drug Metab Dispos [Internet]. 2021;49:563–71.  https://doi.org/10.1124/dmd.121.000359 . Elsevier. + + + National Toxicology Program. Integrated Chemical Environment [Internet]. [cited 2026 Jan 5]. https://ice.ntp.niehs.nih.gov/ . Accessed 5 Jan 2026. + + + PCRM. Using NICEATMs Integrated Chemical Environment to support chemical evaluations [Internet]. [cited 2026 Jan 5]. https://pcrm.widencollective.com/portals/ieooh0ol/ICE#5023fe19-5184-452d-95ae-9b9b7b3e29d7 . Accessed 5 Jan 2026. + + + Mao B, Gao Y, Xu C, Macha S, Shao S, Ahamadi M. Evaluating the impact of AI-based model-informed drug development (MIDD): a comparative review. AAPS J. 2025;27:102. https://doi.org/10.1208/s12248-025-01075-0 . + + 10.1208/s12248-025-01075-0 + 40457118 + + + + Li Y, Wang Z, Li Y, Du J, Gao X, Li Y, et al. A combination of machine learning and PBPK modeling approach for pharmacokinetics prediction of small molecules in humans. Pharm Res. 2024;41:1369–79. https://doi.org/10.1007/s11095-024-03725-y . + + 10.1007/s11095-024-03725-y + 38918309 + 11534847 + + + + EMA. European medicines Agency Reflection paper on the use of Artificial Intelligence (AI) in the medicinal product lifecycle [Internet]. 2024 [cited 2026 Jan 5]. https://www.ema.europa.eu/en/documents/scientific-guideline/reflection-paper-use-artificial-intelligence-ai-medicinal-product-lifecycle_en.pdf . Accessed 5 Jan 2026. + + + U.S. FDA. Using artificial intelligence and machine learning in the development of drug and biological products, discussion paper and request for feedback. 2025.  https://www.fda.gov/media/167973/download . Accessed 24 May 2026. + + + Balkhair O, Albalushi H. Artificial intelligence in organoid-based disease modeling: a new frontier in precision medicine. Biomimetics. 2025. https://doi.org/10.3390/biomimetics10120845 . + + 10.3390/biomimetics10120845 + 41439914 + 12730694 + + + + Nazer LH, Zatarah R, Waldrip S, Ke JXC, Moukheiber M, Khanna AK, et al. Bias in artificial intelligence algorithms and recommendations for mitigation. PLoS Digit Health. 2023;2:e0000278. https://doi.org/10.1371/journal.pdig.0000278 . + + 10.1371/journal.pdig.0000278 + 37347721 + 10287014 + + + + Evans H, Snead D. Understanding the errors made by artificial intelligence algorithms in histopathology in terms of patient impact. npj Digit Med. 2024;7:89. https://doi.org/10.1038/s41746-024-01093-w . + + 10.1038/s41746-024-01093-w + 38600151 + 11006652 + + + + Rusyn I. ToxPoint: of hammers and nails—understanding academic challenges with “context of use” and “fit for purpose.” Toxicol Sci. 2025;207:29–30. https://doi.org/10.1093/toxsci/kfaf058 . + + 10.1093/toxsci/kfaf058 + 40300103 + 12448218 + + + + Liu K, Chen X, Fan Z, Ren F, Liu J, Hu B. From organoids to organoids-on-a-chip: current applications and challenges in biomedical research. Chin Med J (Engl). 2025;138:792–807. https://doi.org/10.1097/CM9.0000000000003535 . + + 10.1097/CM9.0000000000003535 + 39994843 + 11970821 + + + + Goldrick C, Guri I, Herrera-Oropeza G, O’Brien-Gore C, Roy E, Wojtynska M, et al. 3D multicellular systems in disease modelling: From organoids to organ-on-chip. Front Cell Dev Biol. 2023. https://doi.org/10.3389/fcell.2023.1083175 . + + 10.3389/fcell.2023.1083175 + 36819106 + 9933985 + + + + +
+ + + 42215809 + + 2026 + 05 + 29 + +
+ + 2730-6011 + + + 2026 + May + 29 + + + Discover oncology + Discov Oncol + + Exercise-related genes predicts overall survival and tumor immune microenvironment, and identifies the biological role of SLC52A2 in breast cancer. + 10.1007/s12672-026-05321-5 + + Breast cancer (BRCA) is the most common malignant tumor in women, with prognoses differing markedly by molecular subtype. Exercise is known to be related to tumor occurrence and progression, yet its role in BRCA remains understudied. This research seeks to explore the prognostic and immunomodulatory functions of exercise-related genes (ERGs) in BRCA, and their links to molecular subtypes, so as to inform targeted and precision treatment. + We obtained BRCA gene expression profiles and clinical data from the TCGA-BRCA project. Using LASSO, random forest, gradient boosting machine (GBM), stepwise Cox regression (Stepcox), and extreme gradient boosting (XGBOOST) algorithms, we screened prognostic signature genes from the intersecting ERGs, determined by differential expression analysis and weighted gene co-expression network analysis (WGCNA), established and validated a novel risk prediction model. We further analyzed biological functions, mutation profiles, immune traits, and molecular subtype associations across different risk groups. Additionally, the prognostic, biological and immunological roles of the core risk biomarker in the exercise-related signature was evaluated. + WGCNA identified 345 differentially expressed ERGs in BRCA, and five machine learning algorithms further screened 6 prognostic genes (SNX22, SLC52A2, TNFRSF18, NFE2, EZR, and EMP1). The low-risk group had significantly higher overall survival rate than the high-risk group, a difference driven by the functional roles of the two groups' differentially expressed genes, which regulated the cell cycle and epithelial-mesenchymal transition (EMT). Additionally, the high- and low-risk groups showed distinct mutation and immunomodulatory features. Consensus clustering of prognosis between the groups linked these differences to BRCA molecular subtypes. As a core candidate factor, SLC52A2 contributed to BRCA progression and poor prognosis in patients by participating in multiple signaling pathways and regulating immune cells. + ERGs-based prognostic signatures could distinguish clinical outcomes of BRCA patients and were correlated with immune regulation and mutation patterns. The ERGs-constructed risk scoring system and molecular subtypes have the potential to serve as preclinical biological and immunological markers, paving the way for clinical management and treatment of BRCA. + © 2026. The Author(s). + + + + Chen + Caiping + C + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Han + Chao + C + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Xue + Li + L + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. + + + + Lu + Xiang + X + + Department of Breast Surgery, The Affiliated Hospital of Jiaxing University (The First Hospital of Jiaxing), Jiaxing, China. 00187649@zjxu.edu.cn. + + + + eng + + + 2023-FC-001 + Jiaxing Key Discipiline of Medcine - -Surgery Med (Mastopathy) + + + + 2023-PYXK-001 + Jiaxing Provinces and Cities Jointly Cultivate Discipline - -General Surgery (Minimally Invasive) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Discov Oncol + 101775142 + 2730-6011 + + + Breast cancer + Exercise + Genetic mutation + Immune response + Molecular cluster + Prognosis + + Declarations. Ethics approval and consent to participate: The cohort data used in this article were all from online databases and therefore did not involve ethics. Consent to participate is not applicable to this study. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 11 + 28 + + + 2026 + 5 + 26 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 25 + + + aheadofprint + + 42215809 + 10.1007/s12672-026-05321-5 + 10.1007/s12672-026-05321-5 + + +
+ + + 42215746 + + 2026 + 05 + 29 + +
+ + 1435-2451 + + + 2026 + May + 30 + + + Langenbeck's archives of surgery + Langenbecks Arch Surg + + Relationship between ileocolic arterial stump length and lymph node yield - a retrospective study using machine learning. + 10.1007/s00423-026-04048-9 + + In right-sided colon cancer surgery, ileocolic artery stump length may reflect the extent of mesenteric resection and lymph node harvest. This study evaluated the association between postoperative stump length measured on CT, lymph node yield, and recurrence or progression within 24 months. + This single-center retrospective study included 64 patients who underwent right or extended right hemicolectomy for right-sided colon adenocarcinoma between 2016 and 2024. Right-sided tumors were defined as those located in the cecum, ascending colon, hepatic flexure, or proximal transverse colon. Only primary surgical cases were included. Ileocolic artery stump length was measured on contrast-enhanced CT scans performed approximately 12 months postoperatively (± 1 month) by two independent radiologists. A Random Forest regression model using stump length as the only predictor variable was developed to estimate lymph node yield. Model performance was assessed using 10-fold cross-validation with R² and mean squared error (MSE). Exploratory recurrence/progression analysis used logistic regression with natural cubic splines. + Mean stump length was 2.03 cm (range 1.0-4.5 cm), and median lymph node yield was 17 (range 10-55). Adequate nodal evaluation (≥ 12 nodes) was achieved in 85.9% of patients. The model demonstrated a consistent inverse relationship between stump length and lymph node yield (R² = 0.78; MSE = 0.16). Exploratory analysis suggested a non-significant trend toward higher recurrence or progression with longer stumps. + Longer ileocolic artery stumps were associated with reduced lymph node yield, suggesting stump length may reflect the extent of mesenteric resection. External validation is required before clinical application. + © 2026. The Author(s). + + + + Zayas-Borquez + Rogelio + R + 0000-0003-1751-4211 + + Universidad Nacional Autónoma de México, Mexico City, Mexico. rogeliozb94@unam.edu. + + + + Arizaga-Ramírez + María Sofía + MS + 0009-0004-2981-0530 + + Department of Radiology and Imaging, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Mexico City, Mexico. + + + + Canto-Losa + Jorge + J + 0000-0003-3768-3688 + + Universidad Nacional Autónoma de México, Mexico City, Mexico. jorge.canto@incmnsz.mx. + + + + Gándara-Lois + Ana C + AC + 0009-0001-0265-1726 + + Department of Radiology and Imaging, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Mexico City, Mexico. + + + + Salgado-Nesme + Noel + N + 0000-0002-3559-5070 + + Department of Colorectal Surgery, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Vasco de Quiroga 15, Belisario Domínguez Seccion 16, Tlalpan, Mexico City, PC 14080, Mexico. + + + + Alvarez-Bautista + Francisco + F + 0000-0003-2645-832X + + Department of General and Endoscopic Surgery, "Dr. Manuel GEA González" General Hospital, Mexico City, Mexico. + + + + Santes + Oscar + O + 0000-0002-6393-4607 + + Department of Colorectal Surgery, National Institute of Medical Sciences and Nutrition "Salvador Zubirán", Vasco de Quiroga 15, Belisario Domínguez Seccion 16, Tlalpan, Mexico City, PC 14080, Mexico. + + + + eng + + Journal Article + + + 2026 + 05 + 30 + +
+ + Germany + Langenbecks Arch Surg + 9808285 + 1435-2443 + + IM + + Central vascular ligation + Complete mesocolic excision + Lymph node retrieval + Machine learning + Right hemicolectomy + + Declarations. Ethics approval: This study was conducted in accordance with the principles of the Declaration of Helsinki. The study protocol was reviewed and approved by the Institutional Review Board of the corresponding institution. Given the retrospective nature of the study and the use of anonymized data, the requirement for informed consent was waived. Informed consent: Informed consent was waived due to the retrospective design of the study and the use of anonymized patient data. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 16 + + + 2026 + 4 + 11 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 23 + + + aheadofprint + + 42215746 + 10.1007/s00423-026-04048-9 + 10.1007/s00423-026-04048-9 + + +
+ + + 42215700 + + 2026 + 05 + 29 + +
+ + 1437-1596 + + + 2026 + May + 30 + + + International journal of legal medicine + Int J Legal Med + + Proteomic profiling of bone for the estimation of post-mortem interval and post-mortem submersion interval: a systematic review. + 10.1007/s00414-026-03844-8 + + Accurate estimation of the Post-Mortem Interval (PMI) and Post-Mortem Submersion Interval (PMSI) remains a persistent challenge in forensic science, especially when traditional morphological and entomological methods fail due to advanced decomposition or in aquatic environments. Proteomic profiling of bone tissues has recently emerged as a promising approach, leveraging the predictable degradation patterns of bone proteins to estimate time since death more reliably. This systematic review, conducted in accordance with PRISMA guidelines, analyzed 24 peer-reviewed studies focusing on the application of proteomic techniques to bone tissue for PMI and PMSI estimation. The included studies were evaluated based on sample type, analytical techniques used, identified biomarkers, environmental conditions assessed, and the overall reliability and reproducibility of the findings. The review found that specific bone proteins, particularly collagen, osteocalcin, fetuin-A, etc. exhibited consistent degradation patterns that correlated strongly with elapsed post-mortem time. Cortical bone was identified as a more stable and informative matrix compared to trabecular bone. Mass spectrometry, especially LC-MS/MS, emerged as the predominant analytical technique due to its high sensitivity and accuracy in detecting low-abundance proteins over extended PMIs and PMSIs. However, protein degradation rates were significantly influenced by environmental variables such as temperature, humidity, soil pH, and microbial activity. This review also emphasizes the transformative role of bone proteomics in advancing forensic science while identifying key gaps that must be addressed to achieve global standardization and practical implementation in diverse forensic contexts. The integration of proteomics with other emerging technologies, such as machine learning algorithms and computational modeling, may further enhance the precision of PMI and PMSI estimation in future applications. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Dalal + Jyoti + J + 0000-0002-4690-6452 + + School of Forensic Sciences, Amity University Punjab, Mohali, Punjab, India. jyotidalal417@gmail.com. + + + + Kumari + Pallavi + P + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + Department of Forensic Science, University Institute Allied Health Sciences, Chandigarh University, Mohali, Punjab, India. + + + + Gupta + Vinayak + V + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + + Chhikara + Anjali + A + + School of Bioengineering and Biosciences, Lovely Professional University, Phagwara, Punjab, India. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 30 + +
+ + Germany + Int J Legal Med + 9101456 + 0937-9827 + + IM + + Bone Biomarkers + Forensic Proteomics + Post-Mortem Interval (PMI) + Post-Mortem Submersion Interval (PMSI) + Protein degradation + Proteomic profiling + Systematic review + + Declarations. Competing Interest: None. +
+ + + + 2025 + 5 + 8 + + + 2026 + 5 + 17 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 22 + + + aheadofprint + + 42215700 + 10.1007/s00414-026-03844-8 + 10.1007/s00414-026-03844-8 + + + + Amendt J, Richards CS, Campobasso CP, Zehner R, Hall MJ (2011) Forensic entomology: applications and limitations. Forensic science, medicine, and pathology 7(4):379–392. https://doi.org/10.1007/s12024-010-9209-2 + + 10.1007/s12024-010-9209-2 + 21213072 + + + + Barrios M, Wolff M (2011) Initial study of arthropods succession and pig carrion decomposition in two freshwater ecosystems in the Colombian Andes. Forensic Sci Int 212(1–3):164–172. https://doi.org/10.1016/j.forsciint.2011.06.008 + + 10.1016/j.forsciint.2011.06.008 + 21741189 + + + + Becker J, Boulyga S, Becker J, Pickhardt C, Damoc E, Przybylski M (2003) Structural identification and quantification of protein phosphorylations after gel electrophoretic separation using Fourier transform ion cyclotron resonance mass spectrometry and laser ablation inductively coupled plasma mass spectrometry. Int J Mass Spectrom 228:985–997. https://doi.org/10.1016/S1387-3806(03)00266-5 + + 10.1016/S1387-3806(03)00266-5 + + + + Bern M, Kil YJ, Becker C (2012) Byonic: Advanced peptide and protein identification software. Curr Protoc Bioinformatics. https://doi.org/10.1002/0471250953.bi1320s40 + + + Boaks A, Siwek D, Mortazavi F (2014) The temporal degradation of bone collagen: a histochemical approach. Forensic science international 240:104–110. https://doi.org/10.1016/j.forsciint.2014.04.008 + + 10.1016/j.forsciint.2014.04.008 + 24836839 + + + + Bonicelli A, Di Nunzio A, Di Nunzio C, Procopio N (2022) Insights into the differential preservation of bone proteomes in inhumed and entombed cadavers from Italian forensic caseworks. Journal of proteome research 21(5):1285–1298. https://doi.org/10.1021/acs.jproteome.1c00904 + + 10.1021/acs.jproteome.1c00904 + 35316604 + 9087355 + + + + Bonicelli A, Mickleburgh HL, Chighine A, Locci E, Wescott DJ, Procopio N (2022) The “ForensOMICS” approach for postmortem interval estimation from human bone by integrating metabolomics, lipidomics, and proteomics. eLife 11:e83658. https://doi.org/10.7554/eLife.83658 + + 10.7554/eLife.83658 + 36583441 + 9803353 + + + + Buckley M, Collins M, Thomas-Oates J, Wilson JC (2009) Species identification by analysis of bone collagen using matrix-assisted laser desorption/ionisation time-of-flight mass spectrometry. Rapid Communications in Mass Spectrometry 23(23):3843–3854. https://doi.org/10.1002/rcm.4316 + + 10.1002/rcm.4316 + 19899187 + + + + Buekenhout I, Vieira DN, Ferreira MT (2016) Reliability of weathering in the estimation of the post-mortem interval of human remains buried in coffins. Australian J Forensic Sci 50(4):414–427. https://doi.org/10.1080/00450618.2016.1257066 + + 10.1080/00450618.2016.1257066 + + + + Cappellini E, Jensen LJ, Szklarczyk D, Ginolhac A, da Fonseca RA, Stafford TW, Holen SR, Collins MJ, Orlando L, Willerslev E, Gilbert MT, Olsen JV (2012) Proteomic analysis of a pleistocene mammoth femur reveals more than one hundred ancient bone proteins. J Proteome Res 11(2):917–926. https://doi.org/10.1021/pr200721u + + 10.1021/pr200721u + 22103443 + + + + Carter DO, Yellowlees D, Tibbett M (2008) Temperature affects microbial decomposition of cadavers (Rattus rattus) in contrasting soils. Appl Soil Ecol 40(1):129–137. https://doi.org/10.1016/j.apsoil.2008.03.010 + + 10.1016/j.apsoil.2008.03.010 + + + + Carter DO, Yellowlees D, Tibbett M (2007) Cadaver decomposition in terrestrial ecosystems. Die Naturwiss 94(1):12–24. https://doi.org/10.1007/s00114-006-0159-1 + + 10.1007/s00114-006-0159-1 + + + + Carvalho MS, Cabral JMS, da Silva CL, Vashishth D (2021) Bone matrix non-collagenous proteins in tissue engineering: creating new bone by mimicking the extracellular matrix. Polymers (Basel) 13(7):1095. https://doi.org/10.3390/polym13071095 + + 10.3390/polym13071095 + 33808184 + 8036283 + + + + Casper JL (1861) A Handbook of the Practice of Forensic Medicine, Based Upon Personal Experience. New Sydenham Society + + + Chhikara A, Kumari P, Dalal J, Kumari K (2025) Protein degradation patterns as biomarkers for post-mortem interval estimation: a comprehensive review of proteomic approaches in forensic science. J Proteomics 310:105326. https://doi.org/10.1016/j.jprot.2024.105326 + + 10.1016/j.jprot.2024.105326 + 39384102 + + + + Chowdhury MP, Buckley M (2022) Trends in deamidation across archaeological bones, ceramics and dental calculus. Methods (San Diego Calif) 200:67–79. https://doi.org/10.1016/j.ymeth.2021.08.004 + + 10.1016/j.ymeth.2021.08.004 + + + + Chowdhury MP, Choudhury KD, Bouchard GP, Riel-Salvatore J, Negrino F, Benazzi S, Slimak L, Frasier B, Szabo V, Harrison R, Hambrecht G, Kitchener AC, Wogelius RA, Buckley M (2021) Machine learning ATR-FTIR spectroscopy data for the screening of collagen for ZooMS analysis and mtDNA in archaeological bone. J Archaeol Sci Article 105311. https://doi.org/10.1016/j.jas.2020.105311 + + 10.1016/j.jas.2020.105311 + + + + Chubb SA (2012) Measurement of C-terminal telopeptide of type I collagen (CTX) in serum. Clin Biochem 45(12):928–935. https://doi.org/10.1016/j.clinbiochem.2012.03.035 + + 10.1016/j.clinbiochem.2012.03.035 + 22504058 + + + + Clarke B (2008) Normal bone anatomy and physiology. Clin J Am Soc Nephrol 3(Suppl 3):S131–S139. https://doi.org/10.2215/CJN.04151206 + + 10.2215/CJN.04151206 + 18988698 + 3152283 + + + + Cleland TP, Schroeter ER, Schweitzer MH (2015) Biologically and diagenetically derived peptide modifications in Moa collagens. Proc R Soc B Biol Sci (1808):20150015. https://doi.org/10.1098/rspb.2015.0015 + + 10.1098/rspb.2015.0015 + + + + Coe JI (1989) Vitreous potassium as a measure of the postmortem interval: an historical review and critical evaluation. Forensic Sci Int 42(3):201–213. https://doi.org/10.1016/0379-0738(89)90087-x + + 10.1016/0379-0738(89)90087-x + 2676789 + + + + Collins MJ, Nielsen-Marsh CM, Hiller J, Smith CI, Roberts JP, Prigodich RV, Wess TJ, Csapò J, Millard AR, Turner-Walker G (2002) The survival of organic matter in bone: A review. Archaeometry 44(3):383–394. https://doi.org/10.1111/1475-4754.t01-1-00071 + + 10.1111/1475-4754.t01-1-00071 + + + + Collins MJ, Riley MS, Child AM, Turner-Walker G (1995) A basic mathematical simulation of the chemical degradation of ancient collagen. J Archaeol Sci 22(2):175–183. https://doi.org/10.1006/jasc.1995.0019 + + 10.1006/jasc.1995.0019 + + + + Cook GT, MacKenzie AB (2014) Radioactive isotope analyses of skeletal materials in forensic science: a review of uses and potential uses. Int J Legal Med 128(4):685–698. https://doi.org/10.1007/s00414-014-0970-8 + + 10.1007/s00414-014-0970-8 + 24553729 + + + + Cordeiro C, Ordóñez-Mayán L, Lendoiro E, Febrero-Bande M, Vieira DN, Muñoz-Barús JI (2019) A reliable method for estimating the postmortem interval from the biochemistry of the vitreous humor, temperature and body weight. Forensic Sci Int 295:157–168. https://doi.org/10.1016/j.forsciint.2018.12.007 + + 10.1016/j.forsciint.2018.12.007 + 30611119 + + + + Cox J, Mann M (2008) MaxQuant enables high peptide identification rates, individualized p.p.b.-range mass accuracies and proteome-wide protein quantification. Nat Biotechnol 26(12):1367–1372. https://doi.org/10.1038/nbt.1511 + + 10.1038/nbt.1511 + 19029910 + + + + Dalal J, Sharma S, Bhardwaj T, Dhattarwal SK (2023) Assessment of post-mortem submersion interval using total aquatic decomposition scores of drowned human cadavers. J Forensic Sci 68(2):549–557. https://doi.org/10.1111/1556-4029.15220 + + 10.1111/1556-4029.15220 + 36789865 + + + + Dickson GC, Poulter RT, Maas EW, Probert PK, Kieser JA (2011) Marine bacterial succession as a potential indicator of postmortem submersion interval. Forensic Sci Int 209(1–3):1–10. https://doi.org/10.1016/j.forsciint.2010.10.016 + + 10.1016/j.forsciint.2010.10.016 + 21074955 + + + + Donno AD, Campobasso CP, Santoro V, Leonardi S, Tafuri S, Introna F (2014) Bodies in sequestered and non-sequestered aquatic environments: a comparative taphonomic study using decompositional scoring system. Sci justice: J Forensic Sci Soc 54(6):439–446. https://doi.org/10.1016/j.scijus.2014.10.003 + + 10.1016/j.scijus.2014.10.003 + + + + Dunn MJ (1993) Gel electrophoresis : proteins. Bios Scientific Publishers in association with the Biochemical Society + + + Duong V-A, Park J-M, Lim H-J, Lee H (2021) Proteomics in forensic analysis: applications for human samples. Appl Sci 11(8):3393. https://doi.org/10.3390/app11083393 + + 10.3390/app11083393 + + + + Ferreira MT, Cunha E (2013) Can we infer post mortem interval on the basis of decomposition rate? A case from a Portuguese cemetery. Forensic Sci Int (1–3):298.e1–298.e2986. https://doi.org/10.1016/j.forsciint.2013.01.006 + + 10.1016/j.forsciint.2013.01.006 + 23357229 + + + + Forbes SL, Wilson ME, Stuart BH (2011) Examination of adipocere formation in a cold water environment. Int J Legal Med 125(5):643–650. https://doi.org/10.1007/s00414-010-0460-6 + + 10.1007/s00414-010-0460-6 + 20437052 + + + + Franceschetti L, Amadasi A, Bugelli V, Bolsi G, Tsokos M (2023) Estimation of late postmortem interval: where do we stand? A literature review. Biology (Basel) 12(6):783. https://doi.org/10.3390/biology12060783 + + 10.3390/biology12060783 + 37372068 + 10295266 + + + + Garcés-Parra C, Saldivia P, Hernández M et al (2024) Enhancing late postmortem interval prediction: a pilot study integrating proteomics and machine learning to distinguish human bone remains over 15 years. Biol Res 57:75. https://doi.org/10.1186/s40659-024-00552-8 + + 10.1186/s40659-024-00552-8 + 39444040 + 11515459 + + + + Gent L, Chiappetta ME, Hesketh S, Palmowski P, Porter A, Bonicelli A, Schwalbe EC, Procopio N (2024) Bone Proteomics Method Optimization for Forensic Investigations. J Proteome Res 23(5):1844–1858. https://doi.org/10.1021/acs.jproteome.4c00151 + + 10.1021/acs.jproteome.4c00151 + 38621258 + 11077585 + + + + Gillet LC, Navarro P, Tate S, Röst H, Selevsek N, Reiter L, Bonner R, Aebersold R (2012) Targeted data extraction of the MS/MS spectra generated by data-independent acquisition: A new concept for consistent and accurate proteome analysis. Mol Cell Proteomics (6):O111.016717. https://doi.org/10.1074/mcp.O111.016717 + + 10.1074/mcp.O111.016717 + 22261725 + 3433915 + + + + Goff LM (2009) Early post-mortem changes and stages of decomposition in exposed cadavers. Exp Appl Acarol 49(1–2):21–36. https://doi.org/10.1007/s10493-009-9284-9 + + 10.1007/s10493-009-9284-9 + + + + Grassberger M, Friedrich E, Reiter C (2003) The blowfly Chrysomya albiceps (Wiedemann) (Diptera: Calliphoridae) as a new forensic indicator in Central Europe. Int J Legal Med 117:75–81. https://doi.org/10.1007/s00414-002-0323-x + + 10.1007/s00414-002-0323-x + 12690503 + + + + Grupe G (1995) Preservation of collagen in bone from dry, sandy soil. J Archaeol Sci 22:193–199. https://doi.org/10.1006/jasc.1995.0021 + + 10.1006/jasc.1995.0021 + + + + Guareschi EE, Pember L, Magni PA (2024) The degradation of collagen in submerged bones, analysed by ImageJ® and Orbit®, for the estimation of the post-mortem interval (PMI) and the post-mortem submersion interval (PMSI). Aust J Forensic Sci 56(S1):55–57. https://doi.org/10.1080/00450618.2024.2324734 + + 10.1080/00450618.2024.2324734 + + + + Heaton V, Lagden A, Moffatt C, Simmons T (2010) Predicting the postmortem submersion interval for human remains recovered from U.K. waterways. J Forensic Sci 55(2):302–307. https://doi.org/10.1111/j.1556-4029.2009.01291.x + + 10.1111/j.1556-4029.2009.01291.x + 20102465 + + + + Hedges REM (2002) Bone diagenesis: An overview of processes. Archaeometry 44(3):319–328. https://doi.org/10.1111/1475-4754.00064 + + 10.1111/1475-4754.00064 + + + + Henssge C, Madea B (2007) Estimation of the time since death. Forensic Sci Int 165(2–3):182–184. https://doi.org/10.1016/j.forsciint.2006.05.017 + + 10.1016/j.forsciint.2006.05.017 + 16797901 + + + + Hill RC, Wither MJ, Nemkov T, Barrett A, D’Alessandro A, Dzieciatkowska M, Hansen KC (2015) Preserved Proteins from Extinct Bison latifrons Identified by Tandem Mass Spectrometry; Hydroxylysine Glycosides are a Common Feature of Ancient Collagen. Mol Cell proteomics: MCP 14(7):1946–1958. https://doi.org/10.1074/mcp.M114.047787 + + 10.1074/mcp.M114.047787 + 25948757 + 4587324 + + + + Humphreys MK, Panacek E, Green W, Albers E (2013) Comparison of protocols for measuring and calculating postmortem submersion intervals for human analogs in fresh water. J Forensic Sci 58(2):513–517. https://doi.org/10.1111/1556-4029.12033 + + 10.1111/1556-4029.12033 + 23278272 + + + + Iqbal M, Ueland M, Forbes S (2020) Recent advances in the estimation of post-mortem interval in forensic taphonomy. Australian J Forensic Sci 52:107–123. https://doi.org/10.1080/00450618.2018.1459840 + + 10.1080/00450618.2018.1459840 + + + + Jeffreys AJ, Wilson V, Thein SL (1985) Individual-specific ‘fingerprints’ of human DNA. Nature 316(6023):76–79. https://doi.org/10.1038/316076a0 + + 10.1038/316076a0 + 2989708 + + + + Jellinghaus K, Hachmann C, Hoeland K, Bohnert M, Wittwer-Backofen U (2018) Collagen degradation as a possibility to determine the post-mortem interval (PMI) of animal bones: a validation study referring to an original study of Boaks et al. (2014). Int J Legal Med 132(3):753–763. https://doi.org/10.1007/s00414-017-1747-7 + + 10.1007/s00414-017-1747-7 + 29177807 + + + + Jellinghaus K, Urban PK, Hachmann C, Bohnert M, Hotz G, Rosendahl W, Wittwer-Backofen U (2019) Collagen degradation as a possibility to determine the post-mortem interval (PMI) of human bones in a forensic context - a survey. Legal medicine (Tokyo, Japan) 36:96–102. https://doi.org/10.1016/j.legalmed.2018.11.009 + + 10.1016/j.legalmed.2018.11.009 + 30500672 + + + + Jopp E, Augustin C, Busse B, Fuhrmann A, Hahn M, Tsokos M, Verhoff M, Schulz F (2016) The assessment of adipocere to estimate the post-mortem interval - a skeleton from the tidelands. Anthropol Anz 73:1–13. https://doi.org/10.1127/anthranz/2016/0615 + + 10.1127/anthranz/2016/0615 + + + + Kaiser C, Bachmeier B, Conrad C, Nerlich A, Bratzke H, Eisenmenger W, Peschel O (2008) Molecular study of time dependent changes in DNA stability in soil buried skeletal residues. Forensic Sci Int 177(1):32–36. https://doi.org/10.1016/j.forsciint.2007.10.005 + + 10.1016/j.forsciint.2007.10.005 + 18063334 + + + + Kemp BM, Smith DG (2005) Use of bleach to eliminate contaminating DNA from the surface of bones and teeth. Forensic Sci Int 154(1):53–61. https://doi.org/10.1016/j.forsciint.2004.11.017 + + 10.1016/j.forsciint.2004.11.017 + 16182949 + + + + Longato S, Wöss C, Hatzer-Grubwieser P, Bauer C, Parson W, Unterberger SH, Kuhn V, Pemberger N, Pallua AK, Recheis W, Lackner R, Stalder R, Pallua JD (2015) Post-mortem interval estimation of human skeletal remains by micro-computed tomography, mid-infrared microscopic imaging and energy dispersive X-ray mapping. Anal Methods 7(7):2917–2927. https://doi.org/10.1039/c4ay02943g + + 10.1039/c4ay02943g + 25878731 + 4383336 + + + + Madea B (2016) Methods for determining time of death. Forensic Sci Med Pathol 12(4):451–485. https://doi.org/10.1007/s12024-016-9776-y + + 10.1007/s12024-016-9776-y + 27259559 + + + + Marrone A, La Russa D, Barberio L, Murfuni MS, Gaspari M, Pellegrino D (2023) Forensic proteomics for the discovery of new post mortem interval biomarkers: a preliminary study. Int J Mol Sci 24(19):14627. https://doi.org/10.3390/ijms241914627 + + 10.3390/ijms241914627 + 37834074 + 10572818 + + + + Mello RB, Silva MR, Alves MT, Evison MP, Guimarães MA, Francisco RA, Astolphi RD, Iwamura ES (2017) Tissue microarray analysis applied to bone diagenesis. Sci Rep 7:39987. https://doi.org/10.1038/srep39987 + + 10.1038/srep39987 + 28051148 + 5209720 + + + + Merkley ED, Wunschel DS, Wahl KL, Jarman KH (2019) Applications and challenges of forensic proteomics. Forensic Sci Int 297:350–363. https://doi.org/10.1016/j.forsciint.2019.01.022 + + 10.1016/j.forsciint.2019.01.022 + 30929674 + + + + Mickleburgh HL, Schwalbe EC, Bonicelli A, Mizukami H, Sellitto F, Starace S, Wescott DJ, Carter DO, Procopio N (2021) Human Bone Proteomes before and after Decomposition: Investigating the Effects of Biological Variation and Taphonomic Alteration on Bone Protein Profiles and the Implications for Forensic Proteomics. J Proteome Res 20(5):2533–2546. https://doi.org/10.1021/acs.jproteome.0c00992 + + 10.1021/acs.jproteome.0c00992 + 33683123 + 8155572 + + + + Milroy CM (1999) Forensic taphonomy: the postmortem fate of human remains. BMJ (Clinical research ed.) 319(7207):458. https://doi.org/10.1136/bmj.319.7207.458 + + 10.1136/bmj.319.7207.458 + 10445946 + 1127062 + + + + Mizukami H, Hathway B, Procopio N (2020) Aquatic Decomposition of Mammalian Corpses: A Forensic Proteomic Approach. J Proteome Res 19(5):2122–2135. https://doi.org/10.1021/acs.jproteome.0c00060 + + 10.1021/acs.jproteome.0c00060 + 32242669 + + + + Mohamed AM (2008) An overview of bone cells and their regulating factors of differentiation. Malaysian J Med sciences: MJMS 15(1):4–12 + + + Nelson EL (2000) Estimation of short-term postmortem interval utilizing core body temperature: a new algorithm. Forensic Sci Int 109(1):31–38. https://doi.org/10.1016/s0379-0738(99)00216-9 + + 10.1016/s0379-0738(99)00216-9 + 10759069 + + + + Nielsen-Marsh CM, Smith CI, Jans MM, Nord A, Kars H, Collins MJ (2009) Bone diagenesis in the European Holocene II: taphonomic and environmental considerations. J Archaeol Sci 36(7):1524–1531. https://doi.org/10.1016/j.jas.2006.11.012 + + 10.1016/j.jas.2006.11.012 + + + + Ntasi G, Palomo IR, Marino G et al (2022) Molecular signatures written in bone proteins of 79 AD victims from Herculaneum and Pompeii. Sci Rep 12:8401. https://doi.org/10.1038/s41598-022-12042-6 + + 10.1038/s41598-022-12042-6 + 35624181 + 9142588 + + + + O’Brien TG, Kuehner AC (2007) Waxing grave about adipocere: soft tissue change in an aquatic context. J Forensic Sci 52(2):294–301. https://doi.org/10.1111/j.1556-4029.2006.00362.x + + 10.1111/j.1556-4029.2006.00362.x + 17316224 + + + + Ostrom PH, Gandhi H, Strahler JR, Walker AK, Andrews PC, Leykam J (2006) Unraveling the sequence and structure of the protein osteocalcin from a 42 ka fossil horse bone. Geochim Cosmochim Acta 70(8):2035–2044. https://doi.org/10.1016/j.gca.2006.01.004 + + 10.1016/j.gca.2006.01.004 + + + + Page, M. J., McKenzie, J. E., Bossuyt, P. M., Boutron, I., Hoffmann, T. C., Mulrow,C. D., … Moher, D. (2021). The PRISMA 2020 statement: an updated guideline for reporting systematic reviews.BMJ, n71. https://doi.org/10.1136/bmj.n71 + + + Palazzo C, Pelletti G, Fais P, Berto RB, Fersini F, Gaudio RM, Pelotti S (2019) Postmortem Submersion Interval in human bodies recovered from fresh water in an area of Mediterranean climate. Application and comparison of preexisting models. Forensic Sci Int 110051. https://doi.org/10.1016/j.forsciint.2019.110051 + + + Pérez-Martínez C, Pérez-Cárceles MD, Legaz I, Prieto-Bonete G, Luna A (2017) Quantification of nitrogenous bases, DNA and Collagen type I for the estimation of the postmortem interval in bone remains. Forensic Sci Int 281:106–112. https://doi.org/10.1016/j.forsciint.2017.10.039 + + 10.1016/j.forsciint.2017.10.039 + 29125988 + + + + Perkins DN, Pappin DJ, Creasy DM, Cottrell JS (1999) Probability-based protein identification by searching sequence databases using mass spectrometry data. Electrophoresis 20(18):3551–3567. https://doi.org/10.1002/(SICI)1522-2683(19991201)20:18<3551::AID-ELPS3551>3.0.CO;2-2 + + 10.1002/(SICI)1522-2683(19991201)20:18<3551::AID-ELPS3551>3.0.CO;2-2 + 10612281 + + + + Pittner S, Monticelli FC, Pfisterer A, Zissler A, Sänger AM, Stoiber W, Steinbacher P (2016) Postmortem degradation of skeletal muscle proteins: a novel approach to determine the time since death. Int J Legal Med 130(2):421–431. https://doi.org/10.1007/s00414-015-1210-6 + + 10.1007/s00414-015-1210-6 + 26041514 + + + + Prieto-Bonete G, Pérez-Cárceles MD, Maurandi-López A, Pérez-Martínez C, Luna A (2019) Association between protein profile and postmortem interval in human bone remains. J Proteom 192:54–63. https://doi.org/10.1016/j.jprot.2018.08.008 + + 10.1016/j.jprot.2018.08.008 + + + + Procopio N, Bonicelli A (2024) From flesh to bones: multi-omics approaches in forensic science. Proteomics 24(12–13):e2200335. https://doi.org/10.1002/pmic.202200335 + + 10.1002/pmic.202200335 + 38683823 + + + + Procopio N, Buckley M (2017) Minimizing laboratory-induced decay in bone proteomics. J Proteome Res 16(2):447–458. https://doi.org/10.1021/acs.jproteome.6b00564 + + 10.1021/acs.jproteome.6b00564 + 28152590 + + + + Procopio N, Chamberlain AT, Buckley M (2017) Intra- and interskeletal proteome variations in fresh and buried bones. J Proteome Res 16(5):2016–2029. https://doi.org/10.1021/acs.jproteome.6b01070 + + 10.1021/acs.jproteome.6b01070 + 28436665 + + + + Procopio N, Hopkins RJA, Harvey VL, Buckley M (2021) Proteome Variation with Collagen Yield in Ancient Bone. J Proteome Res 20(3):1754–1769. https://doi.org/10.1021/acs.jproteome.0c01014 + + 10.1021/acs.jproteome.0c01014 + 33529527 + 7944572 + + + + Procopio N, Mein CA, Starace S, Bonicelli A, Williams A (2021) Bone Diagenesis in Short Timescales: Insights from an Exploratory Proteomic Analysis. Biology 10(6):460. https://doi.org/10.3390/biology10060460 + + 10.3390/biology10060460 + 34071025 + 8224596 + + + + Procopio N, Williams A, Chamberlain AT, Buckley M (2018) Forensic proteomics for the evaluation of the post-mortem decay in bones. J Proteomics 177:21–30. https://doi.org/10.1016/j.jprot.2018.01.016 + + 10.1016/j.jprot.2018.01.016 + 29407476 + + + + Ramsthaler F, Ebach SC, Birngruber CG, Verhoff MA (2011) Postmortem interval of skeletal remains through the detection of intraosseal hemin traces. A comparison of UV-fluorescence, luminol, Hexagon-OBTI®, and Combur® tests. Forensic Sci Int 209(1–3):59–63. https://doi.org/10.1016/j.forsciint.2010.12.011 + + 10.1016/j.forsciint.2010.12.011 + 21237592 + + + + Reijnen G, Gelderman HT, Oude Grotebevelsborg BFL, Reijnders UJL, Duijst WLJM (2018) The correlation between the aquatic decomposition score (ADS) and the post-mortem submersion interval measured in accumulated degree days (ADD) in bodies recovered from fresh water. Forensic Sci Med Pathol 14(3):301–306. https://doi.org/10.1007/s12024-018-9987-5 + + 10.1007/s12024-018-9987-5 + 29799098 + + + + Romina C, Alessandro F, Emilio P, Stefano M, Saverio P, Gian M (2018) Overview on the estimation of post mortem interval in forensic anthropology: Review of the literature and practical experience. Rom J Leg Med 26:403–411. https://doi.org/10.4323/rjlm.2018.403 + + 10.4323/rjlm.2018.403 + + + + López RJL, Navadijo PM (2025) Estimation of the post-mortem interval: A review. Forensic Sci Int 369:112412. https://doi.org/10.1016/j.forsciint.2025.112412 + + 10.1016/j.forsciint.2025.112412 + + + + Saukko P, Knight B (2015) Knight’s Forensic Pathology, 4th ed. CRC Press. https://doi.org/10.1201/b13266 + + 10.1201/b13266 + + + + Sawafuji R, Cappellini E, Nagaoka T, Fotakis AK, Jersie-Christensen RR, Olsen JV, Hirata K, Ueda S (2017) Proteomic profiling of archaeological human bone. R Soc Open Sci 4(6):161004. https://doi.org/10.1098/rsos.161004 + + 10.1098/rsos.161004 + 28680659 + 5493901 + + + + Schweitzer MH, Avci R, Collier T, Goodwin MB (2007) Soft tissue and cellular preservation in vertebrate skeletal elements from the Cretaceous to the present. Proc Royal Soc B: Biol Sci 274(1607):183–197. https://doi.org/10.1098/rspb.2006.3705 + + 10.1098/rspb.2006.3705 + + + + Secco L, Palumbi S, Padalino P, Grosso E, Perilli M, Casonato M, Cecchetto G, Viel G (2025) “Omics” and postmortem interval estimation: A systematic review. Int J Mol Sci 26(3):1034. https://doi.org/10.3390/ijms26031034 + + 10.3390/ijms26031034 + 39940802 + 11817326 + + + + Simmons T (2017) Post-Mortem Interval Estimation: an Overview of Techniques. Taphon Hum Remains: Forensic Anal Dead Depositional Environ 134–142. https://doi.org/10.1002/9781118953358.ch10 + + + UniProt Consortium (2021) UniProt: The universal protein knowledgebase in 2021. Nucleic Acids Res 49(D1):D480–D489. https://doi.org/10.1093/nar/gkaa1100 + + 10.1093/nar/gkaa1100 + + + + van Daalen MA, de Kat DS, Oude Grotebevelsborg BF, de Leeuwe R, Warnaar J, Oostra RJ, Duijst-Heesters MWL (2017) An aquatic decomposition scoring method to potentially predict the postmortem submersion interval of bodies recovered from the North Sea. J Forensic Sci 62(2):369–373. https://doi.org/10.1111/1556-4029.13258 + + 10.1111/1556-4029.13258 + 28247448 + + + + van Doorn NL, Wilson J, Hollund H, Soressi M, Collins MJ (2012) Site-specific deamidation of glutamine: a new marker of bone collagen deterioration. Rapid Commun mass spectrometry: RCM 26(19):2319–2327. https://doi.org/10.1002/rcm.6351 + + 10.1002/rcm.6351 + 22956324 + + + + Wadsworth C, Buckley M (2014) Proteome degradation in fossils: Investigating the longevity of protein survival in ancient bone. Rapid Commun Mass Spectrom 28(6):605–615. https://doi.org/10.1002/rcm.6821 + + 10.1002/rcm.6821 + 24519823 + 4282581 + + + + Wadsworth C, Procopio N, Anderung C, Carretero JM, Iriarte E, Valdiosera C, Elburg R, Penkman K, Buckley M (2017) Comparing ancient DNA survival and proteome content in 69 archaeological cattle tooth and bone samples from multiple European sites. J Proteom 158:1–8. https://doi.org/10.1016/j.jprot.2017.01.004 + + 10.1016/j.jprot.2017.01.004 + + + + Widya M, Moffatt C, Simmons T (2012) The formation of early stage adipocere in submerged remains: a preliminary experimental study. J Forensic Sci 57(2):328–333. https://doi.org/10.1111/j.1556-4029.2011.01980.x + + 10.1111/j.1556-4029.2011.01980.x + 22150268 + + + + Woess C, Unterberger SH, Roider C, Ritsch-Marte M, Pemberger N, Cemper-Kiesslich J, Hatzer-Grubwieser P, Parson W, Pallua JD (2017) Assessing various infrared (IR) microscopic imaging techniques for post-mortem interval evaluation of human skeletal remains. PLoS One 12(3):e0174552. https://doi.org/10.1371/journal.pone.0174552 + + 10.1371/journal.pone.0174552 + 28334006 + 5363948 + + + + Zapico SC, Adserias-Garriga J (2022) Postmortem Interval Estimation: New Approaches by the Analysis of Human Tissues and Microbial Communities’ Changes. Forensic Sci 2(1):163–174. https://doi.org/10.3390/forensicsci2010013 + + 10.3390/forensicsci2010013 + + + + Zeng WF, Zhou XX, Willems S et al (2022) AlphaPeptDeep: a modular deep learning framework to predict peptide properties for proteomics. Nat Commun 13:7238. https://doi.org/10.1038/s41467-022-34904-3 + + 10.1038/s41467-022-34904-3 + 36433986 + 9700817 + + + + Zerbino, D. R., Achuthan, P., Akanni, W., Amode, M. R., Barrell, D., Bhai, J., Billis,K., Cummins, C., Gall, A., Girón, C. G., Gil, L., Gordon, L., Haggerty, L., Haskell,E., Hourlier, T., Izuogu, O. G., Janacek, S. H., Juettemann, T., To, J. K., Laird,M. R., … Flicek, P. (2018). Ensembl 2018. Nucleic acids research, 46(D1), D754–D761. https://doi.org/10.1093/nar/gkx1098 + + + Zhang J, Xin L, Shan B, Chen W, Xie M, Yuen D, Zhang W, Zhang Z, Lajoie GA, Ma B (2012) PEAKS DB: de novo sequencing assisted database search for sensitive and accurate peptide identification. Mol Cell proteomics: MCP 11(4) M111.010587. https://doi.org/10.1074/mcp.M111.010587 + + + Zhang M, Su Q, Lu Y, Zhao M, Niu B (2017) Application of Machine Learning Approaches for Protein-protein Interactions Prediction. Medicinal chemistry (Shariqah (United Arab Emirates)), 13(6), 506–514. https://doi.org/10.2174/1573406413666170522150940 + + + Zissler A, Stoiber W, Steinbacher P, Geissenberger J, Monticelli FC, Pittner S (2020) Postmortem protein degradation as a tool to estimate the PMI: a systematic review. Diagnostics (Basel Switzerland) 10(12):1014. https://doi.org/10.3390/diagnostics10121014 + + 10.3390/diagnostics10121014 + 33256203 + 7760775 + + + + +
+ + + 42215696 + + 2026 + 05 + 29 + +
+ + 1546-170X + + + 2026 + May + 29 + + + Nature medicine + Nat Med + + From donor lungs to digital twins. + 10.1038/d41591-026-00029-z + + + O'Leary + Karen + K + + + eng + + News + + + 2026 + 05 + 29 + +
+ + United States + Nat Med + 9502015 + 1078-8956 + + IM + + Machine Learning + Technology + Translational research + +
+ + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 22 + + + aheadofprint + + 42215696 + 10.1038/d41591-026-00029-z + 10.1038/d41591-026-00029-z + + +
+ + + 42215691 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + O²RDL-net for joint risk classification and delay forecasting in logistics systems using interaction amplified deep. + 10.1038/s41598-026-55703-6 + + Transportation and logistics systems face frequent delays and operational risks due to congestion, human factors, and rapidly changing conditions. Predicting delays and identifying risk levels in advance is therefore essential for reliable logistics planning. Most existing methods handle delay forecasting and risk classification separately and often fail to capture complex temporal and interaction-driven patterns. To overcome these limitations, this study proposes O²RDL-Net, a load-aware and interaction-amplified deep learning framework for joint risk classification and delay forecasting. The proposed model integrates higher-order operational indicators, including the Risk Accumulation Index, Delay Sensitivity Indicator, Human-Operational Interaction Score, and Logistics System Representation, to capture cumulative risk, short-term sensitivity, and system-level interactions. A spatio-temporal attention encoder with risk regime modulation is used to improve learning stability and generalization. Experimental results show that O²RDL-Net achieves superior performance compared to baseline models, with a mean absolute error of 2.05, RMSE of 3.01, and R² of 0.91 for delay forecasting. For risk classification, the model reaches an accuracy of 92%, precision of 91%, recall of 92%, and F1-score of 91%. Interpretability analysis using SHAP and local explanations confirms that the model relies on meaningful and domain-consistent features. Overall, O²RDL-Net provides an accurate, stable, and interpretable solution for real-world logistics risk and delay management. + © 2026. The Author(s). + + + + Yang + Xiao + X + + Low-altitude Management and Digital Economy College, XIHANG UNIVERSITY, Xi'an, 710077, China. jonah-y@xaau.edu.cn. + + + + eng + + + Grant No. 2025YB0214 + Research on the Coupled and Coordinated Development of Transportation and Modern Industrial System in Shaanxi Province + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Artificial intelligence + Deep Learning + Feature Construction + Forecasting + Logistics Network + Machine Learning + Risk Prediction + Supply Chain + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 9 + + + 2026 + 5 + 26 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215691 + 10.1038/s41598-026-55703-6 + 10.1038/s41598-026-55703-6 + + +
+ + + 42215678 + + 2026 + 05 + 29 + +
+ + 2398-6352 + + + 2026 + May + 29 + + + NPJ digital medicine + NPJ Digit Med + + Detecting dataset bias in medical AI using a generalized and modality agnostic auditing approach. + 10.1038/s41746-026-02807-y + + Despite many success stories along the path of Artificial Intelligence's (AI) rise in healthcare, there are comparably many reports of significant shortcomings and unexpected behavior of AI in deployment. A major risk is AI's reliance on association-based learning, where non-representative machine learning datasets can amplify latent bias during training and hide it during testing. To unlock new tools capable of detecting such AI bias issues, we present Generalized Attribute Utility and Detectability-Induced bias Testing (G-AUDIT). G-AUDIT is a data modality-agnostic dataset auditing approach that automatically quantifies shortcut learning risks by examining the interplay between task-level annotations, sensor-level measurements, and patient, environmental, and acquisition characteristics. We demonstrate the broad applicability of this method by analyzing a range of medical datasets across three distinct modalities (images, text, and tabular data) and machine learning tasks, successfully identifying potential shortcuts commonly overlooked by traditional qualitative methods. + © 2026. The Author(s). + + + + Drenkow + Nathan + N + + The Johns Hopkins University, Baltimore, MD, USA. nathan.drenkow@jhuapl.edu. + + + The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA. nathan.drenkow@jhuapl.edu. + + + + Pavlak + Mitchell + M + + The Johns Hopkins University, Baltimore, MD, USA. + + + + Harrigian + Keith + K + + The Johns Hopkins University, Baltimore, MD, USA. + + + + Zirikly + Ayah + A + + The Johns Hopkins University, Baltimore, MD, USA. + + + Department of Computer Science, School of Engineering and Applied Science, George Washington University, Washington, DC, USA. + + + + Subbaswamy + Adarsh + A + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Farhangi + Mohammad Mehdi + MM + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Petrick + Nicholas + N + + Center for Devices and Radiological Health, U.S. Food and Drug Administration, Silver Spring, MD, USA. + + + + Unberath + Mathias + M + + The Johns Hopkins University, Baltimore, MD, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Digit Med + 101731738 + 2398-6352 + + Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 6 + 3 + + + 2026 + 5 + 18 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215678 + 10.1038/s41746-026-02807-y + 10.1038/s41746-026-02807-y + + +
+ + + 42215677 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Stacked multi-fusion CNN: an adaptive attention model for privacy preserving deepfake forensics. + 10.1038/s41598-026-55325-y + + The emergence of Generative Artificial Intelligence (Gen-AI) and Generative Adversarial Network (GAN)-based deepfakes poses significant security risks in sociocultural and sociopolitical domains. This necessitates the development of advanced and effective detection methods to prevent vulnerability in social networks. Classical Machine Learning (ML) algorithms have their limitations, especially in classifying the deepfakes. To address these issues, this paper suggests a privacy-preserving Stacked Multi-Fusion (SMF) Convolutional Neural Network (CNN) approach to classify deepfakes. An improved CNN model is proposed, integrating an adaptive multi-scale attention framework with enhanced residual blocks and a Squeeze-and-Excitation (SE) mechanism. The selection of these components is backed with an ablation study to report the individual contribution to the overall optimal architecture. A hybrid lossless multilayer cryptosystem based on a chaos-based approach, Deoxyribonucleic Acid (DNA)-based computing, etc., is developed to secure images in cloud storage. The efficacy of the proposed SMF model is validated using the 140K Real and Fake Faces (RFF) image dataset. The proposed approach was found to achieve stable performance with minimal variation in various tests. It achieved a test accuracy and ROC-AUC of 97.80 and 99.79, respectively. This paper provides comprehensive relevant factors for building effective synthetic media detection systems. + © 2026. The Author(s). + + + + Rout + Jayanti + J + + P. G. Department of Computer Science, Fakir Mohan University, Balasore, 756019, Odisha, India. + + + + Mishra + Minati + M + + P. G. Department of Computer Science, Fakir Mohan University, Balasore, 756019, Odisha, India. + + + + Barik + Ram Chandra + RC + + Department of CSE, C. V. Raman Global University, Bhubaneswar, 752054, Odisha, India. + + + + Yadav + Devendra Kumar + DK + + School of Computer Science and Engineering, XIM University, Bhubaneswar, 752050, Odisha, India. devendra@xim.edu.in. + + + + Prasad + Dilip K + DK + + Department of Computer Science, UiT The Arctic University of Norway, Tromsø, 9037, Norway. + + + + Sekh + Arif Ahmed + AA + + Department of Computer Science, UiT The Arctic University of Norway, Tromsø, 9037, Norway. arif.a.sekh@uit.no. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Convolutional neural network + Deepfake detection + Squeeze-and-excitation attention + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 10 + 25 + + + 2026 + 5 + 23 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215677 + 10.1038/s41598-026-55325-y + 10.1038/s41598-026-55325-y + + +
+ + + 42215670 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + A hybrid AI vision model for single-camera tracking of rehabilitation exercises: a proof of concept in clinical settings. + 10.1038/s41598-026-55431-x + + Accurate measurement of range of motion (ROM) during physical rehabilitation is traditionally achieved using goniometers or multi-camera, marker-based motion capture systems. The latter, while highly accurate, require specialised laboratory infrastructure, are costly, and are unsuitable for home-based use. There is growing interest in markerless, camera-based alternatives that leverage artificial intelligence (AI) for joint angle estimation. This study presents a preliminary proof-of-concept evaluation of a hybrid AI vision system, combining the MediaPipe Pose framework (version 0.8.9.1, Full model variant) with a Mamdani-type fuzzy inference system, for joint angle estimation and exercise repetition counting using a single consumer-grade camera. Fourteen healthy adult rehabilitation staff members performed three exercises (elbow flexion, knee extension, and hip external rotation) simultaneously recorded by the proposed AI system and by a reference optical motion capture system (C-Motion Visual3D™, 14 calibrated infrared cameras, 53 retro-reflective markers). Reliability was assessed using two-way mixed-effects intraclass correlation coefficients (ICC[Formula: see text]) with absolute agreement. Individual-measure ICC values ranged from poor to good across joints and conditions (range: 0.005-0.68). The highest reliability was observed for the right hip external rotation ROM (individual ICC [Formula: see text]; average ICC [Formula: see text], 95% CI: 0.63-0.89). Several measures showed poor reliability, including the right elbow flexion ROM (individual ICC [Formula: see text]) and the minimum angle of the left hip external rotation (individual ICC [Formula: see text]). Confidence intervals were wide throughout. This proof of concept demonstrates that a single-camera AI system can capture general trends in joint angles during simple rehabilitation exercises in healthy adults under controlled conditions. However, reliability is inconsistent and frequently poor, and the system has not been evaluated in patient populations with pathological movement patterns. These findings do not support clinical deployment at this stage. Substantial further development and validation in patient cohorts are required before clinical or home-based use can be considered. + © 2026. The Author(s). + + + + Das + Utpal Chandra + UC + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + School of Clinical Sciences, Faculty of Health, Queensland University of Technology, Kelvin Grove, Brisbane, QLD, 4059, Australia. + + + Centre for Biomedical Technologies (CBT), Queensland University of Technology, Brisbane, QLD, 4000, Australia. + + + + Le + Ngoc Thien + NT + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Vitoonpong + Timporn + T + + Department of Rehabilitation Medicine, Faculty of Medicine, Chulalongkorn University, Bangkok, 10330, Thailand. timporn.v@chula.ac.th. + + + Department of Rehabilitation Medicine, King Chulalongkorn Memorial Hospital & The Thai Red Cross Society, Bangkok, 10330, Thailand. timporn.v@chula.ac.th. + + + + Pongmala + Chatkaew + C + + Department of Radiology, University of Michigan, Ann Arbor, 48104, MI, USA. + + + Department of Neurology, University of Michigan, Ann Arbor, 48104, MI, USA. + + + + Prapinpairoj + Chalermdej + C + + Department of Rehabilitation Medicine, King Chulalongkorn Memorial Hospital & The Thai Red Cross Society, Bangkok, 10330, Thailand. + + + + Anannub + Kawee + K + + Health Service Center, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Kaewplung + Pasu + P + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. + + + + Chaitusaney + Surachai + S + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. surachai.c@chula.ac.th. + + + + Benjapolakul + Watit + W + + Center of Excellence in Artificial Intelligence, Machine Learning and Smart Grid Technology, Department of Electrical Engineering, Faculty of Engineering, Chulalongkorn University, Bangkok, 10330, Thailand. watit.b@chula.ac.th. + + + + eng + + + B04G640068 + National Science, Research and Innovation Fund (NSRF) via the Program Management Unit for Human Resources & Institutional Development, Research and Innovation + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + Competing interests: The authors declare no competing interests. Ethical approval: The research conducted with healthy human participants at Chulalongkorn University in Thailand complied with the Regulations Governing Life Science and Medical Research Involving Human Subjects. Approval was secured from the Institutional Review Board of the Faculty of Medicine, Chulalongkorn University, Thailand (COA No. 0495-2022; IRB No. 846-64), in accordance with the Declaration of Helsinki, The Belmont Report, CIOMS Guidelines, and ICH-GCP. Informed consent: All study participants provided written informed consent for participation and for the publication of identifiable information and images. Participants were fully informed of the study objectives, dissemination plans, and potential risks and benefits prior to enrolment. +
+ + + + 2025 + 9 + 20 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215670 + 10.1038/s41598-026-55431-x + 10.1038/s41598-026-55431-x + + +
+ + + 42215668 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Autism spectrum disorder identification using machine learning models on MRI data. + 10.1038/s41598-026-55163-y + + Autism Spectrum Disorder (ASD) is a neurodevelopmental condition that affects sensory processing, speech, behavior and identifying the condition at an early stage is necessary to provide the treatment. The existing diagnostic methods are mainly based on personalized subjective and time consuming. This study introduces an objective diagnostic method by analyzing technical noise signature producing the Quality Vector which is extracted from multimodal MRI data. This work leverages Machine Learning (ML) and Deep Learning (DL) techniques on this Quality vector for improving ASD detection. The methodology leveraged technical Quality Assessment Protocol (QAP) metrics from the ABIDE II repository, integrating structural (sMRI), functional (fMRI), and diffusion (DTI) modalities. The methodology utilized Density-Based Spatial Clustering of Applications with Noise (DBSCAN) for outlier removal and Principal Component Analysis (PCA) for dimensionality reduction. A classification pipeline was implemented using a 1D-Residual Network (1D-ResNet), Convolutional Neural Network(CNN), SVM, kNN and a proposed Voting Ensemble (SVM, KNN, and XGBoost), validated through stratified 10-fold cross-validation. In this work, the proposed ensemble emerged as the superior model, achieving a diagnostic accuracy of 95.84%. These findings indicate that technical biomarkers derived from imaging quality metrics are highly useful for ASD detection. This research demonstrates that technical quality metrics, often dismissed as noise, contain significant diagnostic value. The Quality Vector framework provides a computationally efficient and objective tool for ASD identification. The high classification performance suggests that the biomarkers obtained from MRI have a potential future scope in research on early ASD diagnosis and detection. + © 2026. The Author(s). + + + + V + Milner Paul + MP + + Department of Electrical Engineering, National Institute of Technology Manipur (NITM), Manipur, India. vithayathilmilner@gmail.com. + + + Department of Electrical and Electronics Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. vithayathilmilner@gmail.com. + + + + Babu + Caren + C + + Department of Electronics and Communication Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. + + + + Jose + Suni + S + + Department of Computer Science and Engineering, Christ College of Engineering, Thrissur, Kerala, 680125, India. + + + + Adhikari + Shuma + S + + Department of Electrical Engineering, National Institute of Technology Manipur (NITM), Manipur, India. + + + + Singh + Loitongbam Surajkumar + LS + + Department of Electronics and Communication Engineering, National Institute of Technology Manipur (NITM), Manipur, India. + + + + Francis + Jijo + J + + Department of Zoology, Christ College (Autonomous), 680125, Irinjalakuda, India. + + + + Parekkattil + Adarsh V + AV + + Department of Electronics and Communication, Indian Institute of Technology Roorkee (IITR), Roorkee, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Autism spectrum disorder + Convolutional neural network (CNN) + Early detection + Machine learning + Magnetic resonance imaging + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 7 + 8 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215668 + 10.1038/s41598-026-55163-y + 10.1038/s41598-026-55163-y + + +
+ + + 42215666 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Blockchain-driven machine learning-enabled intrusion-resilient authenticated key agreement protocol for edge-centric IoT systems. + 10.1038/s41598-026-55266-6 + + The edge computing-based Internet of Things (IoT) system minimizes latency by processing data locally, reducing the distance it needs to travel. Processing data in proximity to its source enables rapid decision-making and real-time reactions. The edge-based IoT has several possible uses, including smart cities, smart healthcare, industrial automation & processing, smart farming, and many more. In this paper, we propose a blockchain-driven machine learning-enabled intrusion-resilient authenticated key agreement scheme for edge-centric IoT systems (in short, BMAS-EIoT), which is equipped with the features of authentication, key management, and machine learning-based intrusion detection. In BMAS-EIoT, we provide the network and threat models to enhance comprehension of the organization and deployment of devices and systems, as well as the potential threats to the system. BMAS-EIoT has been observed to possess protection against a variety of potential attacks during the security investigation. Moreover, it has been observed that BMAS-EIoT outperforms other present schemes in terms of performance comparison. A practical implementation of BMAS-EIoT is provided to evaluate the effectiveness of its key components, including intrusion detection and blockchain implementation. Furthermore, BMAS-EIoT possesses supplementary noteworthy capabilities and enhanced security attributes. + © 2026. The Author(s). + + + + Karnatak + Vijay + V + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Tripathi + Neha + N + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Wazid + Mohammad + M + + Department of Computer Science and Engineering, Graphic Era Deemed to be University, Dehradun, 248002, Uttarakhand, India. + + + + Mittal + Saksham + S + + Department of Computer Science and Engineering, Graphic Era Hill University, Dehradun, 248002, Uttarakhand, India. + + + + Das + Ashok Kumar + AK + + Center for Security, Theory and Algorithmic Research, International Institute of Information Technology, Hyderabad, 500032, India. ashok.das@iiit.ac.in. + + + Department of Computer Science and Engineering, College of Informatics, Korea University, 145 Anam-ro, Seongbuk-gu, 02841, Seoul, South Korea. ashok.das@iiit.ac.in. + + + + K + Vivekananda Bhat + VB + + Manipal Institute of Technology, Manipal Academy of Higher Education, Manipal, Karnataka, 576104, India. kv.bhat@manipal.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Authentication + Blockchain + Edge computing + Internet of things + Intrusion detection + Security + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 3 + 23 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 21 + + + aheadofprint + + 42215666 + 10.1038/s41598-026-55266-6 + 10.1038/s41598-026-55266-6 + + +
+ + + 42215649 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Machine learning based approaches for structure activity relationship analysis of heparanase inhibitors. + 10.1038/s41598-026-55098-4 + + Human Heparanase (HPSE), the only mammalian endo-β-D-glucuronidase, plays an important role in extracellular matrix remodeling and the release of heparin-bound growth factors. Its overexpression is strongly correlated with increased tumor growth, angiogenesis, metastasis, and inflammation, highlighting HPSE as a compelling therapeutic target for oncology and inflammatory diseases. This study aimed to develop and validate a robust computational workflow for predicting the activity class of potential HPSE inhibitors using curated data from the ChEMBL database. Bioactivity data ([Formula: see text]) for known HPSE inhibitors were extracted and put through a meticulous data curation process, which included chemical structure standardization, molecular weight filtering, and final deduplication based on standardized isomeric SMILES to ensure structural uniqueness. Continuous [Formula: see text] values (nM) were converted to [Formula: see text] and subsequently categorized into three activity classes: A ([Formula: see text] and [Formula: see text]), B ([Formula: see text] and [Formula: see text]), and C ([Formula: see text] and [Formula: see text]) for multi-class classification. Molecular representations included two-dimensional physicochemical descriptors, Morgan fingerprints, and three-dimensional descriptors derived from optimized low-energy conformers generated using ETKDGv3 and MMFF94s. Multiple machine learning classifiers were evaluated using pipelines incorporating imputation, scaling, optional Principal Component Analysis (PCA) dimensionality reduction applied to the combined feature sets, and SMOTE (Synthetic Minority Over-sampling Technique) to address class imbalance. Models were trained and optimized using randomized search cross-validation on an 80% training split, maximizing balanced accuracy. The best-performing model pipeline (RF_B, a Random Forest with PCA on 2D+Morgan Fingerprints+3D features) achieved approximately 80% accuracy and 78.5% balanced accuracy on the held-out 20% test set. The final validated model was successfully utilized to predict the activity classes of new, unseen compounds. This comprehensive pipeline provides a validated tool for classifying HPSE inhibitors derived from ChEMBL data, potentially aiding virtual screening efforts and guiding hit prioritization in drug discovery campaigns targeting HPSE. + © 2026. The Author(s). + + + + Shanbhogue + Rachana V + RV + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. shanbhoguerachana@gmail.com. + + + + Gandhi + Neha S + NS + + Department of Biotechnology and Chemical Engineering, Manipal University Jaipur, 303007, Rajasthan, India. neha.gandhi@jaipur.manipal.edu. + + + School of Biomedical Sciences, Queensland University of Technology, Kelvin Grove, Queensland, Brisbane, Australia. neha.gandhi@jaipur.manipal.edu. + + + + B + Shanthi P + SP + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. shanthi.moorkoth@manipal.edu. + + + + Navada + Sandhyalaxmi G + SG + + Manipal Institute of Technology, Manipal Academy of Higher Education, 576104, Manipal, Karnataka, India. sandhya.girish@manipal.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 11 + 10 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 20 + + + aheadofprint + + 42215649 + 10.1038/s41598-026-55098-4 + 10.1038/s41598-026-55098-4 + + +
+ + + 42215613 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + A temporal adaptive dictionary-constrained LDA and Bi-calibrated dual granularity DTM framework for dynamic topic evolution analysis in academic papers. + 10.1038/s41598-026-54348-9 + + With the explosive growth of academic achievements in artificial intelligence (AI), accurately capturing the dynamic evolution of research topics is crucial for research topic selection, policy-making, and industrial innovation. To address the limitation that traditional topic models struggle to balance static topic recognition accuracy and dynamic evolution tracking capability, this study proposes a unified framework: Temporal Adaptive Dictionary-Constrained Latent Dirichlet Allocation (LDA) combined with Bi-calibrated Dual Granularity Dynamic Topic Model (DTM). We conduct a systematic empirical analysis of dynamic topic evolution in the AI field using English AI papers retrieved from the Web of Science (WOS) Core Collection (2014-2023). Specifically, we first optimize the topic initialization process of LDA using a domain-specific dictionary to enhance the accuracy of static topic clustering. Second, we take the core topics identified by the optimized LDA as prior knowledge and input them into DTM, while optimizing the traditional single temporal granularity to an "annual + quarterly" dual granularity to accurately track the changes in topic strength, keyword composition, and cross-topic association relationships over time. Finally, we verify the performance of the proposed model using perplexity and topic coherence indicators, and reveal the coupling characteristics between different topics through correlation analysis. Results indicate that six core topic clusters have emerged in the AI field, with "generative AI", "large language models", and "multimodal learning" evolving into explosive topics after 2021, traditional machine learning shows a declining trend, with its core focus shifting toward "few-shot learning" and "edge computing adaptation". The top three topic couplings are "generative AI-large language models", "computer vision-multimodal learning" and "reinforcement learning-robotics". The proposed combined model outperforms single models, achieving a 17.3% reduction in perplexity and a 23.5% decrease in topic drift rate, thereby providing valuable decision support for researchers seeking to grasp field frontiers and management departments for optimizing resource allocation. + © 2026. The Author(s). + + + + Yin + Xueqi + X + + School of International Studies, Tianjin University of Commerce, Tianjin, 300134, China. yinxq@tjcu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Academic paper analysis + Artificial intelligence + Dynamic topic model + Latent dirichlet allocation + Text mining + Topic evolution + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 30 + + + 2026 + 5 + 18 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215613 + 10.1038/s41598-026-54348-9 + 10.1038/s41598-026-54348-9 + + +
+ + + 42215604 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Development and validation of a noninvasive machine learning model using urinary extracellular vesicle physical parameters for prostate cancer diagnosis. + 10.1038/s41598-026-54920-3 + + Urinary extracellular vesicles (uEVs) are promising biomarkers for prostate cancer (PCa). Although novel uEV-based biomarkers have advanced early diagnosis, their detection processes remain cumbersome and cost-prohibitive. The physical parameters of uEVs offer untapped predictive potential for PCa, providing a more convenient, rapid, and cost-effective diagnostic approach. This study aims to construct a predictive model integrating uEV physical parameters with machine learning (ML) algorithms to enhance the early diagnosis of PCa. Urine samples were collected from 222 eligible participants. uEVs were isolated using a commercial kit, and their concentration and size parameters were quantified via nanoparticle tracking analysis (NTA). Utilizing these physical parameters, five ML algorithms were trained and evaluated to identify the optimal diagnostic model for PCa. Model performance was systematically assessed using the area under the receiver operating characteristic curve (AUC), learning curves, calibration curves, and decision curve analysis (DCA). Additionally, SHapley Additive exPlanations (SHAP) were employed to visualize the contributions of key predictors. Analysis of uEV physical parameters revealed that, compared to benign controls, PCa patients exhibited a significantly higher proportion of 30-150 nm uEVs and a smaller overall particle size (p < 0.001). Among the evaluated algorithms, the eXtreme Gradient Boosting (XGBoost) model demonstrated superior performance. For discriminating PCa from benign prostatic hyperplasia (BPH), the XGBoost model achieved AUC values of 0.934 and 0.864 in the training and testing cohorts, respectively. DCA demonstrated that the XGBoost model yielded a higher clinical net benefit across a threshold probability range of 0-60%. Overall, the diagnostic efficacy and clinical utility of the XGBoost model significantly outperformed routine clinical parameters, including prostate-specific antigen (PSA) and prostate-specific antigen density (PSAD). This study successfully developed and validated a noninvasive ML-based diagnostic model utilizing the physical parameters of uEVs. This approach serves as a preliminary adjunctive tool to assist clinicians in accurately identifying prostate cancer, thereby potentially reducing the incidence of unnecessary prostate biopsies. + © 2026. The Author(s). + + + + Jiang + Kangxian + K + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + Department of Surgical Critical Care Medicine, Beijing Shijitan Hospital, Capital Medical University, No.10, Tieyi Road, Beijing, 100038, China. + + + + Pan + Dongwei + D + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Yu + Jiayin + J + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Cai + Wenbing + W + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Zhang + Bingfeng + B + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Zuheng + Z + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Lu + Yuqing + Y + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Wang + Dianyu + D + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + + Li + Xiao + X + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. + + + + Zheng + Deyong + D + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Mingda + M + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. + + + + Wang + Fubo + F + + Center for Genomic and Personalized Medicine, Guangxi key Laboratory for Genomic and Personalized Medicine, Guangxi Collaborative Innovation Center for Genomic and Personalized Medicine, University Engineering Research Center of Digital Medicine and Healthcare, Guangxi Medical University, No. 22, Shuangyong Road, Qingxiu District, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + Department of Urology, The First Affiliated Hospital of Guangxi Medical University, Guangxi Medical University, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + School of Life Sciences, Guangxi Medical University, Nanning, 530021, Guangxi, China. wangfubo@gxmu.edu.cn. + + + + Chen + Junyi + J + + Department of Urology, The Second Affiliated Hospital of Fujian Medical University, No. 34, Zhongshanbei Road, Licheng District, Quanzhou, 362000, Fujian Province, China. chenjunyidoctor@163.com. + + + + eng + + + 82372828, + National Natural Science Foundation of China + + + + 2023GXNSFFA026003 + Science Foundation for Distinguished Young Scholars of Guangxi + + + + AA22096030 + Science and Technology Major Project of Guangxi + + + + 2021015 + Yongjiang Program of Nanning + + + + 2021GGA038 + the Science and Technology Plan Project of Fujian Provincial Health Commission + + + + 2022C035R + High-level Talents Innovation and Entrepreneurship Project of Quanzhou Science and Technology Plan + + + + 2022J01277 + Natural Science Foundation of Fujian Province + + + + 2025CXB023 + Fujian Provincial Health Commission + + + + 2026J001703 + Fujian Provincial Natural Science Foundation of China + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Diagnosis + Machine learning + NTA + Prostate cancer + Urinary extracellular vesicles + + Declarations. Competing interests: The authors declare no competing interests. Ethics approval and consent to participate: The studies involving human participants were reviewed and approved by the Ethics Committee of Shanghai Changhai Hospital, the Ethics Committee of Taizhou People’s Hospital, and the Ethics Committee of Zhongda Hospital. (Approval No. CHEC2013-115).Clinical trial number: not applicable. This study strictly adhered to the ethical principles outlined in the Declaration of Helsinki, ensuring that all data were derived from actual clinical cases. Informed consent: Informed consent was obtained from each patient or their legal representative before sample collection. Consent for publication: Not applicable. +
+ + + + 2025 + 10 + 14 + + + 2026 + 5 + 21 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215604 + 10.1038/s41598-026-54920-3 + 10.1038/s41598-026-54920-3 + + +
+ + + 42215600 + + 2026 + 05 + 29 + +
+ + 2399-3669 + + + 2026 + May + 29 + + + Communications chemistry + Commun Chem + + CholBindNet as an interpretable neural network for cholesterol-binding site classification. + 10.1038/s42004-026-02064-w + + Cholesterol is a key modulator of membrane protein structure and function, yet predicting cholesterol-binding sites remains challenging due to its non-druglike physicochemical properties. Here, we curated more than 800 high-resolution transmembrane protein structures containing cholesterol, and developed an interpretable, atom-based graph neural network, called CholBindNet. A positive-unlabeled (PU) training strategy was employed to address the scarcity of negative samples due to the promiscuous nature of cholesterol binding. We show that CholBindNet substantially outperforms existing machine learning models trained on general ligand-binding datasets, including AlphaFold3, P2Rank, and DiffDock. The performance and generalizability of the model on unseen membrane proteins were further demonstrated by rapidly assessing cholesterol-binding sites in the PIEZO2 ion channel against all-atom molecular dynamics (MD) simulations conducted on Anton3 supercomputer. Additionally, strong model interpretability was achieved for CholBindNet through atom-level feature encoding, Grad-CAM visualization, and attention-based scoring analysis. Overall, CholBindNet provides an efficient and scalable approach for classifying and ranking cholesterol-binding sites on membrane proteins, achieving performance comparable to computationally expensive MD simulations while offering rich biophysical insights into the atomic-level spatial patterns beyond amino-acid sequence. This work lays the foundation for future deep-learning models targeting membrane protein drug-binding sites and cholesterol-modulated therapeutics. + © 2026. The Author(s). + + + + Hernandez + Alexis + A + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. + + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Bhatt + Aashish + A + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Revilla + Ivan + I + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. + + + + Levine + Jacob Ede + JE + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. + + + + Kosaraju + Sai Chandra + SC + 0000-0002-4332-6217 + + Computer Science Department, California State Polytechnic University, Pomona, CA, USA. skosaraju@cpp.edu. + + + + Luo + Yun Lyna + YL + 0000-0003-3581-754X + + Department of Biotechnology and Pharmaceutical Sciences, Western University of Health Sciences, Pomona, CA, USA. luoy@westernu.edu. + + + + eng + + + GM130834 + U.S. Department of Health & Human Services | NIH | National Institute of General Medical Sciences (NIGMS) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Commun Chem + 101725670 + 2399-3669 + + Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 1 + 1 + + + 2026 + 5 + 4 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215600 + 10.1038/s42004-026-02064-w + 10.1038/s42004-026-02064-w + + +
+ + + 42215593 + + 2026 + 05 + 29 + +
+ + 2397-768X + + + 2026 + May + 29 + + + NPJ precision oncology + NPJ Precis Oncol + + Early detection of gastric cancer: a novel circulating microbiome DNA based liquid biopsy assay. + 10.1038/s41698-026-01532-9 + + Microorganisms play significant roles in gastric cancer (GC) progression. However, it is unknown whether circulating microbiome DNA (cmDNA) possesses GC specific features and could serve as diagnostic biomarker for GC detection. In this study, one cohort of 586 participants from Zhejiang Cancer Hospital were divided randomly into the training and testing datasets. Another cohort of 299 participants enrolled from three hospitals was used as an independent validation cohort. The cmDNA from plasma samples were analyzed by sequencing and various tools. The significant features of cmDNA were used as inputs to establish a machine learning diagnostic model (cmDNA-MLM). The cmDNA-MLM achieved the area under receiver operating characteristic curve (AUC) of 0.831 for GC across all stages in the testing cohort and 0.914 in the independent validation cohort. Notably, this model demonstrated strong performance in detecting early-stage GC, achieving an AUC of 0.792 for stage I GC in the validation cohort and exhibited favorable sensitivities across various molecular subtypes. The stage shift analysis showed a notable increase in the number of patients diagnosed at stage I. This cmDNA-MLM exhibited promising performance in early GC detection, which could be used as a clinical liquid biopsy methodology after more clinical validation studies. + © 2026. The Author(s). + + + + Chen + Yongyi + Y + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + School of Laboratory Medicine and Life Sciences, Wenzhou Medical University, Wenzhou, China. + + + + Han + Xinhong + X + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Luo + Miao + M + + Department of Clinical Laboratory, Chongqing Yubei District People's Hospital, Chongqing, China. + + + + Luo + Liulin + L + + Department of Clinical Laboratory, Shanghai Yangpu Hospital, Tongji University School of Medicine, Shanghai, China. + + + + Wang + Tingzhang + T + + Key Laboratory of Microbial Technology and Bioinformatics of Zhejiang Province, Hangzhou, China. + + + + Kong + Congcong + C + + Key Laboratory of Microbial Technology and Bioinformatics of Zhejiang Province, Hangzhou, China. + + + + Ye + Liuqing + L + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Jin + Jiangang + J + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Hou + Dingding + D + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Liao + Haiqi + H + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. + + + + Wang + Zhonglin + Z + + OmixScience Laboratory, OmixScience Co. Ltd., Hangzhou, China. + + + + Xue + Wei + W + + OmixScience Laboratory, OmixScience Co. Ltd., Hangzhou, China. + + + + Lin + Ziao + Z + + OmixScience Research Institute, OmixScience Co. Ltd., Shenzhen, China. + + + Liangzhu Laboratory, Zhejiang University, Hangzhou, China. + + + + Xu + Songxiao + S + + Department of Clinical Laboratory, Zhejiang Cancer Hospital, Hangzhou Institute of Medicine (HIM), Chinese Academy of Sciences, Hangzhou, China. xusx@zjcc.org.cn. + + + School of Laboratory Medicine and Life Sciences, Wenzhou Medical University, Wenzhou, China. xusx@zjcc.org.cn. + + + + eng + + + 82302622 + National Natural Science Foundation of China + + + + 2022KY675 + Zhejiang Province Medical and Health Technology Project + + + + 2024KY862 + Zhejiang Province Medical and Health Technology Project + + + + 2024C03050 + "Pioneer" and "Leading Goose" R&D Program of Zhejiang + + + + 2022C03002 + "Pioneer" and "Leading Goose" R&D Program of Zhejiang + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Precis Oncol + 101708166 + 2397-768X + + Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 9 + 16 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215593 + 10.1038/s41698-026-01532-9 + 10.1038/s41698-026-01532-9 + + +
+ + + 42215588 + + 2026 + 05 + 29 + +
+ + 2398-6352 + + + 2026 + May + 29 + + + NPJ digital medicine + NPJ Digit Med + + Development and validation of a machine learning-based diagnostic system for 22 pediatric respiratory pathogens: a large-scale multicenter study. + 10.1038/s41746-026-02818-9 + + Respiratory tract infections (RTIs) are a significant cause of morbidity in children, caused by a wide range of pathogens. As treatment strategies depend on the causative pathogen, early and accurate diagnosis is crucial. We developed and validated an interpretable Pathogen Diagnostic System for Pediatric Respiratory Infections (Pathog-PDx), conducting a multicenter study involving 134,500 hospitalized children across three clinical centers and two databases. The model integrated 42 clinical and laboratory features from electronic health records (EHR) to enable early pathogen identification. Prospective validation was carried out on an independent cohort of 1338 children to assess the real-world applicability of the model. Pathog-PDx accurately distinguished 22 pathogen subtypes and outperformed conventional models in identifying both single and mixed infections. The model achieved high classification performance for key pathogens, such as influenza virus (AUC = 0.95; Sn: 0.88; Sp: 0.86), with mean AUCs of 0.88 for various pathogens of RTIs. The model has been deployed as a web-based decision support system, which is freely accessible at https://pathogpdx.zzu.edu.cn. Altogether, Pathog-PDx represents a potential tool for the early identification of respiratory tract pathogens in pediatric patients, which can provide actionable predictions ahead of conventional test results to guide timely and targeted therapy. + © 2026. The Author(s). + + + + Su + Dubin + D + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Qun + Q + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Xiamen Cell Therapy Research Center, The First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, China. + + + + Xu + Ruizhi + R + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Qihong + Q + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Ma + Chiyuan + C + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Chen + Xi + X + + Department of Clinical Laboratory, Children's Hospital of Fudan University (Xiamen Branch), Xiamen Children's Hospital, Xiamen, Fujian, China. + + + + Yang + Yunyun + Y + + Department of Laboratory Medicine, Xiamen Key Laboratory of Genetic Testing, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + + Qin + Feibo + F + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. + + + + Zhou + Ziwei + Z + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. + + + + Li + Sixian + S + + Department of Functional Neurology, Shenzhen Second People's Hospital, Shenzhen, Guangdong, China. + + + + Peng + Jie + J + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Ge + Dandan + D + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. + + + + Fan + Jiajun + J + + Siebel School of Computing and Data Science, University of Illinois Urbana-Champaign, Urbana, Champaign, IL, USA. + + + + Li + Xingyu + X + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. + + + + Wang + Yanbo + Y + + Nanjing Drum Tower Hospital Center of Molecular Diagnostic and Therapy, State Key Laboratory of Pharmaceutical Biotechnology, Jiangsu Engineering Research Center for MicroRNA Biology and Biotechnology, NJU Advanced Institute of Life Sciences (NAILS), School of Life Sciences, Nanjing University, Nanjing, Jiangsu, China. + + + + Yang + Yungang + Y + + Department of Pediatrics, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. xmyyg@sina.com. + + + Department of Pediatrics, Pediatric Key Laboratory of Xiamen, The First Affiliated Hospital of Xiamen University, Xiamen, Fujian, China. xmyyg@sina.com. + + + + Guo + Yaping + Y + + Department of Pathophysiology, School of Basic Medical Sciences, Zhengzhou University, Zhengzhou, Henan, China. guoyaping@zzu.edu.cn. + + + + Yang + Jingjing + J + + Department of Pulmonary and Critical Care Medicine, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. Jingjingyang_xmu@126.com. + + + + Ning + Wanshan + W + + Institute for Clinical Medical Research, the First Affiliated Hospital of Xiamen University, School of Medicine, Xiamen University, Xiamen, Fujian, China. ningwanshan@xmu.edu.cn. + + + + eng + + + 3502Z20214001 + Project of Xiamen Cell Therapy Research Center + + + + 32570802 + National Natural Science Foundation of China + + + + 32400532 + National Natural Science Foundation of China + + + + 3502Z20254ZD1032 + the Guided Project of Medical and Health Care in Xiamen + + + + 3502Z20254ZD1004 + the Guided Project of Medical and Health Care in Xiamen + + + + 2021ZD0201300 + National Key R&D Program of China + + + + 2024GGB18 + Fujian Provincial Health Technology Project + + + + 2025D022 + Fujian Science and Technology Program Guiding Project + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Digit Med + 101731738 + 2398-6352 + + Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 8 + 19 + + + 2026 + 5 + 15 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215588 + 10.1038/s41746-026-02818-9 + 10.1038/s41746-026-02818-9 + + +
+ + + 42215586 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Ethnicity-specific molecular subtypes and a machine-learning risk model in Asian patients with non-muscle-invasive bladder cancer. + 10.1038/s41598-026-55438-4 + + Non-muscle-invasive bladder cancer (NMIBC) has high rates of recurrence and progression, yet its molecular landscape across different ethnicities remains poorly defined. We assembled a meta-cohort of 202 Asian NMIBC transcriptomes and identified three novel molecular subtypes (AC0, AC1, AC2) using non-negative matrix factorization clustering. These subtypes, each associated with distinct biological pathways and clinical outcomes, were externally validated across 22 datasets. Subtype-specific biomarkers (RABL6, MYBL2, RAD54L, and FAM64A) were confirmed by immunohistochemistry in an independent Asian cohort (n = 210), enabling the development of a machine-learning-based risk stratification model. AC1, characterized by aggressive features and enrichment of cell cycle and oncogenic signaling pathways, exhibited the poorest prognosis. Notably, after adjustment for T-stage and grade, the combined risk model was independently prognostic in Asian cohorts but not in European cohorts, underscoring ethnic differences in NMIBC biology. Our findings delineate distinct molecular subtypes and introduce a clinically applicable, ethnicity-specific prognostic model for Asian patients with NMIBC. This study emphasizes the importance of incorporating ethnic diversity into precision oncology frameworks and provides a foundation for personalized therapeutic and surveillance strategies in underrepresented populations. + © 2026. The Author(s). + + + + Jung + Minsun + M + + Department of Pathology, Yonsei University College of Medicine, Seoul, Republic of Korea. + + + + Park + Sangyong + S + + Department of Statistics, Seoul National University, Seoul, Republic of Korea. + + + + Jang + Insoon + I + + Biomedical Research Institute, Seoul National University Hospital, Seoul, Republic of Korea. + + + Blood Transfusion Research Institute, Korean Red Cross, Wonju, Gangwon-do, Republic of Korea. + + + + Han + Dohyun + D + + Department of Transdisciplinary Medicine, Institute of Convergence Medicine with Innovative Technology, Seoul National University Hospital, Seoul, Republic of Korea. + + + Proteomics Core Facility, Biomedical Research Institute, Seoul National University Hospital, Seoul, Republic of Korea. + + + + Cho + Yong Mee + YM + + Department of Pathology, Asan Medical Center, University of Ulsan College of Medicine, Seoul, Republic of Korea. + + + + Kim + Kwangsoo + K + + Department of Transdisciplinary Medicine, Institute of Convergence Medicine with Innovative Technology, Seoul National University Hospital, Seoul, Republic of Korea. kksoo716@gmail.com. + + + Department of Medicine, Seoul National University, Seoul, Republic of Korea. kksoo716@gmail.com. + + + + Moon + Kyung Chul + KC + + Department of Pathology, Seoul National University College of Medicine, Seoul, Republic of Korea. blue7270@snu.ac.kr. + + + Kidney Research Institute, Medical Research Center, Seoul National University College of Medicine, Seoul, Republic of Korea. blue7270@snu.ac.kr. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Cluster Analysis + Ethnicity + Machine Learning + Non-Muscle Invasive Bladder Neoplasms + Tumor Biomarkers + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 5 + 13 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215586 + 10.1038/s41598-026-55438-4 + 10.1038/s41598-026-55438-4 + + +
+ + + 42215583 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Wireless charging ferrite core design with improved material efficiency for mobile devices by enhancing outer-region flux density. + 10.1038/s41598-026-55270-w + + Wireless power transfer (WPT) systems integrated with machine learning (ML) techniques have emerged as promising solutions for enhancing performance and efficiency. Material efficiency, which involves achieving high performance with minimal material use, is crucial for mobile devices to enhance user satisfaction. This paper proposes a core structure design methodology for WPT systems that enhances mutual inductance (MI) by segmenting and assembling the ferrite core, thereby improving material efficiency within limited space constraints. For genetic algorithm (GA)-based optimization, an ML estimator is implemented to replace iterative finite element method simulations during the GA optimization loop, reducing the average computation time from 203s to 86μs and significantly accelerating the GA optimization process. Furthermore, the designed core structure exhibits improved uniformity of magnetic flux density by enhancing the outer-region magnetic flux density between the coils, thereby contributing to higher MI. Experimental results show that the proposed core structure achieves a 17.44% higher normalized MI compared to conventional structures, using less material through an asymmetrical configuration, which also reduces weight and cost. Furthermore, the optimized asymmetrical structure demonstrates robustness under lateral misalignment conditions ([Formula: see text] mm), consistently maintaining higher material efficiency than the full-piece reference even under spatial offsets. These findings demonstrate the potential of ML-driven approaches for developing high-performance, computationally efficient, and cost-effective WPT systems. + © 2026. The Author(s). + + + + Park + Yohan + Y + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Shah + Syed Ahson Ali + SAA + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Cho + Woo-Young + WY + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Park + Hyojun + H + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. + + + + Lee + Hyunwoong + H + + Oceansbio, Seoul, 04303, South Korea. + + + + Kim + Yun-Su + YS + + Department of Electrical Engineering and Computer Science, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. yunsukim@gist.ac.kr. + + + Research Institute for Solar and Sustainable Energies, Gwangju Institute of Science and Technology, Gwangju, 61005, South Korea. yunsukim@gist.ac.kr. + + + + eng + + + No. RS-2026-25533249 + Korea Institute of Energy Technology Evaluation and Planning + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Ferromagnetic cores design + Genetic algorithm + Inductive power transfer + Mutual inductance + Wireless power transfer + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 3 + 3 + + + 2026 + 5 + 23 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 19 + + + aheadofprint + + 42215583 + 10.1038/s41598-026-55270-w + 10.1038/s41598-026-55270-w + + +
+ + + 42215579 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Machine learning based detection of subacute ruminal acidosis in early lactation dairy cows using multi-sensor behavioral, physiological, and milk production data. + 10.1038/s41598-026-55162-z + + Subacute ruminal acidosis (SARA) is a common metabolic disorder in early lactation dairy cows that negatively affects rumen function, milk production, and animal welfare. Early identification remains challenging because clinical signs are often subtle and transient. The aim of this study was to evaluate whether multi sensor behavioral, physiological, and milk-production data could be used to identify cows experiencing SARA using machine-learning approaches. The study included early-lactation Holstein cows during the first 100 days in milk. The final dataset comprised 636 cow-day observations, including 134 SARA cases and 502 clinically healthy controls. Cow identification numbers were additionally used as grouping variables during cross-validation to ensure complete separation of individual animals between training and validation subsets. SARA was defined based on continuous ruminal pH measurements, where cows were classified as SARA when ruminal pH remained between 5.2 and 5.8 for at least 180 min per day. Sensor derived variables included rumination time, activity, water intake, reticulorumen temperature, milk yield, and milk composition obtained from intraruminal boluses and an in-line milk analyzer. Six supervised machine learning classifiers were developed to classify SARA status based on combined sensor data. Among the evaluated models, SVM demonstrated the highest discriminatory performance, which achieved an area under the curve (AUC) of 0.97, accuracy of 0.95, sensitivity of 0.86, and specificity of 0.98 under repeated cow-level grouped cross-validation. Random forest showed similar performance (AUC = 0.97; accuracy = 0.93 and 0.98, respectively). Across all models, specificity was consistently higher than sensitivity, indicating that healthy cows were classified more accurately than SARA cases. These results demonstrate that integrated behavioral, physiological, and milk production data obtained from automated sensor systems can support classification of cows experiencing SARA under commercial farm conditions. The findings support the potential of multi sensor monitoring systems combined with machine learning classifiers as a tool for automated detection of rumen health disturbances in precision dairy farming. + © 2026. The Author(s). + + + + Grigė + Samanta + S + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. Samanta.grige1@lsmu.lt. + + + + Girdauskaitė + Akvilė + A + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Grigas + Ovidijus + O + + Faculty of Informatics, Kaunas University of Technology, 50254, Kaunas, Lithuania. + + + + Japertas + Sigitas + S + + Practical Training and Research Center, Lithuanian University of Health Sciences, Topolių g. 6, 54310, Kaunas, Lithuania. + + + + Malašauskienė + Dovilė + D + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Televičius + Mindaugas + M + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Urbutis + Mingaudas + M + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Džermeikaitė + Karina + K + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Krištolaitytė + Justina + J + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + Antanaitis + Ramūnas + R + + Animal Clinic, Veterinary Academy, Lithuania University of Health Sciences, Tilžės Str. 18, 47181, Kaunas, Lithuania. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Biosensors + Dairy cattle + Innovations + Machine learning + + Declarations. Competing interests: The authors declare no competing interests. Ethics approval: All animal procedures were reviewed and approved by the Institutional Animal Care and Use Committee of the Lithuanian University of Health Sciences (Protocol No. G2-227, approved on 7 March 2025). +
+ + + + 2026 + 1 + 2 + + + 2026 + 5 + 22 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 18 + + + aheadofprint + + 42215579 + 10.1038/s41598-026-55162-z + 10.1038/s41598-026-55162-z + + +
+ + + 42215538 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Transition of blue space in the urban area of khulna city corporation using geospatial and machine learning techniques. + 10.1038/s41598-026-52656-8 + + Urban blue-space loss and grey-space expansion have significantly altered the surface water systems of the Khulna City Corporation, increasing the environmental degradation and hydrological vulnerability of this climate-sensitive coastal city. This study used multi-temporal Landsat imagery, including Landsat 5 TM data from 1994 to 2004 and Landsat 8 OLI data from 2014 to 2024. The analysis integrated the Normalized Difference Vegetation Index, Normalized Difference Built-up Index, and Normalized Difference Water Index with Random Forest classification and post-classification change detection to quantify long-term land-use/land-cover transitions and urban blue-space transformation. Post-classification comparison generated directional transition matrices documenting conversion pathways among land-cover categories. The results show that surface water bodies have decreased from 4.20 km2 in 1994 to 2.27 km2 in 2024, while the built-up area has increased from 25.9 to 53.3% of the area studied. The accuracy assessment resulted in an overall accuracy of 84.5 to 89.3%, with Kappa coefficients ranging from 0.78 to 0.86. Water body classifications have remained reliable throughout all periods, which has supported the use of classifiable maps for long-term migration analysis. Temporal analysis revealed two main phases: an early phase characterized by mixed land reclamation and later phases dominated by conversion of water bodies into built-up areas. Spatial analysis identified critical hotspots of canal infill, wetland loss, and riverbank modification, mainly in central and southern municipal zones. These findings highlight the need to treat urban blue spaces as critical infrastructure and to promote integrated management, natural drainage solutions and regular remote sensing monitoring. The study frames the loss of blue space as a process of urban transformation and advocates better monitoring of urban water systems in coastal secondary coastal cities. + © 2026. The Author(s). + + + + Hossan + Md Refath + MR + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. + + + + Hossain + Mohammad Ismail + MI + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. ihossain@idm.kuet.ac.bd. + + + + Islam + Md Wahidul + MW + + Department of Chemistry, Gopalganj Science and Technology University, Gopalganj, 8100, Bangladesh. + + + + Shaon + Zahid Hassan + ZH + + Institute of Disaster Management, Khulna University of Engineering & Technology, Khulna, 9203, Bangladesh. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + GIS analysis + Land cover change + Remote sensing + Surface water decline + Urban expansion + + Declarations. Competing interests: The authors declare no competing interests. Consent to participate: This study did not involve any human participants, animal subjects, or personally identifiable. data, and therefore did not require ethical approval. +
+ + + + 2026 + 4 + 6 + + + 2026 + 5 + 6 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 23 + 17 + + + aheadofprint + + 42215538 + 10.1038/s41598-026-52656-8 + 10.1038/s41598-026-52656-8 + + +
+ + + 42215534 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + An explainable spatio-temporal deep learning framework for crop yield prediction and recommendation. + 10.1038/s41598-026-54439-7 + + Agriculture plays a critical role in ensuring global food security, yet crop yield variability driven by climate change, soil heterogeneity, and environmental fluctuations poses persistent challenges. Accurate yield forecasting and intelligent crop recommendation are essential for sustainable and efficient farm management. This study proposes a novel AI-driven framework for precise crop yield prediction and data-driven crop selection. The framework integrates systematic data preprocessing, hybrid feature selection, deep learning, and attention-based modeling to capture complex nonlinear relationships within agricultural datasets. Raw data, including soil properties, topography, climatic variables, and historical yield records, are processed using median-based imputation, normalization, and Z-score outlier detection to enhance reliability. A multi-stage hybrid feature selection approach combining Minimum Redundancy Maximum Weight, Sequential Forward Subset Selection, and Recursive Fisher Score identifies the most informative features while reducing redundancy. Yield prediction is performed using an attention-enhanced hybrid kernel Extreme Learning Machine (ELM). Crop recommendation is achieved through a Spatio-Temporal Explainable Group-Enhanced Transformer Network (STX-GTNET) optimized with the PantheraCobra metaheuristic. Model interpretability is ensured using Grad-CAM and Integrated Gradients. Experimental results demonstrate strong performance, achieving an RMSE of 281.6 and R² of 0.94 for yield prediction, and 98.4% accuracy with a 0.991 ROC-AUC for crop recommendation. + © 2026. The Author(s). + + + + Piyar S + Nifasath + N + + Department of Computer Science and Engineering, Anna University, Chennai, 600 025, India. nifasathpiyar@gmail.com. + + + + S + Dr Baulkani + DB + + Department of Electronics and Communication Engineering, Government College of Engineering, Bodinayakkanur, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Crop recommendation system + Crop yield prediction + Explainable artificial intelligence and precision agriculture + Spatio-temporal deep learning + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 2 + 24 + + + 2026 + 5 + 19 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 17 + + + aheadofprint + + 42215534 + 10.1038/s41598-026-54439-7 + 10.1038/s41598-026-54439-7 + + +
+ + + 42215508 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + The role of biopsychosocial factors in classifying pain intensity across various chronic pain conditions. + 10.1038/s41598-026-46612-9 + + Chronic pain is a multifaceted condition shaped by biological, psychological, and social factors, which challenges its diagnosis and treatment. While prior research largely focused on sensory profiles to distinguish pain mechanisms, this study adopted a biopsychosocial perspective with the key addition of experimental pain paradigms to identify factors explaining variance in chronic pain severity across diverse etiologies. The dataset comprised 101 individuals with chronic pain and 63 pain-free controls. Participants were classified into three groups (no pain, mild-to-moderate pain, and severe pain) using three models: a sensory-profile-based model including quantitative sensory testing (QST model), a biopsychosocial model incorporating QST alongside psychological and social variables (biopsychosocial model), and a model using the same biopsychosocial data but excluding QST measures (noQST model). The QST model achieved an accuracy of 0.51 and an F1-score of 0.48. In contrast, the biopsychosocial model performed best, with both accuracy and F1-score of 0.71, while the noQST model reached 0.60 for both metrics. Key predictors in the best-performing model included quality of life, loss of sensation, depressive mood, pain catastrophizing, anxiety, fatigue, and general health. Overall, biopsychosocial factors enhanced chronic pain severity classification beyond sensory profiles alone across heterogeneous pain etiologies. + © 2026. The Author(s). + + + + De Schoenmacker + Iara + I + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. deschoeia@gmail.com. + + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. deschoeia@gmail.com. + + + Biomedical Data Science Lab, Swiss Federal Institute of Technology (ETH), Lengghalde 2, 8008, Zurich, Switzerland. deschoeia@gmail.com. + + + + Monzon + Maria + M + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. + + + + Sirucek + Laura + L + + Neuroscience Center Zurich, University of Zurich, Zurich, Switzerland. + + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + Center for Neuroplasticity and Pain (CNAP), Department of Health Science and Technology, Aalborg University, Aalborg, Denmark. + + + + Scheuren + Paulina S + PS + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + International Collaboration on Repair Discoveries, University of British Columbia, Vancouver, BC, Canada. + + + Department of Anesthesiology, Pharmacology and Therapeutics, Faculty of Medicine, University of British Columbia, Vancouver, BC, Canada. + + + + Lütolf + Robin + R + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Gorrell + Lindsay M + LM + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Brunner + Florian + F + + Physical Medicine and Rheumatology, Balgrist University Hospital, Zurich, Switzerland. + + + + Curt + Armin + A + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Rosner + Jan + J + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + Danish Pain Research Center, Department of Clinical Medicine, Aarhus University, Aarhus, Denmark. + + + + Schweinhardt + Petra + P + + Department of Chiropractic Medicine, Integrative Spinal Research Group, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Hubli + Michèle + M + + Spinal Cord Injury Center, Balgrist University Hospital, University of Zurich, Zurich, Switzerland. + + + + Jutzeler + Catherine R + CR + + Biomedical Data Science Lab, Department of Health Sciences and Technology (D-HEST), ETH Zurich, 8092, Zurich, Switzerland. + + + Swiss Institute of Bioinformatics (SIB), Lausanne, Switzerland. + + + + eng + + + PF198F + International Foundation for Research in Paraplegia + + + + P500PB_214416 + Schweizerischer Nationalfonds zur Förderung der Wissenschaftlichen Forschung + + + + PZ00P3_186101 + Schweizerischer Nationalfonds zur Förderung der Wissenschaftlichen Forschung + + + + RT-2023-3173 + Michael Smith Health Research BC + + + + R359-2020-2620 + Lundbeck Foundation + + + + 380 + Strategic Focus Area "Personalized Health and Related Technologies (PHRT)" of the Swiss Federal Institutes of Technology + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Biopsychosocial model + Chronic pain + Machine learning + Pain classification + Quantitative sensory testing + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 5 + 21 + + + 2026 + 3 + 26 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 16 + + + aheadofprint + + 42215508 + 10.1038/s41598-026-46612-9 + 10.1038/s41598-026-46612-9 + + +
+ + + 42215501 + + 2026 + 05 + 29 + +
+ + 2045-2322 + + + 2026 + May + 29 + + + Scientific reports + Sci Rep + + Predictive analysis on mechanical properties, material flow and thermal analysis of friction stir welded dissimilar AA2014/AA7075 Al-alloy joints using machine learning. + 10.1038/s41598-026-48688-9 + + Aluminum alloys are the most ideal materials for aerospace applications, and joining of a light weighted materials with an eco-friendly method is encouraging ongoing research into the green welding technique. In the current work solid-state joints of 10 mm thick AA2014/AA7075 Al-alloys dissimilar material joints with hybrid pin profiles were fabricated by using Friction Stir Welding (FSW) technique. The microstructure and mechanical properties of weld joints, temperature analysis of the welds processed under various conditions is investigated. An Artificial Neural Network (ANN) model is used to predict the mechanical properties of the welded joints fabricated at different conditions. The weld joints processed with hybrid pentagonal pin profile exhibits the highest UTS and YS measuring as 294 and 267 MPa respectively. The ANN showed strong prediction using a dataset of 27 experimentally obtained results providing a reliable data-driven method for forecasting UTS and optimizing FSW parameters. The weld joints processed at 900 rpm 31. 5 mm/min 2° tilt angle 0 mm tool offset and pentagonal pin profile revealed 62% of joint efficiency, which is suitable for the suggested AWS requirements for aerospace applications must be met by 60%. ANN model provided a good agreement with experimental results (R² = 0.93). However, due to the relatively small dataset (L27 design). + © 2026. The Author(s). + + + + Rao + R Venkateswara + RV + + Department of Mechanical Engineering, Vignana Bharathi Institute of Technology, Telangana, 501301, India. + + + + Kumar + M Senthil + MS + + School of Mechanical Engineering, Vellore Institute of Technology, Chennai, 600127, India. msv305@yahoo.co.in. + + + + Vanmathi + M + M + + Department of Electronics and Communication Engineering, B S Abdurrahman Crescent Institute of Science and Technology, Chennai, 60048, India. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Sci Rep + 101563288 + 2045-2322 + + IM + + Dissimilar Materials + FSW Process + Mechanical Properties + Process Parameters + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 10 + 10 + + + 2026 + 4 + 9 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 16 + + + aheadofprint + + 42215501 + 10.1038/s41598-026-48688-9 + 10.1038/s41598-026-48688-9 + + +
+ + + 42215494 + + 2026 + 05 + 29 + +
+ + 2396-8370 + + + 2026 + May + 29 + + + NPJ science of food + NPJ Sci Food + + Novel insights into the binding mechanisms of selected aldehydes during heat-induced protein unfolding. + 10.1038/s41538-026-00874-9 + + This investigation aimed to clarify the binding mechanisms between six aldehydes and myofibrillar proteins (MPs), with a structural explanation in response to stage-heating treatments. The conformational intermediates of MPs, which form during heat processing, were systematically characterized to elucidate their role in aldehyde binding and flavor retention. Machine learning results suggested that high-temperature boiling promoted extensive protein denaturation and aggregation, while subsequent low-temperature stewing induced partial rearrangement. Thermodynamic parameters indicated that hexanal-MPs formation was primarily driven by hydrogen bonding, whereas other longer-chain and unsaturated aldehydes penetrated hydrophobic pockets. Proteomics revealed that saturated aldehydes predominantly formed Schiff bases with the lysine ε-amino group. Unsaturated aldehydes, especially (E, E)-2,4-decadienal, undergo both Schiff base reactions and Michael addition with cysteine, histidine, and tryptophan residues. The retention/release behavior of aldehydes during processing is determined by covalent and non-covalent interactions. These results provide a scientific basis for precisely controlling flavor quality in meat products. + © 2026. The Author(s). + + + + Wang + Jingfan + J + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + Laboratory of Chemistry of Natural Molecules, Gembloux Agro-Bio Tech, University of Liege, Gembloux, Belgium. + + + Laboratory of Analytical Chemistry, Gembloux Agro-Bio Tech, University of Liège, Gembloux, Belgium. + + + + Wang + Tianze + T + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + + Yang + Ping + P + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + + Han + Dong + D + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. orange_1101@126.com. + + + + Zhang + Chunhui + C + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. dr_zch@163.com. + + + + Jia + Wei + W + + Key Laboratory of Agro-Products Processing, Ministry of Agriculture and Rural Affairs, Institute of Food Science and Technology, Chinese Academy of Agricultural Sciences, Beijing, China. + + + Jiangsu Chaoyue Agricultural Development Co. Ltd, Taizhou, China. + + + + Purcaro + Giorgia + G + + Laboratory of Analytical Chemistry, Gembloux Agro-Bio Tech, University of Liège, Gembloux, Belgium. + + + + Fauconnier + Marie-Laure + ML + + Laboratory of Chemistry of Natural Molecules, Gembloux Agro-Bio Tech, University of Liege, Gembloux, Belgium. + + + + eng + + + No. 32472392 + the National Natural Science Foundation of China + + + + ASTIP-Y2025QC29 + the Agricultural Science and Technology Innovation Program + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Sci Food + 101739627 + 2396-8370 + + Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 12 + 25 + + + 2026 + 4 + 28 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 15 + + + aheadofprint + + 42215494 + 10.1038/s41538-026-00874-9 + 10.1038/s41538-026-00874-9 + + +
+ + + 42215477 + + 2026 + 05 + 29 + +
+ + 2731-6068 + + + 2026 + May + 29 + + + npj aging + NPJ Aging + + Latent biochemical phenotypes delineate divergent health trajectories in older adults. + 10.1038/s41514-026-00415-4 + + Ageing heterogeneity hampers prevention and care. We used routine biochemical panels and unsupervised learning to identify latent phenotypes in community-dwelling older adults. In 1491 participants from the Toledo Study for Healthy Ageing (TSHA) with ~10-11 years of follow-up, 39 blood biomarkers were dimension-reduced and clustered, yielding three phenotypes: Healthy, Metabolic (subclinical dysmetabolism), and Haematological (low erythroid/renal profile). Phenotypes differed in functional capacity, frailty, and independence at baseline (all p < 0.05 after age/sex adjustment) and predicted long-term mortality (Metabolic women HR = 1.49, p = 0.016). Sex-specific analyses revealed distinct disease-trajectory patterns (e.g., hypertension in Metabolic women HR = 1.30, p = 0.005; thrombosis in Haematological men HR = 7.20, p = 0.018; syncope in Haematological women HR = 1.88, p = 0.009). Findings are partially replicated in a cohort of physically active older adults (EXERNET), supporting the generalizability of the Metabolic phenotype. Standard laboratory data, integrated through machine learning, capture ageing-relevant biology and stratify future risk without specialised assays, enabling low-cost, scalable precision prevention. + © 2026. The Author(s). + + + + González-Martos + Raquel + R + + Centro de Tecnología Biomédica (CTB), Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Nageru S.L, Madrid, Spain. + + + + Rodríguez-Gómez + Irene + I + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + Geriatrics Department, Hospital Universitario de Toledo, Toledo, Spain. + + + + Galeano + Javier + J + + Grupo de Sistemas Complejos, Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + Grupo Interdisciplinar de Sistemas Complejos (GISC), Madrid, Spain. + + + + Ara + Ignacio + I + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + + Alegre + Luis M + LM + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + + Rodríguez-Mañas + Leocadio + L + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Geriatrics Department, Getafe University Hospital, Getafe, Spain. + + + + Garcia-Garcia + Francisco J + FJ + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. + + + Geriatrics Department, Hospital Universitario de Toledo, Toledo, Spain. + + + + Ramírez-Castillejo + Carmen + C + + Centro de Tecnología Biomédica (CTB), Escuela Técnica Superior de Ingeniería Agronómica, Alimentaria y de Biosistemas (ETSIAAB), Universidad Politécnica de Madrid, Madrid, Spain. + + + Departamento de Oncología, Instituto de Investigación Sanitaria San Carlos (IdISSC), Madrid, Spain. + + + + Guadalupe-Grau + Amelia + A + + GENUD Toledo Research Group, Faculty of Sport Sciences, University of Castilla-La Mancha, Avda. Carlos III S/N, Toledo, Spain. amelia.guadalupe@uclm.es. + + + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable (CIBERFES), Instituto de Salud Carlos III, Madrid, Spain. amelia.guadalupe@uclm.es. + + + Grupo Mixto de Fragilidad y Envejecimiento Exitoso UCLM-SESCAM, Universidad de Castilla-La Mancha-Servicio de Salud de Castilla-La Mancha, Instituto de Investigación Sanitaria de Castilla-La Mancha (IDISCAM), Toledo, Spain. amelia.guadalupe@uclm.es. + + + + eng + + + IND2022/BMD-23595 + Comunidad de Madrid + + + + CD23/00236 + Instituto de Salud Carlos III + + + + PI10/01532, PI031558 + Instituto de Salud Carlos III + + + + PI2010/020 + Junta de Comunidades de Castilla-La Mancha + + + + 03031-00 + Consejería de Sanidad de Castilla-La Mancha + + + + CB16/10/00456 + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable + + + + CB16/10/00477 + Centro de Investigación Biomédica en Red Fragilidad y Envejecimiento Saludable + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + NPJ Aging + 9918402285106676 + 2731-6068 + + Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 11 + 25 + + + 2026 + 5 + 18 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 15 + + + aheadofprint + + 42215477 + 10.1038/s41514-026-00415-4 + 10.1038/s41514-026-00415-4 + + +
+ + + 42215447 + + 2026 + 05 + 29 + +
+ + 2041-1723 + + + 2026 + May + 29 + + + Nature communications + Nat Commun + + Multifactorial sheltering in peristromal niches shapes in vivo responses of lung cancers to targeted therapies. + 10.1038/s41467-026-73454-w + + Targeted therapies induce strong clinical responses but fail to eliminate advanced cancers, as a subset of tumor cells survives within residual disease and eventually develops resistance. While numerous cell-intrinsic and microenvironmental mechanisms have been implicated in this survival, their relative contributions remain poorly defined. Using spatial histological inferences from ALK + NSCLC models, we show that peristromal niches protect tumor cells from elimination, enabling in vivo persistence. This spatially restricted sheltering provides an ecological rescue mechanism that sustains residual populations, enabling their eventual evolutionary escape. Mechanistically, this protective effect reflects an integrated action of multiple juxtacrine and paracrine signals. This complexity limits the utility of targeting individual mechanisms of protection, favoring a shift towards exploiting orthogonal collateral sensitivities of residual disease. We find that adaptive HER2 upregulation, associated with both cell-intrinsic and stroma-mediated persistence, can be exploited by the antibody-drug conjugate T-DXd to dramatically enhance therapeutic responses and suppress tumor relapse. + © 2026. The Author(s). + + + + Desai + Bina + B + 0000-0003-0454-7583 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Cancer Biology Ph.D. Program, University of South Florida, Tampa, FL, USA. + + + + Miti + Tatiana + T + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Prabhakaran + Sandhya + S + 0000-0002-9537-507X + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Miroshnychenko + Daria + D + 0000-0001-6425-5000 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Kumar + Pragya + P + 0000-0002-5691-7016 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Henry + Menkara + M + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Marusyk + Viktoriya + V + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Siqueira + Natalia Souza Nunes + NSN + 0000-0002-7877-2655 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Gatenbee + Chandler + C + 0000-0002-9730-5964 + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Ozakinci + Hilal + H + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Bui + Marilyn + M + 0000-0003-4963-2255 + + Department of Machine Learning, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Pathology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Boyle + Theresa A + TA + 0000-0001-5950-3970 + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Machine Learning, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Scott + Jacob + J + 0000-0003-2971-7673 + + Department of Translational Hematology and Oncology Research, Cleveland Clinic, Cleveland, OH, USA. + + + + Altrock + Philipp M + PM + 0000-0001-7731-3345 + + Department of Hematology and Oncology, University Hospital Schleswig-Holstein, Kiel University, Kiel, Germany. + + + + Pellini + Bruna + B + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + Department of Thoracic Oncology, Miami Cancer Institute, Baptist Health South Florida, Miami, FL, USA. + + + + Haura + Eric + E + + Department of Thoracic Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Anderson + Alexander R A + ARA + 0000-0002-2536-4383 + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Basanta + David + D + + Department of Integrated Mathematical Oncology, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. + + + + Marusyk + Andriy + A + 0000-0002-0087-9575 + + Department of Tumor Microenvironment and Metastasis, H Lee Moffitt Cancer Center and Research Institute, Tampa, FL, USA. andriy.marusyk@moffitt.org. + + + Department of Molecular Medicine, University of South Florida, Tampa, FL, USA. andriy.marusyk@moffitt.org. + + + + eng + + + NIH U54 CA274507 + U.S. Department of Health & Human Services | NIH | National Cancer Institute (NCI) + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Nat Commun + 101528555 + 2041-1723 + + IM + Competing interests: The authors declare no competing interests. +
+ + + + 2025 + 4 + 2 + + + 2026 + 5 + 8 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 23 + 14 + + + aheadofprint + + 42215447 + 10.1038/s41467-026-73454-w + 10.1038/s41467-026-73454-w + + +
+ + + 42215401 + + 2026 + 05 + 29 + +
+ + 1879-2022 + + + 2026 + May + 13 + + + ISA transactions + ISA Trans + + Interpretable physical-informed machine learning for dynamic characteristics prediction of air spring with limited measurement information. + S0019-0578(26)00247-8 + 10.1016/j.isatra.2026.05.010 + + Pipe-type air spring with auxiliary airbag (ASAA) are important vibration isolation component due to its tunable volume and adjustable dynamic characteristics. However, its dynamic modeling is challenging because airbag expansion work, rubber bladder viscoelasticity, and turbulence-dominated throttle dynamics are strongly coupled under large-amplitude excitations. Traditional data-driven models often require large datasets and lack interpretability. To address this issue, this study proposes an interpretable physics-informed machine learning (PIML) framework for ASAA dynamic prediction. A reduced-order physical model is first developed to provide baseline predictions of stiffness and lag angle, and the discrepancies between physical predictions and experimental measurements are then used to construct residual datasets. An interpretable Kolmogorov-Arnold Network (KAN) is employed to learn these residuals through adaptive B-spline activation functions and derive explicit symbolic correction terms. Experimental validation shows that the proposed hybrid model improves prediction accuracy while retaining physical interpretability, outperforming pure data-driven, advanced physics-data and physical models. + Copyright © 2026 ISA. Published by Elsevier Ltd. All rights reserved. + + + + Qin + Wu + W + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: qw@ecjtu.edu.cn. + + + + Liao + Xundong + X + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: 2023038080200027@ecjtu.edu.cn. + + + + Qi + Junyu + J + + State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou 510006, China; Reutlingen University, Alteburgstraße 150, Reutlingen 72762, Germany. Electronic address: junyu.qi@reutlingen-university.de. + + + + He + Yi + Y + + School of Mechanical Engineering, South China University of Technology, China. Electronic address: 202111080705@mail.scut.edu.cn. + + + + Liu + Feifei + F + + School of Mechatronics & Vehicle Engineering, East China Jiaotong University, Nanchang 330013, China. Electronic address: 2971@ecjtu.edu.cn. + + + + Chen + Zhuyun + Z + + State Key Laboratory of Precision Electronic Manufacturing Technology and Equipment, Guangdong University of Technology, Guangzhou 510006, China. Electronic address: mezychen@gdut.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + United States + ISA Trans + 0374750 + 0019-0578 + + IM + + Air spring + Data-driven + Dynamic characteristic predictions + Physics-informed Machine Learning + + Declaration of Competing Interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 9 + 12 + + + 2026 + 5 + 10 + + + 2026 + 5 + 10 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 21 + 58 + + + aheadofprint + + 42215401 + 10.1016/j.isatra.2026.05.010 + S0019-0578(26)00247-8 + + +
+ + + 42215359 + + 2026 + 05 + 29 + +
+ + 1879-0828 + + + 2026 + May + 29 + + + European journal of internal medicine + Eur J Intern Med + + Artificial intelligence in cardiovascular care for internal medicine: from promising algorithms to useful clinical services. + + 106944 + 106944 + + 10.1016/j.ejim.2026.106944 + S0953-6205(26)00249-9 + + Artificial intelligence is expanding rapidly in cardiovascular medicine, but its value in internal medicine depends less on raw model performance than on whether it improves triage, risk targeting, and coordination of care within real-world workflows. Rather than cataloguing applications, this review focuses on three use cases with near-term relevance in internal medicine: AI-augmented electrocardiography, risk prediction for targeted prevention, and AI-enabled clinical decision support, including selected applications of large language models. Across these domains, evaluation should extend beyond discrimination to calibration, positive predictive value at action thresholds, net benefit, alert burden, override rates, and downstream testing. Cardiovascular AI should not be judged as an autonomous decision-maker, but as a supervised component of care delivery. Its usefulness depends on predefined confirmation pathways, integration into existing information systems, actionable outputs, user training, and post-deployment monitoring for drift, safety, and equity. We propose a practical implementation lens - Train, Explain, Integrate, Accompany (TEIA) - to structure deployment in routine care, and summarize governance issues relevant to European practice, including intended use, interoperability, traceability, cybersecurity, and lifecycle oversight. The central question is not whether an AI tool can classify or predict, but whether its use in routine care supports better decisions with acceptable workload, safer pathways, and measurable clinical value. + Copyright © 2026 European Federation of Internal Medicine. Published by Elsevier B.V. All rights reserved. + + + + Desroche + Louis-Marie + LM + + Department of Cardiology, North Site, CHU de La Réunion, Allée des Topazes, Saint-Denis, La Réunion 97400, France; CIC-EC INSERM 1410, CHU de La Réunion, Saint-Denis, France. Electronic address: louis-marie.desroche@chu-reunion.fr. + + + + Trimaille + Antonin + A + + Department of Cardiology, Strasbourg University Hospital, Strasbourg, France; UR3074, Translational Cardiovascular Medicine, University of Strasbourg, Strasbourg, France; GERCA (Groupe pour l'Enseignement et la Recherche Cardiologique en Alsace), Strasbourg, France. + + + + Lequeux + Benoît + B + + Department of Cardiology, Poitiers University Hospital, Poitiers, France. + + + + Homehr + Nicolas + N + + Primary Care Practice, Lherm, France; CPTS du Sud Toulousain, Haute-Garonne, France. + + + + Girerd + Nicolas + N + + CHRU de Nancy, Centre d'Investigations Cliniques Plurithématique 1433, INSERM, Université de Lorraine, INSERM U1116 - DCAC, and F-CRIN INI-CRCT(Cardiovascular and Renal Clinical Trialists), Nancy, France. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 29 + +
+ + Netherlands + Eur J Intern Med + 9003220 + 0953-6205 + + IM + + Artificial intelligence + Cardiovascular disease + Clinical decision support + Electrocardiography + Governance + Implementation + Internal medicine + Machine learning + Risk prediction + + Declaration of competing interest AT has received a fellowship grant from Edwards Lifescience. NG declares honoraria from Alnylam, AstraZeneca, Bayer, Boehringer, Cardiostory, Lilly, Echosens, GSK, NP medical, Novartis, Novo Nordisk, Roche diagnostics. The other authors declare no conflict of interest. +
+ + + + 2026 + 4 + 29 + + + 2026 + 5 + 12 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 21 + 57 + + + aheadofprint + + 42215359 + 10.1016/j.ejim.2026.106944 + S0953-6205(26)00249-9 + + +
+ + + 42215334 + + 2026 + 05 + 29 + +
+ + 2588-9311 + + + 2026 + May + 29 + + + European urology oncology + Eur Urol Oncol + + AI-MIRACLE: Artificial Intelligence and MultIpaRAmetric MRI Predict CLinical OutcomEs to Neoadjuvant Immunotherapy in Patients with Muscle-invasive Bladder Cancer Undergoing Radical Cystectomy. + S2588-9311(26)00133-1 + 10.1016/j.euo.2026.05.006 + + Neoadjuvant immune-checkpoint inhibitors (ICIs) in muscle-invasive bladder cancer (MIBC) were tested in patient's ineligible for cisplatin-based chemotherapy. The PURE-01 trial (NCT02736266) evaluated three courses of pembrolizumab before radical cystectomy (RC). We developed AI-MIRACLE, an international study assessing artificial intelligence (AI) and multiparametric magnetic resonance imaging (mpMRI) for predicting treatment response. + This multi-institutional study included data acquisition in Italy, and centralized analysis in the United States. Among 112 PURE-01 patients, pre- and post-ICI MRIs were analyzed. T2-weighted signal intensities were standardized for radiomics (Image Biomarker Standardization Initiative-compatible Python-based Computational Environment for Radiological Research (pyCERR)) and deep feature extraction (AI-BLADE toolbox using VGG19). Diffusion-weighted (DW) and dynamic contrast-enhanced (DCE) MRI data underwent model-based analysis. Supervised machine learning algorithms (elastic net, random forest) were trained and cross-validated to predict pathological major response (pMR:ypT<2N0 residual disease) and pathological complete response (pCR: ypT0) pathological response. + The predictive models using post-ICI mpMRI with either a combination of radiomics and DCE-derived features or radiomics alone achieved the same high accuracy, with an area under the receiver operating characteristic curve (AUC) of 0.96 for pMR. A shape-based radiomic model achieved an AUC of 0.86 for predicting pCR. These models outperformed benchmark models based on clinical predictors. + Shape-based radiomics, DCE-derived features, and deep features may serve as noninvasive imaging biomarkers for predicting response to neoadjuvant pembrolizumab in MIBC. This imaging-based approach provides a non-invasive assessment of treatment response following neoadjuvant immunotherapy, which may help inform bladder-preserving management decisions prior to definitive surgery. + Copyright © 2026 The Author(s). Published by Elsevier B.V. All rights reserved. + + + + Necchi + Andrea + A + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy; Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy. Electronic address: necchi.andrea@hsr.it. + + + + Brembilla + Giorgio + G + + Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy; Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Whiting + Karissa + K + + Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Arita + Yuki + Y + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Akin + Oguz + O + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Apte + Aditya + A + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Awais + Muhammad + M + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Lema-Dopico + Alfonso + A + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Paudyal + Ramesh + R + + Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Cosenza + Michele + M + + Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Maiorano + Brigida Anna + BA + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Tateo + Valentina + V + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Cigliola + Antonio + A + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Mercinelli + Chiara + C + + Department of Medical Oncology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + De Cobelli + Francesco + F + + Department of Medical Oncology, Vita-Salute San Raffaele University, Milan, Italy; Department of Radiology, IRCCS San Raffaele Hospital, Milan, Italy. + + + + Capanu + Marinela + M + + Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + Shukla-Dave + Amita + A + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA; Department of Medical Physics, Memorial Sloan Kettering Cancer Center, New York, USA. Electronic address: davea@mskcc.org. + + + + Schwartz + Lawrence H + LH + + Department of Radiology, Memorial Sloan Kettering Cancer Center, New York, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + Eur Urol Oncol + 101724904 + 2588-9311 + + IM + + Bladder cancer + Deep feature + MRI + Radiomics + +
+ + + + 2025 + 12 + 18 + + + 2026 + 4 + 28 + + + 2026 + 5 + 6 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 21 + 56 + + + aheadofprint + + 42215334 + 10.1016/j.euo.2026.05.006 + S2588-9311(26)00133-1 + + +
+ + + 42215211 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1095-9998 + + 139 + + 2026 + Oct + + + Food microbiology + Food Microbiol + + Single-cell Raman spectroscopy-machine learning combination: Rapid and accurate strain-level identification of Bifidobacterium animalis subsp. lactis J12. + + 105131 + 105131 + + 10.1016/j.fm.2026.105131 + S0740-0020(26)00095-X + + Rapid and accurate strain-level identification of Bifidobacterium animalis is critical for probiotic quality control and intellectual property protection in the food industry. In this study, a novel identification method for Bifidobacterium animalis subsp. lactis J12 was established by integrating single-cell Raman spectroscopy (SCRS) with machine learning (ML) algorithms. A total of 500-1000 valid single-cell Raman spectra were collected for each of five Bifidobacterium animalis subsp. lactis strains and seven heterologous lactic acid bacterial strains. The SCRS data were processed and optimized using t-distributed stochastic neighbor embedding (t-SNE), linear discriminant analysis (LDA), and support vector machine (SVM) algorithms. Results showed that stationary-phase cells exhibited the most distinctive chemical fingerprints, enabling the SVM model to identify J12 among the five target strains with an accuracy of over 99%. The established method displayed high robustness: classification accuracy and recall for lyophilized bacterial powders both exceeded 99.8%; the predicted proportions of strains in artificial mixed samples were highly consistent with theoretical values, with a mean absolute error (MAE) of <0.5% and a correlation coefficient (R2) of >0.998; and the identification accuracy for J12 isolates from commercial yogurt remained above 99%. Comparative genomics analysis confirmed that the unique Raman phenotypic characteristics of J12 were correlated with its specific genomic features, verifying the method's reliability at the genetic level. This label-free and pure culture-free SCRS-ML approach provides a rapid and high-precision tool for strain-specific identification in the probiotic industry, and fills the technical gap in rapid detection of highly homologous B. animalis strains. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Jiang + Yixuan + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: 15245133725@163.com. + + + + Deng + Yu + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: 18184400300@163.com. + + + + Feng + Bing + B + + Qingdao Singlecell Biotechnology Co., Ltd., Qingdao, 266000, China. Electronic address: fengbing@singlecellbiotech.com. + + + + Zhang + Hongxing + H + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: hxzhang511@163.com. + + + + Xie + Yuanhong + Y + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: xieyuanh@163.com. + + + + Gao + Jingyu + J + + Science and Technology Research Center of China Customs, Beijing, 100026, China. Electronic address: gjyhgxy@sina.com. + + + + Song + Xiaodong + X + + Inner Mongolia Mengniu Dairy (Group) Co., Ltd., Key Laboratory of Dairy Quality Intelligence Monitoring Technology, State Administration for Market Regulation, Hohhot, 011517, China. Electronic address: songxiaodong@mengniu.cn. + + + + Jin + Junhua + J + + College of Food Science and Engineering, Beijing University of Agriculture, Beijing, 102206, China. Electronic address: jinjunhua002008@163.com. + + + + eng + + Journal Article + Evaluation Study + + + 2026 + 04 + 22 + +
+ + England + Food Microbiol + 8601127 + 0740-0020 + + IM + + + Bifidobacterium animalis + classification + isolation & purification + chemistry + genetics + + + Spectrum Analysis, Raman + methods + + + Machine Learning + + + Support Vector Machine + + + Single-Cell Analysis + methods + + + Probiotics + + + Yogurt + microbiology + + + Discriminant Analysis + + + + Bifidobacterium animalis + Machine learning + Probiotics + Quality control + SCRS + Strain identification + + Declaration of competing interest The authors declare no conflicts of interest. +
+ + + + 2026 + 2 + 18 + + + 2026 + 4 + 20 + + + 2026 + 4 + 21 + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215211 + 10.1016/j.fm.2026.105131 + S0740-0020(26)00095-X + + +
+ + + 42215204 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1095-9998 + + 139 + + 2026 + Oct + + + Food microbiology + Food Microbiol + + Climatic factors and initial microbiota-driven prediction of the accumulated microbiota at the end of stacking fermentation for soy sauce aroma type baijiu. + + 105124 + 105124 + + 10.1016/j.fm.2026.105124 + S0740-0020(26)00088-2 + + Most traditional fermented foods are produced through spontaneous fermentation, which contain complex microbiota. However, it is still unclear what the key driving factors of the microbiota are and how to predict the microbiota at the end of fermentation. This study employed a typical spontaneous fermentation process, stacking fermentation for soy sauce aroma type baijiu, as a case to predict the microbiota at the end of fermentation based on key driving factors. The microbiota at the start of fermentation was mainly provided from the starter (daqu), air, and the ground of the fermentation room, contributing 45.22%, 10.05%, and 7.48% of the bacteria, and 41.83%, 10.77% and 1.21% of the fungi, respectively. Average air temperature and average photosynthetic photon flux density were identified as key climatic factors driving microbial succession. Finally, a Transformer-based machine learning model was constructed to predict the microbiota at the end of fermentation based on key climatic factors and the initial microbiota. 29 out of 34 dominant genera (average relative abundance ≥1%) could be accurately predicted (NRMSE <30%). Aitchison distance between true and predicted value using Transformer model was significantly lower than that using Random Forest model (P < 0.001). This work revealed the roles of climatic factors and the microbiota at the start of fermentation in shaping the microbiota at the end of fermentation. The constructed predictive model could facilitate the regulation of the microbiota in food fermentation. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + He + Binghao + B + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Zheng + Yifu + Y + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Ban + Shibo + S + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Madadi + Meysam + M + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. + + + + Khaneghah + Amin Mousavi + AM + + Faculty of Biotechnologies (BioTech), ITMO University, 9 Lomonosova Street, Saint Petersburg, 191002, Russia. Electronic address: mousavi.amin@gmail.com. + + + + Aadil + Rana Muhammad + RM + + National Institute of Food Science and Technology, University of Agriculture, Faisalabad, 38000, Pakistan. Electronic address: muhammad.aadil@uaf.edu.pk. + + + + Wu + Qun + Q + + Key Laboratory of Industrial Biotechnology of the Ministry of Education, State Key Laboratory of Food Science and Resources, School of Biotechnology, Jiangnan University, 214122, Wuxi, China. Electronic address: wuq@jiangnan.edu.cn. + + + + eng + + Journal Article + + + 2026 + 04 + 16 + +
+ + England + Food Microbiol + 8601127 + 0740-0020 + + IM + + + Fermentation + + + Soy Foods + microbiology + analysis + + + Microbiota + + + Bacteria + classification + genetics + isolation & purification + metabolism + + + Climate + + + Odorants + analysis + + + Fungi + classification + genetics + metabolism + isolation & purification + + + Fermented Foods + microbiology + analysis + + + Food Microbiology + + + + Climate + Fermentation + Machine learning + Microbiota + Soy sauce aroma type baijiu + Succession distance + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 3 + 2 + + + 2026 + 4 + 12 + + + 2026 + 4 + 16 + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215204 + 10.1016/j.fm.2026.105124 + S0740-0020(26)00088-2 + + +
+ + + 42215160 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1876-4452 + + 66 + 3 + + 2026 + May + + + Science & justice : journal of the Forensic Science Society + Sci Justice + + On-site strip-type drug test kit enhanced by AI-based image analysis. + + 101408 + 101408 + + 10.1016/j.scijus.2026.101408 + S1355-0306(26)00014-6 + + The demand for technology that can rapidly and precisely detect drugs in the field is increasing because of the growing number of criminal incidents involving the tampering of beverages with drugs. This paper presents the development and validation of a strip-type drug test kit that is user-friendly and portable, reduces the consumption of reagents that are hazardous to humans, and produces less waste. A drawback of strip-type drug test kits is that they depend on visual interpretation of the results, which can vary depending on user skill, lighting, and slight color changes. To address this limitation, this study implemented an analytical method that minimizes uncertainty and facilitates quantitative evaluation by utilizing images of color reaction outcomes from the newly developed strip-type drug test kit. Specifically, we developed an automatic discrimination algorithm using artificial intelligence (AI) image analysis techniques. Using a collection of 7,295 kit images, we evaluated the efficacy of several deep-learning models, including Convolutional Neural Network (CNN), Vision Transformer (ViT), and CNN-GRU (a hybrid of CNN and Gated Recurrent Unit). The findings indicated that the CNN-GRU model showed superior performance across all parameters, including accuracy, precision, recall, F1-score, and Cohen's kappa, achieving a perfect score of 1.0000. The model achieved perfect accuracy, surpassing the average performance of 32 police officers in a comparative experiment. This study demonstrated that AI-based precision reading algorithms can significantly improve the automation and reliability of strip-type drug test kits, highlighting their potential applicability and effectiveness in investigative and forensic settings. + Copyright © 2026. Published by Elsevier B.V. + + + + An + Sora + S + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. + + + + Lee + Joong + J + + Institute of AI and Big Data in Medicine, Yonsei University Wonju College of Medicine, Wonju 26426, the Republic of Korea. + + + + Lee + Sangki + S + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. + + + + Chung + Heesun + H + + Department of Forensic Science, Sungkyunkwan University, Suwon 16419, the Republic of Korea. Electronic address: hschung1024@gmail.com. + + + + eng + + Journal Article + + + 2026 + 02 + 18 + +
+ + England + Sci Justice + 9508563 + 1355-0306 + + + + 0 + Reagent Strips + + + IM + + + Humans + + + Image Processing, Computer-Assisted + + + Artificial Intelligence + + + Substance Abuse Detection + instrumentation + methods + + + Algorithms + + + Convolutional Neural Networks + + + Intelligent Systems + + + Deep Learning + + + Reagent Strips + + + + AI-based precision + Artificial Intelligence (AI) + Deep-learning models + Image analysis + Strip-type drug test kit + + Declaration of competing interest the authors declare the following financial interests/personal relationships which may be considered as potential competing interests: Heesun Chung reports financial support was provided by Commercializations Promotion Agency for R&D Outcomes. If there are other authors, they declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 9 + 22 + + + 2025 + 12 + 30 + + + 2026 + 2 + 11 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215160 + 10.1016/j.scijus.2026.101408 + S1355-0306(26)00014-6 + + +
+ + + 42215144 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2162-9471 + + 133 + + 2026 + + + Advances in clinical chemistry + Adv Clin Chem + + Drug induced renal injury (DIRI) biomarkers. + + 1 + 44 + 1-44 + + 10.1016/bs.acc.2026.01.006 + S0065-2423(26)00020-X + + Drug-induced renal injury (DIRI) remains a substantial issue in clinical practice, contributing to high morbidity, mortality, socioeconomic and healthcare cost. Traditional markers, such as serum creatinine or blood urea nitrogen, have low specificity and sensitivity for early identification, underscoring the need for new reliable biomarkers. This chapter investigates biomarker improvements for DIRI, focusing on clinical uses, limitations, and future possibilities. The chapter examines biomarkers such as neutrophil gelatinase-associated lipocalin, kidney injury molecule-1, cystatin C, β2-microglobulin and clusterin for diagnosing nephrotoxicity. In addition, we highlight the role of proteomics and metabolomics in facilitating the identification and development of novel biomarker candidates via high-throughput ultra-sensitive technology in investigating DIRI mechanisms. The chapter discusses validation frameworks, regulatory criteria for biomarker adoption in clinical settings, and how they are integrated into treatment monitoring and personalized medicine. Case examples demonstrate the real-world applicability in early diagnosis, risk classification, and therapy optimization. Standardization, cost, and translational gaps are discussed, as well as the potential for artificial intelligence and machine learning to improve biomarker processing and interpretation. Finally, this chapter emphasizes the transformative potential of DIRI biomarkers in providing a pathway to more accurate and timely identification of renal injury, improved patient outcomes, and reduced healthcare costs. Future research and global collaboration are required to fully realize the potential of these advances in clinical and regulatory settings. + Copyright © 2026. Published by Elsevier Inc. + + + + Sher + Emina Karahmet + EK + + School of Science and Technology, Nottingham Trent University, Nottingham, United Kingdom; International Society of Engineering Science and Technology, Nottingham, United Kingdom. Electronic address: emina.karahmet@gmail.com. + + + + Boras + Marijana Marković + MM + + Department of Laboratory Diagnostics, University Clinical Hospital Mostar, Mostar, Bosnia and Herzegovina; International Society of Engineering Science and Technology, Nottingham, United Kingdom. + + + + Fajkić + Almir + A + + Department of Pathophysiology, Faculty of Medicine, University of Sarajevo, Sarajevo, Bosnia and Herzegovina. + + + + Begović + Faris + F + + International Society of Engineering Science and Technology, Nottingham, United Kingdom. + + + + eng + + Journal Article + Review + + + 2026 + 02 + 23 + +
+ + United States + Adv Clin Chem + 2985173R + 0065-2423 + + + + 0 + Biomarkers + + + 0 + Hepatitis A Virus Cellular Receptor 1 + + + 0 + Cystatin C + + + IM + + + Humans + + + Biomarkers + analysis + blood + + + Acute Kidney Injury + diagnosis + chemically induced + + + Proteomics + + + Metabolomics + + + Hepatitis A Virus Cellular Receptor 1 + + + Cystatin C + + + + Clinical chemistry + Cystatin c + Drug-induced renal injury biomarkers + Early diagnosis + Kidney injury molecule-1 + Metabolomics + Nephrotoxicity + Neutrophil gelatinase-associated lipocalin + Personalized medicine + Proteomics + +
+ + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 55 + + + ppublish + + 42215144 + 10.1016/bs.acc.2026.01.006 + S0065-2423(26)00020-X + + +
+ + + 42215142 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + A hybrid chemometric and deep learning model for monitoring quality loss in thermally processed edible oils. + + 119497 + 119497 + + 10.1016/j.foodres.2026.119497 + S0963-9969(26)01180-4 + + Edible oils are routinely exposed to high temperatures during domestic and commercial cooking, leading to chemical transformations that degrade the quality of oils and pose potential health risks. This study investigated the thermal degradation of groundnut, sesame, and restaurant-collected oils, with particular emphasis on polymerization, oxidation, and hydrolysis processes. Fourier-transform infrared (FTIR) spectroscopy and dielectric measurements were employed to monitor the molecular changes induced by heating the oils, whereas quantitative assessments of oil deterioration were performed using key chemical parameters and dielectric indices. Advanced chemometric and deep learning models like CARS-PLS, RF-PLS, and 1D-CNN were used to find the most important spectral regions and key chemical and dielectric features linked to oil degradation. Among these, the 1D-CNN model exhibited the highest predictive accuracy for both acid value (AV) and dielectric constant (DC), achieving training R2values of 0.9984 and 0.9931, and an external test R2values of 0.9904 and 0.9898, respectively, with the lowest RMSE. Heating oil shows the results with significant alterations in the FTIR bands, an increased dielectric constant, and elevated AV, corresponding to the accumulation of oxidized triglycerides, free fatty acids, and high-molecular-weight polymeric residues. Furthermore, explainable artificial intelligence (XAI) using SHAP analysis revealed key spectral contributions corresponding to ester groups, carbonyl stretching of triglycerides, free fatty acids, and CH₂/CH₃ vibrations. This study demonstrates that integrating spectroscopic and dielectric analyses with predictive modeling provides a sensitive, non-destructive laboratory-based proof-of-concept approach for evaluating the oil degradation during thermal processing. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Varma + Shruti O + SO + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. + + + + Vishwakarma + Ajay L + AL + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. + + + + Sonawane + M R + MR + + Department of Physics, The Institute of Science, Dr. Homi Bhabha State University, Mumbai 400032, Maharashtra, India. Electronic address: smahadev123@gmail.com. + + + + Garad + Nitin P + NP + + School of Physical Sciences, Swami Ramanand Teerth Marathwada University, Nanded 431606, India. + + + + Kumbharkhane + A C + AC + + School of Physical Sciences, Swami Ramanand Teerth Marathwada University, Nanded 431606, India. + + + + eng + + Journal Article + + + 2026 + 05 + 20 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + + + 0 + Plant Oils + + + IM + + + Hot Temperature + + + Spectroscopy, Fourier Transform Infrared + + + Deep Learning + + + Cooking + methods + + + Plant Oils + chemistry + analysis + + + Food, Processed + + + Oxidation-Reduction + + + Hydrolysis + + + + Chemical properties + Chemometrics + Deep learning + Dielectric properties + Explainable artificial intelligence (XAI) + Thermal degradation + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 2 + 25 + + + 2026 + 5 + 17 + + + 2026 + 5 + 19 + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215142 + 10.1016/j.foodres.2026.119497 + S0963-9969(26)01180-4 + + +
+ + + 42215140 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Multimodal analysis of spontaneous speech for predicting food liking: Integrating linguistic and prosodic features with machine learning. + + 119483 + 119483 + + 10.1016/j.foodres.2026.119483 + S0963-9969(26)01166-X + + Spontaneous speech offers a promising yet underexplored window into consumers' emotional experiences during food evaluation. Unlike traditional self-reported measures, vocal expression captures both explicit linguistic content and implicit affective cues, potentially providing a richer account of hedonic perception. This study investigates whether linguistic and prosodic cues embedded in natural spoken responses can predict product liking. Ninety participants evaluated three chocolates and three plant-based beverages, providing hedonic ratings and open-ended spoken descriptions. Speech was analysed using psycholinguistic, prosodic, and representation-based features. Multiple machine learning algorithms were applied for both classification (low/medium vs high liking) and regression (continuous liking prediction). Feature-level comparisons showed that chocolates elicited richer emotional language, higher vocal intensity, and greater acoustic variability than plant-based drinks (p < 0.005). Across the full dataset, linguistic markers were the strongest predictors of liking (F1-score = 0.695; mean absolute error (MAE) = 1.530), while prosodic features provided complementary information related to arousal and engagement. Speech embeddings showed limited generalisation (area under the curve (AUC) < 0.518; MAE > 1.602). Product-specific analyses revealed higher predictive accuracy for chocolates (F1-score = 0.825; MAE = 1.213) than for plant-based beverages (F1-score = 0.559; MAE = 1.619), indicating that the strength of affective cues in speech depends on the emotional resonance of the product being evaluated. These findings demonstrate that spontaneous speech contains measurable emotional signals related to food liking. Interpretable linguistic and prosodic features can partially predict hedonic responses, highlighting the potential of multimodal, speech-based emotion analysis as a complementary tool in sensory and consumer research. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Sousa + Pedro M + PM + + GreenUPorto/Inov4Agro, DGAOT, Faculty of Sciences, University of Porto, Portugal. + + + + Lima + Rui C + RC + + Sense Test, Lda, Vila Nova de Gaia, Portugal. + + + + García-Segovia + Purificación + P + + i-Food, IUIA-FoodUPV, Universitat Politècnica de València, Spain. + + + + Alcañiz + Mariano + M + + LabLENI, HumanTech/LabLENI, Universitat Politècnica de València, València, Spain. + + + + Cunha + Luís M + LM + + GreenUPorto/Inov4Agro, DGAOT, Faculty of Sciences, University of Porto, Portugal. Electronic address: lmcunha@fc.up.pt. + + + + eng + + Journal Article + + + 2026 + 05 + 18 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Humans + + + Machine Learning + + + Speech + + + Food Preferences + psychology + + + Female + + + Emotions + + + Male + + + Young Adult + + + Cues + + + Adult + + + Linguistics + + + Consumer Behavior + + + + Acoustic features + Affective computing + Sensory analysis + Speech emotion + Supervised learning + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 1 + 4 + + + 2026 + 4 + 28 + + + 2026 + 5 + 16 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215140 + 10.1016/j.foodres.2026.119483 + S0963-9969(26)01166-X + + +
+ + + 42215133 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Translating Food Biosensing into Practice: Smart Packaging, On-Site Analytics, and AI Integration. + + 119473 + 119473 + + 10.1016/j.foodres.2026.119473 + S0963-9969(26)01156-7 + + The global food system encounters increasing challenges from contamination threats, necessitating innovative monitoring technologies to guarantee safety and quality. This review investigates novel precision monitoring methodologies, emphasizing sophisticated biosensing technologies, intelligent packaging systems, molecular docking, and AI-integrated platforms. Biosensors utilize electrochemical, optical, and thermal transducers for the swift, on-site identification of contaminants, toxins, and allergens, surpassing conventional methods in both speed and accessibility. The incorporation of intelligent packaging improves real-time quality assurance, while molecular docking determines contaminant interactions to improve sensor design. Advancements in AI and machine learning enhance predictive analytics and traceability, meeting intricate supply chain requirements. Nonetheless, obstacles such as matrix interference, sensor stability, and regulatory deficiencies remain. Future directions highlight nanotechnology, biodegradable materials, and defined standards to improve scalability and sustainability. These breakthroughs will continue to transform food safety, minimize waste, and enhance global health equity, thereby revolutionizing the food industry for a sustainable future. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Seyedhosseini-Ghaheh + Hooria + H + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. Electronic address: h.hosseini@nutr.mui.ac.ir. + + + + Rafieian + Fatemeh + F + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. + + + + Rezaei + Atefe + A + + School of Life Sciences, Plant Proteins and Nutrition, Technical University of Munich, Freising 85354, Germany. + + + + Askari + Gholamreza + G + + Nutrition and Food Security Research Center, Isfahan University of Medical Sciences, Isfahan, Iran. + + + + Zarrabi + Ali + A + + Department of Biomedical Engineering, Faculty of Engineering and Natural Sciences, Istinye University, Istanbul 34396, Türkiye; Graduate School of Biotechnology and Bioengineering, Yuan Ze University, Taoyuan 320315, Taiwan. Electronic address: ali.zarrabi@istinye.edu.tr. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 16 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Biosensing Techniques + methods + + + Artificial Intelligence + + + Food Packaging + methods + + + Food Safety + methods + + + Food Contamination + analysis + + + Molecular Docking Simulation + + + Intelligent Systems + + + Humans + + + + Artificial Intelligence + Food biosensors + Molecular Docking + Smart Packaging + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 3 + 23 + + + 2026 + 4 + 24 + + + 2026 + 5 + 15 + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215133 + 10.1016/j.foodres.2026.119473 + S0963-9969(26)01156-7 + + +
+ + + 42215117 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Artificial intelligence integrated in non-destructive technologies for monitoring food freshness: A review of next generation approach. + + 119450 + 119450 + + 10.1016/j.foodres.2026.119450 + S0963-9969(26)01132-4 + + Food freshness is a significant quality and safety attribute, which contributes in consumers' health and their food choices. The adoption of rapid, accurate, and reliable food freshness detection novel approaches is of great significance. Non-destructive testing (NDT) offers precise, fast and efficient detection of food freshness, quality and safety but, still confronts multiple issues in data preprocessing, accuracy, reliability and adaptability. However, artificial intelligence (AI) integration in NDT upholds significant promise to overcome these issues. This review, spotlights the significance of integrating the AI in NDT (spectroscopy, imaging and other technologies) for boosting the performance of NDT. It further probes the merits, and demerits, and the principles of AI assisted NDT technologies. Moving forward, integrating AI in NDT technologies have significantly boosted the reliable and accurate freshness detection in complex food matrices, plant and animal derived foods. In spite of recent advancements in this field of research, there are still several existing challenges of compatibility, precision, and adaptability associated with the NDT approaches coupled with AI. Therefore, this review is comprehensively emphasized on the promising transformative prospects of AI integrated in NDT approaches for the non-destructive, rapid, reliable and accurate detection of food freshness based on its quality indicators accompanied with highlighting the future challenges, innovations and directions. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Waseem + Muhammad + M + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China; Department of Food Science and Technology, Faculty of Agriculture and Environment, The Islamia University of Bahawalpur, 63100, Pakistan. + + + + Javed + Muhammad Rizwan + MR + + Department of Food Science and Technology, Faculty of Agriculture and Environment, The Islamia University of Bahawalpur, 63100, Pakistan. + + + + Manzoor + Muhammad Faisal + MF + + Guangdong Provincial Key Laboratory of Intelligent Food Manufacturing, School of Food Science and Engineering, Foshan University, Foshan, China. + + + + Xia + Xiuqi + X + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. + + + + Huang + Yilei + Y + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. + + + + Chen + Xiaomei + X + + College of Ocean Food and Biological Engineering, Jimei University, Xiamen 361021, China. Electronic address: xmchen@jmu.edu.cn. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 14 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + IM + + + Artificial Intelligence + + + Food Analysis + methods + + + Humans + + + Food Quality + + + Animals + + + Intelligent Systems + + + + Artificial intelligence + Deep learning + Freshness + Machine learning + Rapid monitoring + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 12 + 22 + + + 2026 + 5 + 6 + + + 2026 + 5 + 11 + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215117 + 10.1016/j.foodres.2026.119450 + S0963-9969(26)01132-4 + + +
+ + + 42215102 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1873-7145 + + 238 + + 2026 + Aug + 31 + + + Food research international (Ottawa, Ont.) + Food Res Int + + Towards sustainable serum-free media development from alternative sources for cultivated meat. + + 119434 + 119434 + + 10.1016/j.foodres.2026.119434 + S0963-9969(26)01116-6 + + The economic feasibility and scalability of cultivated meat (CM) is critically hindered by the high manufacturing costs, particularly the cost associated with cell culture media. Therefore, numerous studies have proposed the use of sustainable alternatives to replace the expensive cell culture media components, especially animal serum. In this review, we comprehensively surveyed such developments and interpreted the opportunities and limitations of animal serum-reduction or replacement methodologies in designing culture media for CM production. Among the various alternative sources investigated, plant-derived sources and recombinant proteins have been the most extensively studied. We also highlight the critical gaps in existing studies such as the lack of demonstration of scalability, cost-effectiveness and long-term applicability of proposed alternative sources. Subsequently, we provide a roadmap for future studies on how to demonstrate the proposed alternative does not have adverse effects on cellular long-term stability, as well as comply with food safety and regulatory standards while being cost-effective which are critical for large scale CM manufacturing. We further propose a two-pronged framework based on high-throughput screening, systems biology, and Machine Learning (ML) tools to optimize serum-free CM media formulations using alternative sources in a rapid and scalable manner. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Sivakumar + Sanjay + S + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Manayankath + Aparna + A + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Hong + Yi Fan + YF + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Biomedical Engineering, National University of Singapore, Singapore. + + + + Thrivikraman + Greeshma + G + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India. + + + + Tekkatte + Chandana + C + + The Good Food Institute India, Bengaluru, India. + + + + Choudhury + Deepak + D + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Food Science and Technology, National University of Singapore, Singapore; Bezos Centre for Sustainable Protein at the National University of Singapore, Singapore. Electronic address: Deepak_Choudhury@a-star.edu.sg. + + + + Pang + Kuin Tian + KT + + Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Department of Biomedical Engineering, National University of Singapore, Singapore; Bioinformatics Institute, Agency for Science, Technology and Research (A*STAR), Singapore, Singapore; School of Chemistry, Chemical Engineering and Biotechnology, Nanyang Technological University, Singapore. Electronic address: zach_pang@a-star.edu.sg. + + + + Lakshmanan + Meiyappan + M + + Department of Biotechnology, Bhupat and Jyoti Mehta School of Biosciences, Indian Institute of Technology Madras, Chennai, India; Bioprocessing Technology Institute, Agency for Science, Technology and Research (A*STAR), Singapore; Wadhwani School of Data Science and AI (WSAI), Indian Institute of Technology Madras, Chennai, India; Centre for Integrative Biology and Systems medicinE (IBSE), Indian Institute of Technology Madras, Chennai, India. Electronic address: meiyappan@iitm.ac.in. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 13 + +
+ + Canada + Food Res Int + 9210143 + 0963-9969 + + + + 0 + Culture Media, Serum-Free + + + IM + + + In Vitro Meat + + + Animals + + + Culture Media, Serum-Free + chemistry + + + Meat Substitutes + + + + Alternative proteins + Animal serum alternatives + Cultivated meat + Serum-free media + Sustainability + Systems biology + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 12 + 11 + + + 2026 + 3 + 21 + + + 2026 + 5 + 9 + + + 2026 + 5 + 30 + 0 + 34 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 20 + 54 + + + ppublish + + 42215102 + 10.1016/j.foodres.2026.119434 + S0963-9969(26)01116-6 + + +
+ + + 42214983 + + 2026 + 05 + 29 + +
+ + 1879-3363 + + 231 + + 2026 + May + 29 + + + Marine pollution bulletin + Mar Pollut Bull + + Deep learning-based prediction of trace silver concentrations in marine sediments from mid-infrared spectroscopy. + + 119930 + 119930 + + 10.1016/j.marpolbul.2026.119930 + S0025-326X(26)00717-4 + + Silver (Ag) is a biologically toxic element, and the rapid detection of its concentrations in environmental samples is thus of great importance. This study investigates mid-infrared (MIR) spectra of low-Ag sediments from the South China Sea (SCS), and successfully predicts Ag concentrations by three machine learning models, including Kennard Stone-competitive adaptive reweighted sampling-partial least squares regression (KS-CARS-PLSR), Kennard Stone-random forest (KS-RF), and random selecting-squeeze excitation attention-residual network (RS-SE-ResNet-1D). Among the three techniques, the RS-SE-ResNet-1D model performs best in terms of Ag prediction, achieving an R2 of 0.82, an RMSE of 0.03, and an RPD of 2.38. A common feature wavenumber band in the range of 1408.3-1408.7 cm-1, corresponding to the v3 symmetric stretching absorption band of carbonate ions (CO3 + 2-), is identified from all three models. This suggests that marine productivity is possibly the dominant factor controlling Ag levels in marine sediments of the SCS. The machine learning models based on MIR spectral data developed in this study provide a new analytical approach for determining Ag concentrations in low-Ag marine sediments, and offer new insights into the study of biogeochemical cycling of Ag. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Yu + Boyuan + B + + School of Resources and Environmental Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + Xu + Liqiang + L + + School of Resources and Environmental Engineering, Hefei University of Technology, Hefei, Anhui, China. Electronic address: xlq@hfut.edu.cn. + + + + Ning + Yu + Y + + Instrumental Analysis Center, Hefei University of Technology, Hefei, Anhui, China. + + + + Xu + Fang + F + + School of Food and Biological Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + Han + Qingli + Q + + School of Food and Biological Engineering, Hefei University of Technology, Hefei, Anhui, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + England + Mar Pollut Bull + 0260231 + 0025-326X + + IM + + Machine learning + Marine sediments + Mid-infrared spectra + Productivity + Silver + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 1 + 28 + + + 2026 + 5 + 23 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 52 + + + aheadofprint + + 42214983 + 10.1016/j.marpolbul.2026.119930 + S0025-326X(26)00717-4 + + +
+ + + 42214978 + + 2026 + 05 + 29 + +
+ + 1878-0539 + + 118 + + 2026 + May + 14 + + + Journal of plastic, reconstructive & aesthetic surgery : JPRAS + J Plast Reconstr Aesthet Surg + + Development and nested cross-validation of machine learning models for predicting transfusion requirements in pediatric craniosynostosis surgery. + + 209 + 220 + 209-220 + + 10.1016/j.bjps.2026.05.033 + S1748-6815(26)00288-3 + + Blood transfusion is common during pediatric craniosynostosis surgery; however, transfusion volumes and use of cell salvage systems can vary considerably. To support preoperative transfusion planning in patients undergoing craniectomy for craniosynostosis, we developed and internally validated machine learning (ML) models to predict perioperative transfusion risks and transfusion volumes in this patient population. Data from eligible patients ≤36 months of age from the NSQIP® Pediatric dataset were included for modeling. A classifier pipeline was developed to predict probabilities associated with transfusion risk, and a probabilistic/quantile regression pipeline was developed to predict the median transfusion volume (in mL/kg) with interquartile range. Performance of the modeling pipelines was evaluated using nested cross-validation with 5-fold outer loops. In total, 8045 patients were included with 4091 (50.9%) receiving perioperative transfusion. For the classification pipeline, the optimal model configuration was a LightGBM classifier. The modeling pipeline achieved a mean area under the receiver operating characteristic curve (AUC-ROC) of 0.77 (95% confidence interval [CI] 0.75-0.78) and mean Brier score of 0.20 (95% CI 0.19-0.20) across nested cross-validation. For the regression stage, the optimal model configuration was a probabilistic NGBoost regressor. The modeling pipeline achieved an average median absolute error of 6.86 mL/kg (95% CI 6.61-7.11), with a mean IQR coverage of 53% (95% CI 52-53%). These models may support individualized blood product preparation and selective use of cell salvage systems. External validation and further real-world testing are needed prior to the clinical implementation of this tool. + Copyright © 2026 British Association of Plastic, Reconstructive and Aesthetic Surgeons. Published by Elsevier Ltd. All rights reserved. + + + + Deng + Jiawen + J + + Temerty Faculty of Medicine, University of Toronto, Toronto, ON, Canada. + + + + Gharavi + Aidin + A + + Mayo Clinic Alix School of Medicine, Mayo Clinic, Rochester, MN, USA. + + + + Heybati + Kiyan + K + + Department of Internal Medicine, Mayo Clinic, Rochester, MN, USA. + + + + Haile + Dawit + D + + Department of Anesthesiology, Mayo Clinic, Rochester, MN, USA. + + + + Ahn + Edward S + ES + + Department of Neurosurgery, Mayo Clinic, Rochester, MN, USA. + + + + Mardini + Samir + S + + Division of Plastic Surgery, Department of Surgery, Mayo Clinic, Rochester, MN, USA. + + + + Gibreel + Waleed + W + + Division of Plastic Surgery, Department of Surgery, Mayo Clinic, Rochester, MN, USA; Department of Pediatric and Adolescents Medicine, Mayo Clinic, Rochester, MN, USA. Electronic address: Gibreel.Waleed@mayo.edu. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Netherlands + J Plast Reconstr Aesthet Surg + 101264239 + 1748-6815 + + IM + + Blood transfusion + Craniectomy + Craniosynostoses + Machine learning + Operative blood salvage + + Declaration of Competing Interest The authors declare no conflict of interest. The ACS-NSQIP® and participating hospitals are the source of this data; they have not verified nor are they responsible for the statistical validity of the data analysis or the conclusions derived by the authors. +
+ + + + 2025 + 12 + 9 + + + 2026 + 4 + 20 + + + 2026 + 5 + 12 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 52 + + + aheadofprint + + 42214978 + 10.1016/j.bjps.2026.05.033 + S1748-6815(26)00288-3 + + +
+ + + 42214919 + + 2026 + 05 + 29 + +
+ + 1090-2104 + + 827 + + 2026 + May + 25 + + + Biochemical and biophysical research communications + Biochem Biophys Res Commun + + Employing network toxicology, molecular docking, machine learning, and single-cell analysis to analyze BPA exposure-induced ccRCC. + + 154037 + 154037 + + 10.1016/j.bbrc.2026.154037 + S0006-291X(26)00801-6 + + This study investigates the molecular mechanisms underlying bisphenol A (BPA)-induced clear cell renal cell carcinoma (ccRCC). We integrated transcriptomic data from multiple GEO datasets and performed differential expression analysis and WGCNA to identify BPA-associated candidate genes. Enrichment analyses implicated pathways including cell adhesion, lipid metabolism, arachidonic acid signaling, and innate immune response. Using twelve machine learning algorithms, we identified four core genes (ITGB2, TBXAS1, LIPA, and CLEC7A), all upregulated in ccRCC. Molecular docking suggested stable BPA-protein interactions with favorable binding energies. Single-cell analysis showed predominant expression of these genes in monocytes and macrophages. LIPA was elevated in kidney cancer tissues and associated with clinical outcomes. In vitro experiments confirmed that BPA exposure promoted ccRCC cell progression by regulating core gene expression. This integrated approach offers new insights into the molecular mechanisms of BPA-induced ccRCC and identifies potential biomarkers for environmental risk assessment. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Chen + Jianyu + J + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China. + + + + Wu + Lianquan + L + + Department of Urology, Longgang People's Hospital, Wenzhou, 325000, China. + + + + Jin + Haoqi + H + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China. + + + + Li + Yeping + Y + + Department of Urology, The First Affiliated Hospital of Wenzhou Medical University, Wenzhou, 325000, China; Institute of Urology, Wenzhou Medical University, Wenzhou, 325000, China. Electronic address: liypwz@126.com. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + United States + Biochem Biophys Res Commun + 0372516 + 0006-291X + + IM + + Bisphenol A + Clear cell renal cell carcinoma + Machine learning + Molecular docking + Single-cell analysis + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 22 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 51 + + + aheadofprint + + 42214919 + 10.1016/j.bbrc.2026.154037 + S0006-291X(26)00801-6 + + +
+ + + 42214908 + + 2026 + 05 + 29 + +
+ + 1876-035X + + 19 + 7 + + 2026 + May + 25 + + + Journal of infection and public health + J Infect Public Health + + The Italian hand hygiene project: A joint-commission Italian network analysis. + + 103268 + 103268 + + 10.1016/j.jiph.2026.103268 + S1876-0341(26)00140-1 + + Hand hygiene (HH) is a straightforward yet highly effective preventive measure against healthcare-associated infections; however, global compliance remains suboptimal. This study analyzed a substantial Italian dataset, focusing on adherence to HH guidelines among healthcare professionals, and identified key factors influencing compliance. + Direct multi- wave cross-sectional observational data on hand hygiene from over 749,000 opportunities were collected between 2017 and 2024 across 30 Italian hospitals participating in the Joint Commission International Hand Hygiene Project. Traditional statistical analyses and supervised machine learning (ML) models were employed to evaluate compliance rates and to examine their association with the year of observation, clinical area, professional role, and patient interaction moment (opportunity). Additionally, ML models were implemented to support proactive, risk- based surveillance within hospital settings by identifying high- risk contexts and facilitating more targeted monitoring strategies. + Overall hand hygiene compliance increased from 73.5% in 2017-82% in 2024, surpassing the World Health Organization's (WHO) target of 80% from 2020 onwards. Nursing staff demonstrated the highest adherence. High-risk opportunities, such as pre-aseptic procedures and post-exposure to bodily fluids, exhibited higher compliance than other moments. Emergency departments recorded the lowest compliance rates (76.3%). ML models confirmed that the year, patient interaction moment, and professional role are the most significant predictors of adherence. The most effective ML model achieved an accuracy of 64.6% in classifying hand hygiene actions. + This analysis underscores an improving trend in hand hygiene practices within Italian hospitals and concurrently identifies specific contexts-such as emergency departments-that require targeted interventions. The integration of observational monitoring with predictive artificial intelligence models could facilitate proactive, risk-based surveillance and focused improvement strategies. Accreditation-driven, multi-modal initiatives like this project highlight the vital role of measurement in fostering a culture of hand hygiene and advancing patient safety. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Buja + A + A + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. Electronic address: alessandra.buja@unipd.it. + + + + Damiani + G + G + + Center of Research in Precision Medicine and Chronic Inflammation, Department of Biomedical, Surgical and Dental Sciences, University of Milan, Milan 20122, Italy; Fondazione IRCCS Ca' Granda Ospedale Maggiore Policlinico, Milan 20122, Italy. + + + + Tangherloni + A + A + + Center of Research in Precision Medicine and Chronic Inflammation, Department of Biomedical, Surgical and Dental Sciences, University of Milan, Milan 20122, Italy; Department of Computing Sciences, Bocconi University, Milan 20136, Italy. + + + + Manfredi + M + M + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. + + + + Lanza + G + G + + Network Joint Commission Italia, Italy. + + + + Palmeri + C + C + + Department of Cardiac, Thoracic, Vascular Sciences and Public Health, University of Padua, Padua I-35131, Italy. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + England + J Infect Public Health + 101487384 + 1876-0341 + + IM + + Hand hygiene + Health Care Associated Infection + Hospital infection + Nosocomial infection + Prevention and control + + Declaration of Competing Interest The authors declare that there are no conflicts of interest regarding the publication of this manuscript. +
+ + + + 2026 + 1 + 13 + + + 2026 + 5 + 11 + + + 2026 + 5 + 19 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 19 + 50 + + + aheadofprint + + 42214908 + 10.1016/j.jiph.2026.103268 + S1876-0341(26)00140-1 + + +
+ + + 42214885 + + 2026 + 05 + 29 + +
+ + 1879-0771 + + 132 + + 2026 + May + 24 + + + Computerized medical imaging and graphics : the official journal of the Computerized Medical Imaging Society + Comput Med Imaging Graph + + An interpretable multimodal model integrating clinical, spectral CT imaging, and deep learning analysis of intra- and peritumoral regions for preoperative prediction of perineural invasion in gastric cancer: A prospective, multicenter study. + + 102776 + 102776 + + 10.1016/j.compmedimag.2026.102776 + S0895-6111(26)00079-0 + + Perineural invasion (PNI) is crucial for risk stratification and treatment planning. This study aims to develop a novel multimodal model for preoperative prediction of PNI in gastric cancer. + A total of 250 patients with pathologically confirmed gastric cancer from multiple centers were enrolled and divided into a training cohort (n = 138), an internal validation cohort (n = 59), and an external validation cohort (n = 53). Spectral CT parameters from both intra- and peritumoral regions were acquired using the GSI viewer software, while deep learning features were extracted via a ResNet-50 architecture. Clinical features were screened through univariate and multivariate regression analyses. Based on machine learning, we developed a spectral parameter model, a deep learning feature model, a clinical prediction model, and a multimodal fusion model (MFM). The predictive performance of the models was evaluated using calibration curves, receiver operating characteristic curves, and decision curve analysis (DCA). Model interpretability was achieved by employing Shapley Additive exPlanations (SHAP). + Compared with individual models, MFM demonstrated the best predictive performance, with area under the curve (AUC) values of 0.926, 0.885, and 0.871 in the training, internal validation, and external validation cohorts, respectively. DCA confirmed that MFM provided a higher net benefit over a wide range of threshold probability. Calibration curve showed MFM had better predictive consistency, and the Hosmer-Lemeshow test indicated good fit across all cohorts (all p-values > 0.05). SHAP effectively interpreted the decision-making process of the model. + The novel multimodal fusion model, which integrates clinical, spectral CT parameters, and deep learning features from intra- and peritumoral regions, demonstrated outstanding performance in preoperatively predicting PNI in gastric cancer. + Copyright © 2026 Elsevier Ltd. All rights reserved. + + + + Zhao + Yuncong + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China. + + + + Chen + Lihong + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. + + + + Wang + Lili + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Clinical Research Center for Radiology and Radiotherapy of Fujian Province (Digestive, Hematological and Breast Malignancies), Fuzhou 350001, China. + + + + Yue + Wenjing + W + + The Fourth Clinical College, Henan Medical University, Xinxiang, 453003, China. + + + + Zeng + Deye + D + + Department of Pathology, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + You + Yaru + Y + + Department of Radiology, The First Affiliated Hospital of Zhengzhou University, Zhengzhou 450052, China; Henan Key Laboratory of Image Diagnosis and Treatment for Digestive System Tumor, Zhengzhou 450052, China; Henan Key Laboratory of CT Imaging, Zhengzhou 450052, China. + + + + Weng + Caiming + C + + Department of Gastric Surgery, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + Li + Weixing + W + + Department of Radiology, Xinxiang Central Hospital, The Fourth Clinical College, Henan Medical University, Xinxiang, 453003, China. + + + + Chen + Yilin + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China. + + + + Lin + Lin + L + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. Electronic address: linlin@fjmu.edu.cn. + + + + Xu + Haiping + H + + School of Computer and Data Science, Minjiang University, Fuzhou 350108, China. Electronic address: haiping@mju.edu.cn. + + + + Xue + Yunjing + Y + + Department of Radiology, Fujian Medical University Union Hospital, Fuzhou 350001, China; The School of Medical Imaging, Fujian Medical University, Fuzhou 350122, China; Fujian Key Laboratory of Intelligent Imaging and Precision Radiotherapy for Tumors (Fujian Medical University), Fuzhou 350001, China. Electronic address: xueyunjing@fjmu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 24 + +
+ + United States + Comput Med Imaging Graph + 8806104 + 0895-6111 + + IM + + Deep learning + Gastric cancer + Peripheral nerve invasion + SHAP + Spectral CT + + Declaration of Competing Interest The authors have no relevant financial or non-financial interests to disclose. +
+ + + + 2025 + 10 + 15 + + + 2026 + 4 + 27 + + + 2026 + 5 + 13 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 19 + 50 + + + aheadofprint + + 42214885 + 10.1016/j.compmedimag.2026.102776 + S0895-6111(26)00079-0 + + +
+ + + 42214863 + + 2026 + 05 + 29 + +
+ + 1873-3336 + + 513 + + 2026 + May + 28 + + + Journal of hazardous materials + J Hazard Mater + + Advances in multispectral and hyperspectral inversion for soil heavy metal contamination: Mechanisms, machine learning algorithms, and future perspectives. + + 142542 + 142542 + + 10.1016/j.jhazmat.2026.142542 + S0304-3894(26)01520-7 + + Heavy metal (HM) contamination in soil exhibits insidious and cumulative effects, posing long-term risks to ecosystems and human health. Traditional field sampling and laboratory analysis are increasingly insufficient for large-scale continuous monitoring, driving the adoption of multispectral (MS) and hyperspectral (HS) remote sensing. Bibliometric analysis reveals clear research trends: target elements are primarily copper, lead, and zinc, while data acquisition has progressively shifted from laboratory spectroscopy to portable devices and satellite platforms, reflecting an expansion from local to regional scales. This has led to increasing data complexity and greater demands on model robustness and generalization. However, expanding the spatial scale and transitioning to satellite observations introduce fundamental challenges. Mixed pixels and moisture-induced spectral distortions reduce signal purity, while the indirect spectral response of HMs further complicates quantitative inversion. Sample scarcity and spatial heterogeneity also limit cross-regional generalization, constraining model robustness and stability. In response, models have evolved from traditional linear regression to ensemble learning methods such as Extreme Gradient Boosting (XGBoost), and further to deep learning frameworks, including Convolutional Neural Networks (CNN) and Transformers, enabling hierarchical feature extraction and task-oriented structural design. This paper reviews the key technical bottlenecks in soil HM spectral inversion, integrating bibliometric insights with methodological advances to provide a comprehensive framework for understanding current progress and guiding future developments in large-scale, high-precision inversion. + Copyright © 2026 Elsevier B.V. All rights reserved. + + + + Huang + Minghao + M + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China. + + + + Wu + Xiang + X + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China; Key Laboratory of Danjiangkou Reservoir Area's Aquatic Eco-Environment and Health, Shiyan City (Hanjiang Normal University), Shiyan 442000, China. + + + + Peng + Qian + Q + + School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China; Key Laboratory of the Evaluation and Monitoring of Southwest Land Resources (Ministry of Education), Sichuan Normal University, Chengdu 610068, China. Electronic address: qianpeng@hubu.edu.cn. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 28 + +
+ + Netherlands + J Hazard Mater + 9422688 + 0304-3894 + + IM + + Hyperspectral + Indirect Inversion Mechanisms + Machine learning + Multispectral + Soil Heavy metals + Spectral Feature Selection + + Declaration of Competing Interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 2 + 21 + + + 2026 + 5 + 25 + + + 2026 + 5 + 26 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 49 + + + aheadofprint + + 42214863 + 10.1016/j.jhazmat.2026.142542 + S0304-3894(26)01520-7 + + +
+ + + 42214786 + + 2026 + 05 + 29 + +
+ + 1876-4754 + + + 2026 + May + 28 + + + Brain stimulation + Brain Stimul + + EEG Biomarkers of Accelerated Prolonged Intermittent Theta-Burst Stimulation in Depression: Machine Learning with a Minimal-Electrode Montage. + + 103135 + 103135 + + 10.1016/j.brs.2026.103135 + S1935-861X(26)00112-9 + + + Chang + Chun-Hung + CH + + An Nan Hospital, China Medical University, Tainan, Taiwan; Institute of Clinical Medical Science, China Medical University, Taichung, Taiwan; Shu-Zen Junior College of Medicine and Management, Tainan, Taiwan. + + + + Sack + Alexander T + AT + + Department of Cognitive Neuroscience, Faculty of Psychology and Neuroscience, Maastricht University, Maastricht, The Netherlands; Department of Psychiatry and Neuropsychology, School for Mental Health and Neuroscience (MHeNs), Brain+Nerve Centre, Maastricht University Medical Centre (MUMC), The Netherlands. + + + + Chu + Che-Sheng + CS + + Department of Psychiatry, Kaohsiung Veterans General Hospital, Kaohsiung, Taiwan; Non-Invasive Neuromodulation Consortium for Mental Disorders, Society of Psychophysiology, Taipei, Taiwan; Graduate Institute of Medicine, College of Medicine, Kaohsiung Medical University, Kaohsiung, Taiwan. Electronic address: youngtzuchi@hotmail.com. + + + + Chang + Hsin-An + HA + + Non-Invasive Neuromodulation Consortium for Mental Disorders, Society of Psychophysiology, Taipei, Taiwan; Department of Psychiatry, Tri-Service General Hospital, National Defense Medical University, Taipei, Taiwan. Electronic address: chang.ha@mail.ndmctsgh.edu.tw. + + + + eng + + Letter + + + 2026 + 05 + 28 + +
+ + United States + Brain Stimul + 101465726 + 1876-4754 + + IM + + EEG biomarkers + accelerated piTBS + brain stimulation + machine learning + major depressive disorder + resting-state electroencephalography + + Declaration of Competing Interest ☒The authors declare the following financial interests/personal relationships which may be considered as potential competing interests: The authors declare the following financial interests/personal relationships which may be considered as potential competing interests: ATS is director of the Academy of Brain Stimulation (www.brainstimulation-academy.com) and the International Clinical TMS Certification Course (www.tmscourse.eu), receiving equipment support from MagVenture, MagStim, Deymed, Yingchi, Brainsway. He also serves as scientific advisor for Platoscince Medical and Alpha Brain Technologies. Other authors declare that they have no competing financial interests or personal relationships that could be perceived to have influenced the work reported in this paper. +
+ + + + 2026 + 3 + 23 + + + 2026 + 5 + 25 + + + 2026 + 5 + 26 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 35 + + + aheadofprint + + 42214786 + 10.1016/j.brs.2026.103135 + S1935-861X(26)00112-9 + + +
+ + + 42214688 + + 2026 + 05 + 29 + +
+ + 1878-1632 + + + 2026 + May + 28 + + + The spine journal : official journal of the North American Spine Society + Spine J + + From Three to Eight Clusters: A Machine Learning-Based Classification of Operated Adult Spinal Deformity Patients. + S1529-9430(26)00157-9 + 10.1016/j.spinee.2026.05.003 + + Adult spinal deformity (ASD) is a heterogeneous condition encompassing diverse etiologies, clinical presentations, and surgical challenges. While previous unsupervised learning models have stratified ASD patients into three broad phenotypes, these often lack clinical granularity for surgical decision-making. + To refine the classification of operated ASD patients using unsupervised machine learning and assess whether expanding from 3 to 8 clusters improves clinical discrimination and predictive robustness. + Retrospective multicenter study using machine learning clustering. + 471 adult patients who underwent surgery for ASD across six specialized spine centers. + ODI, SRS-22, spinal alignment metrics, surgical strategy, and postoperative complications. + A k-means clustering algorithm was applied to a selected set of 12 demographic, radiographic, and functional variables (C12). Clustering solutions with 3 and 8 groups were compared. Each cluster was analyzed for age, etiology, disability scores (ODI, SRS-22), spinal alignment, surgical strategy, and complication rates. Predictive models using LDA and KNN assessed classification accuracy for new patient assignment. + The 8-cluster model identified clinically distinct phenotypes, including subgroups of young patients with idiopathic scoliosis, structural hyperkyphosis, and early sagittal decompensation. In elderly patients, clusters differentiated pain profiles, alignment, and frailty. The most severe clusters distinguished coronal-dominant versus sagittal collapse deformities, with differing risks and outcomes. LDA maintained robust accuracy (91.4%) in predicting cluster assignment across 50 testing splits, outperforming KNN. + To our knowledge, this is among the most granular unsupervised ML-based phenotypic classifications of operated ASD patients reported to date. This refined 8-cluster model enhances clinical phenotyping in ASD surgery, offering more precise subgroup stratification than traditional 3-cluster models. It supports the integration of unsupervised learning into personalized surgical planning, risk stratification, and multicenter outcome trials. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Roscop + Cecile + C + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. Electronic address: cecile.roscop@gmail.com. + + + + Bourghli + Anouar + A + + Spine Surgery Department, King Faisal Specialist Hospital and Research Center, Riyadh, Saudi Arabia. + + + + Baroncini + Alice + A + + Casa di Cura Humanitas San Pio X, Milano, Italy. + + + + Alanay + Ahmet + A + + Spine Center, Acibadem University School of Medicine, Istanbul, Turkey. + + + + Pellise + Ferran + F + + Spine Surgery Unit, Vall D'Hebron Hospital, Barcelona, Spain. + + + + Kleinstueck + Frank + F + + Schulthess Klinik, Zürich, Switzerland. + + + + Pizones + Javier + J + + Spine Surgery Unit, Hospital Universitario La Paz, Madrid, Spain. + + + + Charles + Yann-Philippe + YP + + Hôpitaux Universitaires de Strasbourg, France. + + + + Larrieu + Daniel + D + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + Boissière + Louis + L + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + Obeid + Ibrahim + I + + ELSAN, Polyclinique Jean Villar, Bruges Cedex, France. + + + + European Spine Study Group (ESSG) + + No institution. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + Spine J + 101130732 + 1529-9430 + + IM + + Adult spinal deformity + Clustering + K-means algorithm + Machine learning + Phenotyping + Predictive modeling + Surgical planning + + Declaration of competing interest The authors declare no competing interests. +
+ + + + 2025 + 12 + 11 + + + 2026 + 5 + 15 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 34 + + + aheadofprint + + 42214688 + 10.1016/j.spinee.2026.05.003 + S1529-9430(26)00157-9 + + +
+ + + 42214660 + + 2026 + 05 + 29 + +
+ + 1878-3511 + + + 2026 + May + 28 + + + International journal of infectious diseases : IJID : official publication of the International Society for Infectious Diseases + Int J Infect Dis + + Investigating Infection and Clinical Data to Predict Effective Antibiotic Therapy and Monitor Resistance Trends. + + 108842 + 108842 + + 10.1016/j.ijid.2026.108842 + S1201-9712(26)00477-7 + + Data-driven approaches to effectively select antibiotics are crucial to improving patient outcomes and reducing antibiotic resistance. This study aimed to determine whether routinely collected clinical and microbiological data can be used to train machine learning (ML) models to predict antibiotic resistance in patients with bacterial infections. + We conducted a retrospective observational study on clinical data from two separate Italian hospitals, analyzing 15,581 bacterial isolates collected from 9,966 patients between 2018 and 2024 at a multi-department hospital located in Rome and secondary clinic located in Capranica, about 70 Km away from Rome. Multiple ML models were trained, using both unbalanced and SMOTE-balanced datasets. Performance was assessed using cross-validation and independent test sets, comprising 2023-2024 isolates. Performance was measured using the Area Under the Receiver Operating Characteristic curve (AUROC), F1 score, accuracy, precision, and recall. + XGBoost consistently outperformed other trained models, achieving AUROCs of 0.882 and 0.878 for Gram-positive and Gram-negative datasets, respectively. Species-specific models further improved discrimination, reaching AUROC scores up to 0.946 for P. aeruginosa, 0.941 for K. pneumoniae, 0.938 for E. faecalis, 0.919 for E. coli, 0.894 for P. mirabilis, and 0.891 for S. aureus. + These results demonstrate the utility of ML models in accurately predicting antibiotic susceptibility from routine clinical data, thus facilitating rapid initiation of targeted therapy. Such an approach can potentially reduce treatment delays by up to 48 hours compared to traditional diagnostic methods, presenting a useful tool to manage patients in critical conditions and combat antibiotic resistance in clinical practice. + Copyright © 2026. Published by Elsevier Ltd. + + + + Benedetto + Marco + M + + Department of Management and Innovation Systems, University of Salerno, Fisciano (SA) 84084, Italy; Kelyon S.r.l., via Benedetto Brin, 59 C5/C6, 80100 Naples, Italy. + + + + Piccinni + Giuseppe + G + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + De Leo + Cristina + C + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Cirielli + Corrado + C + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Facchiano + Francesco + F + + Department of Oncology and Molecular Medicine, Istituto Superiore di Sanità, Rome, Italy. + + + + Facchiano + Angelo + A + + Laboratory of Bioinformatics and Computational Biology, Institute of Food Science, CNR, via Roma 52 A/C, 83100 Avellino, Italy. + + + + Panebianco + Annarita + A + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Tagliaferri + Stefano + S + + Kelyon S.r.l., via Benedetto Brin, 59 C5/C6, 80100 Naples, Italy. + + + + La Rocca + Michele + M + + Department of Economics and Statistics, University of Salerno, Fisciano (SA) 84084, Italy. + + + + Marchetti + Paolo + P + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy. + + + + Tagliaferri + Roberto + R + + Department of Management and Innovation Systems, University of Salerno, Fisciano (SA) 84084, Italy. + + + + Facchiano + Antonio + A + + Istituto Dermopatico dell'Immacolata, IDI-IRCCS, Rome, Italy; Department of Life Sciences, Health and Health Professions, Link University, 00165 Rome, Italy. Electronic address: a.facchiano@idi.it. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + Canada + Int J Infect Dis + 9610933 + 1201-9712 + + IM + + Antimicrobial resistance + antibiotic susceptibility prediction + antimicrobial stewardship + machine learning + precision medicine + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 11 + 28 + + + 2026 + 4 + 17 + + + 2026 + 5 + 26 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 33 + + + aheadofprint + + 42214660 + 10.1016/j.ijid.2026.108842 + S1201-9712(26)00477-7 + + +
+ + + 42214547 + + 2026 + 05 + 29 + +
+ + 1873-6424 + + + 2026 + May + 28 + + + Environmental pollution (Barking, Essex : 1987) + Environ Pollut + + Machine-learning-based estimation of ground-level NO2 concentrations across Southeastern Europe using multi-source satellite, reanalysis, and emission data. + + 128461 + 128461 + + 10.1016/j.envpol.2026.128461 + S0269-7491(26)00831-6 + + Reliable estimation of ground-level nitrogen dioxide (NO2) remains challenging due to limited monitoring coverage and complex interactions among emissions, meteorology, and land-use factors. This study develops a machine-learning framework to estimate surface NO2 concentrations across Southeastern Europe, covering thirteen countries with diverse emission sources and sparse monitoring networks. Daily NO2 observations from 317 monitoring stations were integrated with multiple satellite and ancillary datasets, including tropospheric NO2 from Sentinel-5P TROPOMI, vegetation indices from MODIS, and nighttime light data from VIIRS. Additional inputs included meteorological variables from ERA5, anthropogenic emissions from EDGAR v8.1, land-use data from Copernicus Corine Land Cover, elevation from the Copernicus Digital Elevation Model, and population density from the Global Human Settlement Layer. All datasets were processed and harmonized using Google Earth Engine. Three Gradient Boosting Decision Tree models (XGBoost, LGBM, and CatBoost) were trained and optimized with Optuna. Model performance was assessed using 10-fold cross-validation and independent test sets with R2, MAE, and RMSE metrics. All models performed consistently, with LGBM achieving the best results (R2 = 0.86; MAE = 5.34 μg/m3; RMSE = 8.32 μg/m3). SHapley Additive exPlanations (SHAP) identified key predictors and improved interpretability. Seasonal analysis showed higher accuracy in summer and autumn than in winter and spring. These results demonstrate that integrating multi-source data with advanced machine learning enables reliable surface NO2 estimation in regions with limited monitoring, supporting air quality assessment, exposure analysis, and evidence-based policymaking in Southeastern Europe. + Copyright © 2026. Published by Elsevier Ltd. + + + + Bilgiç + Efem + E + + Department of Environmental Engineering, Faculty of Engineering, Dokuz Eylul University, Izmir, Türkiye. Electronic address: efem.bilgic@deu.edu.tr. + + + + Elbir + Tolga + T + + Department of Environmental Engineering, Faculty of Engineering, Dokuz Eylul University, Izmir, Türkiye; Environmental Research and Application Center (CEVMER), Dokuz Eylul University, Izmir, Türkiye. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + England + Environ Pollut + 8804476 + 0269-7491 + + IM + + Nitrogen dioxide + Southeastern Europe + air quality modeling + machine learning + satellite data integration + + Declaration of Competing Interest ☒ The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 1 + 26 + + + 2026 + 5 + 24 + + + 2026 + 5 + 28 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 19 + 32 + + + aheadofprint + + 42214547 + 10.1016/j.envpol.2026.128461 + S0269-7491(26)00831-6 + + +
+ + + 42214540 + + 2026 + 05 + 29 + +
+ + 1873-6424 + + + 2026 + May + 28 + + + Environmental pollution (Barking, Essex : 1987) + Environ Pollut + + Nonlinear meteorological controls on coastal air quality along the Indian East Coast: Insights from a multi-city interpretable machine learning framework. + + 128448 + 128448 + + 10.1016/j.envpol.2026.128448 + S0269-7491(26)00818-3 + + This study investigates the role of meteorological variability in shaping ambient air quality across five coastal cities along the Indian East Coast (Haldia, Balasore, Visakhapatnam, Chennai, and Puducherry). Despite their shared coastal setting, the cities exhibit pronounced meteorological heterogeneity, leading to a clear latitudinal gradient in air pollution, with northern cities (Haldia and Balasore) experiencing substantially higher particulate matter concentrations and more frequent exceedances than southern cities (Chennai and Puducherry). Across all cities, PM10 is the dominant contributor to variability in Air Quality Index (AQI) variability. A Random Forest model reveals that meteorological parameters explain a substantial fraction of particulate matter variability (R2 up to ∼0.6), whereas gaseous pollutants show lower predictability (R2 < 0.35). Using Shapley Additive exPlanations (SHAP) analysis, we identify critical nonlinear thresholds and binary regime switches governing pollutant accumulation. A consistent regional specific humidity (SH) threshold of ∼15 ± 2 g/kg is identified as a key regime-switching threshold, with values below this level consistently associated with PM10 accumulation across all cities. In southern cities, a Sea Breeze Component (SBC) > 3 m/s is the threshold for coastal ventilation; below this level, pollutants remain trapped. Furthermore, we uncover a monsoon break thermal trap, in which temperatures exceeding 32 °C flip the expected seasonal dispersion into an accumulation regime. These findings demonstrate that coastal air quality is governed by discrete meteorological regime transitions rather than linear responses. The identified thresholds provide a physically interpretable framework for improving localized air quality forecasting and mitigation strategies in complex coastal environments. + Copyright © 2026. Published by Elsevier Ltd. + + + + Varaprasad + V + V + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Madhavan + B L + BL + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Jain + Chaithanya D + CD + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Krishnaveni + A Sai + AS + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. + + + + Ratnam + M Venkat + MV + + National Atmospheric Research Laboratory, Government of India, Tirupati, India. Electronic address: vratnam@narl.gov.in. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + England + Environ Pollut + 8804476 + 0269-7491 + + IM + + Coastal air quality + RF model + SHAP + boundary layer dynamics + meteorological variability + nonlinear interactions + + Declaration of Competing Interest ☒ The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 5 + 8 + + + 2026 + 5 + 22 + + + 2026 + 5 + 27 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 19 + 32 + + + aheadofprint + + 42214540 + 10.1016/j.envpol.2026.128448 + S0269-7491(26)00818-3 + + +
+ + + 42214280 + + 2026 + 05 + 29 + +
+ + 1532-8708 + + 53 + 4 + + 2026 + Apr + 07 + + + Seminars in oncology + Semin Oncol + + Physics-informed machine learning for tumor microenvironment-responsive nanomedicine: Recent updates. + + 152498 + 152498 + + 10.1016/j.seminoncol.2026.152498 + S0093-7754(26)00045-X + + Physics-informed machine learning (PIML) is rapidly emerging as a transformative paradigm for designing tumor microenvironment (TME)-responsive nanomedicines. While existing reviews have surveyed PIML in broader biomedical contexts, this work provides a focused, critical synthesis specifically at the intersection of PIML, multiscale TME biophysics, and clinically actionable nanomedicine design. We argue that the unique value of PIML lies not merely in combining physics with data, but in its capacity to resolve the "personalization paradox" in oncology: the tension between the need for patient-specific models and the scarcity of patient-specific data. By embedding governing physical laws-such as Darcy's flow, reaction-diffusion kinetics, and Navier-Stokes equations-as soft constraints, PIML models can generate physically plausible, patient-tailored predictions even with sparse clinical inputs. This review uniquely articulates a translational roadmap that systematically links fundamental PIML methodologies to concrete nanomedicine optimization tasks: predicting nanoparticle transport in heterogeneous TMEs, designing stimulus-responsive nanocarriers, and integrating multi-omics/imaging for personalized therapy. We further introduce a novel comparative framework evaluating PIML against purely physics-based and purely data-driven approaches, highlighting its superior data efficiency and interpretability for TME applications. However, significant challenges remain, including data standardization, computational scalability, and regulatory adaptation. Looking forward, we identify under-explored yet high-impact frontiers, such as quantum-informed PIML for molecular-scale nanocarrier design, real-time adaptive nanomedicine guided by patient digital twins, and the ethical-regulatory frameworks needed for clinical deployment. By synthesizing cross-disciplinary insights and proposing a clear path from bench to bedside, this review aims to not only summarize the state-of-the-art but also to catalyze the next generation of intelligent, patient-centric cancer nanotherapeutics. + Copyright © 2026 Elsevier Inc. All rights reserved. + + + + Hasannia + Maliheh + M + + Cancer Research Center, Semnan University of Medical Sciences, Semnan, Iran. + + + + Abounoori + Ali + A + + Department of Microbial Biotechnology, Faculty of Biotechnology, Amol University of Special Modern Technologies, Amol, Iran. + + + + Abounoori + Mahdi + M + + Cancer Research Center, Semnan University of Medical Sciences, Semnan, Iran. + + + + Shirzad + Maryam + M + + Nanotechnology Research Center, Pharmaceutical Technology Institute, Mashhad University of Medical Sciences, Mashhad, Iran. + + + + Rahdar + Abbas + A + + Department of Physics, University of Zabol, Zabol, Iran. Electronic address: a.rahdar@uoz.ac.ir. + + + + Fathi-Karkan + Sonia + S + + Natural Products and Medicinal Plants Research Center, North Khorasan University of Medical Sciences, Bojnurd, Iran; Department of Advanced Sciences and Technologies in Medicine, School of Medicine, North Khorasan University of Medical Sciences, Bojnurd, Iran; Food and Drug Research Center, Food and Drug Administration, Ministry of Health and Medical Education, Tehran, Iran. Electronic address: Soniafathi92@gmail.com. + + + + Romanholo Ferreira + Luiz Fernando + LF + + Graduate Program in Genomic Sciences and Biotechnology, Catholic University of Brasília, Brasília, 71966-700, Brazil. Electronic address: luiz.romanholo@p.ucb.br. + + + + eng + + Journal Article + Review + + + 2026 + 04 + 07 + +
+ + United States + Semin Oncol + 0420432 + 0093-7754 + + IM + + Multi-omics integration + Nanomedicine + Nanoparticle transport + Physics-informed machine learning + Tumor microenvironment + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2025 + 11 + 14 + + + 2026 + 2 + 12 + + + 2026 + 4 + 5 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 30 + 0 + 32 + + + 2026 + 5 + 29 + 18 + 10 + + + aheadofprint + + 42214280 + 10.1016/j.seminoncol.2026.152498 + S0093-7754(26)00045-X + + +
+ + + 42214151 + + 2026 + 05 + 29 + +
+ + 1873-3573 + + 309 + + 2026 + May + 28 + + + Talanta + Talanta + + Machine learning assisted transparent bending-insensitive SERS substrate for reliable quantitative analysis of thiram residues on fruit surfaces. + + 130059 + 130059 + + 10.1016/j.talanta.2026.130059 + S0039-9140(26)00715-0 + + Transparent and flexible surface-enhanced Raman scattering (SERS) substrates are highly suitable for rapid pesticide detection on fruit surfaces, owing to their capability for in situ detection on curved surfaces. However, achieving reproducible and stable SERS signals from flexible SERS substrates under bending conditions remains a major challenge. Additionally, integrating machine learning into Raman spectral analysis can further enhance the practicality of SERS technology. Herein, we develop a novel sensing platform that combines a transparent, bending-insensitive SERS substrate with machine learning for the rapid quantitative determination of thiram residues on fruit surfaces. The flexible SERS substrate was constructed by depositing silver nanoparticles (AgNPs) onto a polydimethylsiloxane (PDMS) twisted nanowrinkle array. Endowed with high SERS activity, exceptional transparency, and bending insensitivity, this substrate enabled reliable and consistent detection of thiram residues on apple and cherry tomato peels, with a sensitivity as low as 10-7 M. Furthermore, a back propagation neural network (BPNN)-based machine learning model was developed to predict thiram concentrations, achieving remarkable accuracy with a coefficient of determination (R2) of 0.9954 and a root mean square error (RMSE) of 0.0985. Thus, the proposed sensing platform provides a rapid, accurate, and reliable approach for the identification and quantification of thiram in fruits. + Copyright © 2026 Elsevier B.V. All rights reserved. + + + + Wang + Yue + Y + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Huang + Lili + L + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Wang + Jie + J + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Li + Zetong + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Bian + Ziyang + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Yang + Zhenshan + Z + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. + + + + Li + Hefu + H + + School of Physical Science and Information Engineering, Liaocheng University, Liaocheng, 252000, China. Electronic address: lihefu@lcu.edu.cn. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + Netherlands + Talanta + 2984816R + 0039-9140 + + IM + + BPNN + Bending insensitivity + Quantitative analysis + SERS + Thiram + + Declaration of competing interest The authors declare that they have no competing financial interests or personal relationships that could have appeared to influence the work reported in this study. +
+ + + + 2026 + 3 + 9 + + + 2026 + 5 + 23 + + + 2026 + 5 + 27 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 18 + 7 + + + aheadofprint + + 42214151 + 10.1016/j.talanta.2026.130059 + S0039-9140(26)00715-0 + + +
+ + + 42214146 + + 2026 + 05 + 29 + +
+ + 1879-0534 + + 212 + + 2026 + May + 29 + + + Computers in biology and medicine + Comput Biol Med + + A recurrent interferon, stress, and survival axis identifies a rare malignant programme across glioblastoma single-cell, spatial, and longitudinal cohorts. + + 111780 + 111780 + + 10.1016/j.compbiomed.2026.111780 + S0010-4825(26)00344-6 + + Glioblastoma exhibits profound intratumoral heterogeneity and rapid adaptation under stress, complicating durable therapeutic control. Here, a biologically grounded transcriptional axis is defined by three complementary modules capturing type I interferon signalling, immediate-early stress response, and pro-survival signalling enriched in unfolded protein response components. Using this equal-weighted axis, a rare axis-high programme was identified in a glioblastoma training cohort (GSE173278; 75,075 cells after filtering; 5.95% prevalence) and mapped to external cohorts through marker-anchored cohort-specific clusters. To enable reproducible detection, an interpretable 40-gene regularised logistic regression classifier was trained using fold-internal panel selection and Platt calibration fitted strictly on out-of-fold predictions. The conservative out-of-fold training evaluation showed informative discrimination and good probability calibration (AUC 0.767, AP 0.116, Brier 0.055, ECE 0.011). When the final model was applied to marker-anchored operational labels, ranking performance was high in an independent glioblastoma cohort (GSE131928; AUC 0.950, AP 0.351) and in an exploratory pan-cancer transfer setting (GSE203612; AUC 0.944, AP 0.343), although calibration slopes indicated dataset-dependent probability-scale shift. Longitudinal CARE glioblastoma samples showed that recalibration on T1 samples improved probability-scale reliability on later T2/T3 samples without changing rank discrimination. Spatial stratification based on available sample annotations linked higher detector probabilities to necrotic, bulk, and tumour-region samples. Irradiation feature-count contrasts supported positive shifts of the 40-gene panel and axis-related modules, while cell-level treated/control summaries were interpreted as context-specific perturbational evidence. Together, these results define a rare axis-high glioblastoma programme and provide a recalibratable gene-panel detector for probability-guided experimental triage and mechanistic follow-up. + Copyright © 2026 The Authors. Published by Elsevier Ltd.. All rights reserved. + + + + Pastore + Emmanuel Pio + EP + + Department of Biology, Ecology and Earth Science, University of Calabria, 87036 Rende, Italy. + + + + De Rango + Francesco + F + + Department of Biology, Ecology and Earth Science, University of Calabria, 87036 Rende, Italy. Electronic address: francesco.derango@unical.it. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + Comput Biol Med + 1250250 + 0010-4825 + + IM + + Glioblastoma + Interferon signaling + Machine learning + Protein response + Reproducible bioinformatics + Single-cell RNA-seq + Stress response + Unfolded + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 3 + 4 + + + 2026 + 5 + 11 + + + 2026 + 5 + 25 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 30 + 0 + 33 + + + 2026 + 5 + 29 + 18 + 7 + + + aheadofprint + + 42214146 + 10.1016/j.compbiomed.2026.111780 + S0010-4825(26)00344-6 + + +
+ + + 42214095 + + 2026 + 05 + 29 + +
+ + 1933-0693 + + + 2026 + May + 29 + + + Journal of neurosurgery + J Neurosurg + + Assessment system for short-term lower cranial nerve dysfunction following medulla oblongata glioma surgery: risk stratification and optimal surgical strategy. + + 1 + 12 + 1-12 + + 10.3171/2025.12.JNS251593 + + Medullary gliomas pose significant surgical risks, particularly the risk of postoperative lower cranial nerve (LCN) dysfunction, which profoundly affects quality of life. The lack of standardized risk assessment hinders optimal surgical planning. The aim of this study was to develop and validate an individualized predictive model for short-term postoperative LCN impairment integrating clinical and imaging data and to estimate individual risk across a range of resection extent to optimize surgical planning. + A retrospective cohort (n = 111, January 2020-February 2023) was used for model development, with prospective validation (n = 45, February 2023-December 2024). The primary outcome was postoperative LCN dysfunction (inability to be extubated within 14 days or requiring tracheotomy with persistent ventilation). Predictive modeling was performed using logistic regression, incorporating multistage feature selection, hyperparameter optimization, and bootstrapped validation. Model performance was evaluated using metrics such as area under the curve (AUC), Brier score, calibration, and decision curve analysis (DCA) in the prospective validation set. Shapley Additive Explanations (SHAP) analysis was used to interpret feature contributions, and a nomogram was constructed for clinical implementation. Optimal extent of resection (EOR) thresholds were explored to balance functional preservation and tumor clearance. + Four independent predictors of LCN dysfunction were identified: EOR (OR 1.84, 95% CI 1.07-3.16), infiltrative growth (OR 10.46 [95% CI 2.70-40.52]), preoperative LCN impairment (OR 6.79 [95% CI 2.54-18.16]), and cervical cord involvement (OR 4.64 [95% CI 1.55-13.91]). The model demonstrated strong discrimination (training AUC 0.85 [95% CI 0.76-0.92], testing AUC 0.89 [95% CI 0.79-0.97]) and good calibration (Brier score 0.12). High-risk patients, defined as those with a model predicted risk probability > 0.471 based on Youden's index, had significantly higher rates of pneumonia, tracheostomy, and prolonged mechanical ventilation. Stratified resection plans showed that low-risk patients benefited from gross-total resection (EOR 88.4%, [95% CI 75.7%-100.0%]), while high-risk patients achieved optimal functional outcomes with limited resection (EOR 40.8%, [95% CI 38.2%-50.5%]). SHAP and nomogram analyses provided transparent, patient-specific information for risk consultations. + This study presents the first predictive model tailored to short-term postoperative LCN outcomes following medullary glioma surgery, proposing a dynamic resection paradigm based on individualized risk stratification. By guiding surgical planning and intraoperative decision-making, this model facilitates a balance between maximal tumor control and functional preservation. + + + + Zhang + Mingxin + M + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + + Xiao + Xiong + X + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Jia + Heyuan + H + + 5School of Instrumentation and Optoelectronic Engineering, Beihang University, Beijing. + + + + Liu + Yinan + Y + + 6Brainnetome Center, Institute of Automation, Chinese Academy of Sciences, Beijing; and. + + + + Jiang + Wenju + W + + 7Beijing Arion Cancer Center, Beijing, China. + + + + Xie + Luyang + L + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + + Pan + Changcun + C + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Wu + Zhen + Z + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Junting + J + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Liwei + L + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + 2Chinese Institutes for Medical Research, Beijing. + + + 3Beijing Neurosurgical Institute, Capital Medical University, Beijing. + + + 4China National Clinical Research Center for Neurological Diseases, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + Zhang + Peng + P + + 1Department of Neurosurgery, Beijing Tiantan Hospital, Capital Medical University, Beijing. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Neurosurg + 0253357 + 0022-3085 + + IM + + lower cranial nerve dysfunction + machine learning + medullary glioma + oncology + predictive model + risk stratification + skull base + surgical decision-making + tumor + +
+ + + + 2025 + 6 + 21 + + + 2025 + 12 + 19 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 17 + 52 + + + aheadofprint + + 42214095 + 10.3171/2025.12.JNS251593 + + +
+ + + 42214078 + + 2026 + 05 + 29 + +
+ + 1520-5215 + + + 2026 + May + 29 + + + The journal of physical chemistry. A + J Phys Chem A + + IPSBrain: A Unified Intelligent Data Analysis Platform for Multimodal Experimental Characterization at Advanced Photon Source. + 10.1021/acs.jpca.6c01154 + + Advanced photon sources deliver X-ray with unprecedented brilliance and coherence, facilitating sophisticated multimodal characterization of diverse materials while simultaneously generating data volumes that far exceed the capacity of traditional, expert-driven analytical workflows. This growing gap between data acquisition and interpretation has become a critical bottleneck for timely scientific discovery, which creates a critical need for high-throughput and automated data analysis tools. Recent advances in artificial intelligence (AI) offer a transformative potential to address this challenge, enabling the direct mapping of complex experimental observations into scientific insights. However, existing AI-driven tools are remain largely fragmented and task-specific, limiting their adoption of modern multimodal experiments at the facility scale. Here we present IPSBrain, a unified AI-powered platform that serves as Intelligent Photon Source Brain for automated analysis of multimodal synchrotron experimental data. The platform integrated a series of novel, self-developed machine-learning-based models that enable automated data analysis from multiple experimental techniques, including diffraction, scattering, X-ray absorption, and tomograph. The platform is accessible through an intuitive web interface, which significantly lowers the technical barrier to advanced scientific data interpretation. By enabling end-to-end intelligent workflows from data acquisition to quantitative physical insight, IPSBrain supports high-throughput, reproducible, and scalable analysis aligned with the operational demands of modern synchrotron radiation sources. IPSBrain not only demonstrates a practical and extensible framework for AI-driven synchrotron data analysis but also establishes a transferable paradigm for intelligent data analysis of other large-scale research infrastructures, such as neutron sources and free-electron lasers. + + + + Pang + Yihe + Y + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + Spallation Neutron Source Science Center, Dongguan 523800, China. + + + + Li + Lin + L + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Computer Science and Technology, Beijing Institute of Technology, Beijing 100081, China. + + + + Deng + Xiangwen + X + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + Xi + Zuoxin + Z + 0000-0003-1237-7780 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Li + Jing + J + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Han + Mengdan + M + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Information Engineering, Minzu University of China, Beijing 100081, China. + + + + Sun + Yaping + Y + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + School of Science, China University of Geosciences Beijing, Beijing 100083, China. + + + + Yao + Haodong + H + 0000-0001-5959-8594 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + Wu + Liyuan + L + 0000-0002-4890-2770 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + + Yuan + Qin + Q + 0009-0001-7123-6155 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + + Zhao + Lina + L + 0000-0002-9796-0221 + + Multi-disciplinary Research Division, Institute of High Energy Physics, Chinese Academy of Sciences, Beijing 100049, China. + + + University of Chinese Academy of Sciences, Beijing 100049, China. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Phys Chem A + 9890903 + 1089-5639 + + IM +
+ + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 17 + 12 + + + aheadofprint + + 42214078 + 10.1021/acs.jpca.6c01154 + + +
+ + + 42214077 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 2561-3278 + + 11 + + 2026 + May + 29 + + + JMIR biomedical engineering + JMIR Biomed Eng + + Psychosocial Stress in the Chinese Community: Speech Analytics Through Linguistic and Acoustic Fusion Using Machine Learning. + + e91138 + e91138 + + 10.2196/91138 + + Family caregivers experience significant stress due to intensive caregiving activities, making them highly susceptible to adverse psychosocial health conditions. Early detection of this stress is crucial for timely interventions to prevent disease progression and long-term disability. + This study aimed to develop and validate the Linguistic and Acoustic Speech Analytics Program, a novel machine learning approach capable of providing a fusion analysis of linguistic and acoustic speech features to enhance the effectiveness of psychosocial stress assessment. + This quantitative study analyzed speech data collected from 100 Chinese family caregivers. Participants responded to 12 open-ended questions, and their voices were recorded for linguistic and acoustic feature extraction. Various machine learning classifiers, including support vector machine, were developed to process speech data. A key methodological step was the application of an orthogonalization procedure to decorrelate acoustic features from linguistic features before fusion analysis. The classifiers were then trained to evaluate psychosocial stress levels based on the processed and fused linguistic and acoustic speech features. Model performance was measured using receiver operating characteristic-area under the curve, F1-score, and accuracy. + The linear support vector machine model emerged as the top performer, achieving a receiver operating characteristic-area under the curve of 78.28%, an F1-score of 75.27%, and an accuracy of 73%. These results demonstrate the model's strong capability in identifying stressed participants based on their speech. Critically, the fusion of linguistic and acoustic features significantly outperformed models using either feature type alone. Furthermore, the orthogonalization procedure proved essential, as decorrelating features before fusion markedly enhanced classification accuracy compared to using non-orthogonalized features. + This study demonstrates that fusion analysis of linguistic and acoustic features effectively identifies psychosocial stress among family caregivers. It also emphasizes the importance of proper feature processing when combining multiple features extracted from the same audio sample. These findings provide valuable insights for developing machine learning models for psychosocial stress assessment and addressing various psychosocial conditions in different contexts, supporting population mental health management. + © Amanda M Y Chu, Benson S Y Lam, Jenny T Y Tsang, Agnes Tiwari, Jacky N L Chan, Mike K P So. Originally published in JMIR Biomedical Engineering (http://biomsedeng.jmir.org). + + + + Chu + Amanda M Y + AMY + 0000-0002-9543-747X + + Department of Social Sciences and Policy Studies, The Education University of Hong Kong, Tai Po, Hong Kong, China. + + + + Lam + Benson S Y + BSY + 0000-0002-0836-4162 + + Department of Mathematics, Statistics and Insurance, The Hang Seng University of Hong Kong, Shatin, Hong Kong, China. + + + + Tsang + Jenny T Y + JTY + 0000-0003-4558-9384 + + School of Nursing, Tung Wah College, Homantin, Hong Kong, China. + + + + Tiwari + Agnes + A + 0000-0002-3993-8552 + + School of Nursing, Hong Kong Sanatorium and Hospital, Hong Kong, China. + + + + Chan + Jacky N L + JNL + 0000-0003-1704-4221 + + Department of Information Systems, Business Statistics and Operations Management, The Hong Kong University of Science and Technology, Clear Water Bay, Hong Kong, China, 852 2358 7726. + + + + So + Mike K P + MKP + 0000-0003-0781-8166 + + Department of Information Systems, Business Statistics and Operations Management, The Hong Kong University of Science and Technology, Clear Water Bay, Hong Kong, China, 852 2358 7726. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Biomed Eng + 101771351 + 2561-3278 + + + caregivers + digital health + psychosocial health + speech analytics + text analytics + +
+ + + + 2026 + 1 + 11 + + + 2026 + 3 + 23 + + + 2026 + 3 + 24 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 17 + 12 + + + epublish + + 42214077 + 10.2196/91138 + v11i1e91138 + + +
+ + + 42214073 + + 2026 + 05 + 29 + + + 2026 + 05 + 29 + +
+ + 1929-0748 + + 15 + + 2026 + May + 29 + + + JMIR research protocols + JMIR Res Protoc + + Creation of an mHealth Infrastructure to Support the Development and Delivery of mHealth Interventions: Protocol for Demonstration Projects Addressing Smoking Cessation in Cancer Care. + + e92288 + e92288 + + 10.2196/92288 + + Cancer remains a leading cause of morbidity worldwide. To reduce this burden, scalable, effective approaches are needed to address modifiable risk factors for cancer and support behavioral self-management. With smartphone ownership now nearly ubiquitous, mobile health (mHealth) interventions offer a powerful means to extend the reach, accessibility, and sustainability of evidence-based treatments for a variety of modifiable risk factors (eg, excessive alcohol use, physical inactivity, poor diet, and smoking). Moreover, the flexibility of mHealth platforms enables efficient delivery of novel interventions, supports innovative study designs, and facilitates real-time data collection to advance public health research. + Despite the great potential of mHealth interventions, developing high-quality mHealth tools is complex, time-consuming, and resource-intensive. To address these challenges, we are developing a coordinated, accessible, research-grade infrastructure for mHealth app development, testing, and dissemination. + The mHealth Florida infrastructure (mFLi) will provide a comprehensive, low-code software platform that enables researchers to build apps compatible with major mobile operating systems, namely, Apple iOS and Google Android. Through a modular interface, users will select from a menu of prebuilt features to tailor functionality to specific study needs. The platform will include 3 integrated environments (development, testing, and production), allowing researchers to prototype, evaluate, and deploy mHealth interventions. This infrastructure will be developed and maintained by a multidisciplinary team, ensuring that the platform is technically robust and usable and adheres to institutional and regulatory standards. To demonstrate the platform's functionality, utility, and adaptability, a multisite study comprising three initial projects focused on smoking cessation among patients with cancer is being conducted: (1) participant screening and enrollment, (2) randomization and treatment delivery, and (3) data processing using machine learning methods with on-device and cloud-based approaches. + This study was funded in May 2023, and ethics approval was obtained from all involved sites' institutional review boards between February 2024 and October 2025. Recruitment began in March 2025 and enrollment is ongoing. As of January 2026, 41% (37/90) of the target sample have been enrolled and 21% (19/90) have completed their 6-month assessment. Data collection will be completed once the final participant completes their 6-month assessment (expected May 2027), with analyses commencing thereafter. Study findings are anticipated to be published in a peer-reviewed journal in 2027. + Collectively, these projects will illustrate how mFLi can streamline app development, facilitate rapid translation of research into practice, and reduce barriers for researchers and developers. Ultimately, mFLi is designed to accelerate innovation in mHealth research, enhance access to behavioral interventions, and improve health outcomes among diverse populations. + ClinicalTrials.gov NCT06909357; https://clinicaltrials.gov/study/NCT06909357. + PRR1-10.2196/92288. + ©Lindsey S Sparrock, Jennifer I Vidrine, Christine E Vinci, Issam M El Naqa, Steven K Sutton, Ramzi G Salloum, Jesse Dallery, Tracy E Crane, Frank J Penedo, Samuel J Brockway, Sarah R Jones, Charles E Hoogland, Richard R Reich, Guillermo Gonzalez-Calderon, Vani N Simmons, Damon J Vidrine. Originally published in JMIR Research Protocols (https://www.researchprotocols.org), 29.05.2026. + + + + Sparrock + Lindsey S + LS + 0000-0003-3230-7886 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Vidrine + Jennifer I + JI + 0000-0001-7159-7252 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + Vinci + Christine E + CE + 0000-0001-8883-0989 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + El Naqa + Issam M + IM + 0000-0001-6023-1132 + + Department of Machine Learning, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Radiation Oncology, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Gastrointestinal Oncology, Moffitt Cancer Center, Tampa, FL, United States. + + + + Sutton + Steven K + SK + 0000-0002-2504-7601 + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Salloum + Ramzi G + RG + 0000-0002-8139-2418 + + Department of Health Outcomes and Biomedical Informatics, College of Medicine, University of Florida, Gainesville, FL, United States. + + + Health Cancer Center, University of Florida, Gainesville, FL, United States. + + + + Dallery + Jesse + J + 0000-0002-2882-1105 + + Department of Psychology, University of Florida, Gainesville, FL, United States. + + + + Crane + Tracy E + TE + 0000-0002-4288-134X + + Department of Medicine, Miller School of Medicine, University of Miami, Miami, FL, United States. + + + + Penedo + Frank J + FJ + 0000-0002-2780-0417 + + Department of Medicine, Miller School of Medicine, University of Miami, Miami, FL, United States. + + + Department of Psychology, University of Miami, Coral Gables, FL, United States. + + + + Brockway + Samuel J + SJ + 0009-0000-4761-768X + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Jones + Sarah R + SR + 0000-0001-5513-2527 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Hoogland + Charles E + CE + 0000-0001-7735-1931 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + + Reich + Richard R + RR + 0009-0009-9559-6858 + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Gonzalez-Calderon + Guillermo + G + 0000-0002-4075-8946 + + Department of Biostatistics and Bioinformatics, Moffitt Cancer Center, Tampa, FL, United States. + + + + Simmons + Vani N + VN + 0000-0002-4381-5336 + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Psychology, College of Arts and Sciences, University of South Florida, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + Vidrine + Damon J + DJ + 0000-0002-8711-796X + + Department of Health Outcomes & Behavior, Moffitt Cancer Center, Tampa, FL, United States. + + + Department of Oncologic Sciences, Morsani College of Medicine, University of South Florida, Tampa, FL, United States. + + + + eng + + + ClinicalTrials.gov + + NCT06909357 + + + + + Journal Article + + + 2026 + 05 + 29 + +
+ + Canada + JMIR Res Protoc + 101599504 + 1929-0748 + + IM + + + Humans + + + Smoking Cessation + methods + + + Telemedicine + + + Neoplasms + therapy + + + Mobile Applications + + + Digital Health + + + + cancer + feasibility + mHealth + randomized controlled trial + smoking + tobacco cessation + +
+ + + + 2026 + 2 + 9 + + + 2026 + 3 + 18 + + + 2026 + 3 + 17 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 16 + 53 + + + epublish + + 42214073 + 10.2196/92288 + v15i1e92288 + + +
+ + + 42214056 + + 2026 + 05 + 29 + +
+ + 2688-1535 + + + 2026 + May + 29 + + + JCO oncology practice + JCO Oncol Pract + + Development and External Validation of a Machine Learning-Based Risk Classification Score for Prostate Cancer-Specific Cardiovascular Risk. + + OP2600131 + OP2600131 + + 10.1200/OP-26-00131 + + Patients with prostate cancer (PC) face elevated cardiovascular (CV) risk. Conventional CV risk scores are often poorly calibrated for PC and require laboratory tests that are not routinely available in PC clinics, limiting oncology use. + The development cohort (DC) included men with PC (age ≥18 years) diagnosed in 2010-2014. Validation cohort 1 (V1) included men age 45 years and older within 1 year of PC diagnosis or near initiation of androgen deprivation therapy. Validation cohort 2 (V2) included men with PC diagnosed in 2006-2019. Outcomes were cardiovascular disease (CVD), atherosclerotic CVD (ASCVD), and heart failure (HF). Predictors were selected with XGBoost and LASSO, modeled with Fine-Gray and penalized Cox regression, and scaled to additive point scores (low/intermediate/high risk). Performance was assessed using time-dependent AUC (TDAUC), which quantifies the model's ability to correctly rank patients by risk at each time point, and compared with conventional scores. + The DC included 1,815 patients, and V1 and V2 included 4,022 and 1,729 patients, respectively (median follow-up 10.3 years). At 10 years, cumulative incidence was 15.0% for composite CVD, 9.4% for ASCVD, and 10.1% for HF. The composite CVD score (age, race, smoking history, high-risk Gleason score, and household members) achieved a 10-year TDAUC of 0.71 (95% CI, 0.64 to 0.78) in the DC and 0.59 (95% CI, 0.52 to 0.65) in V2, with a 2-year TDAUC of 0.66 (95% CI, 0.56 to 0.75) in V1. In the DC, ASCVD and HF scores achieved 10-year TDAUCs of 0.66 (95% CI, 0.58 to 0.75) and 0.70 (95% CI, 0.62 to 0.79), respectively, and retained discrimination in validation. + To our knowledge, these are the first PC-specific CV risk scores derived from oncology-available variables, supporting pragmatic CV risk stratification in PC clinics and motivating further validation and implementation studies. + + + + Stabellini + Nickolas + N + 0000-0002-3135-7980 + + Case Western Reserve University, Cleveland, OH. + + + Department of Hematology-Oncology, University Hospitals Seidman Cancer Center, Cleveland, OH. + + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Nahle + Tarek + T + 0009-0004-4584-3308 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Shah + Viraj + V + 0009-0003-5850-9862 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Kollapaneni + Sai S + SS + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Makram + Omar M + OM + 0000-0001-8361-9068 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Cullen + Jennifer + J + + Cancer Prevention and Control Program, Houston Methodist Neal Cancer Center, Houston, TX. + + + + Weintraub + Neal L + NL + 0000-0002-5138-3705 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + Vascular Biology Center, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Kunhiraman + Harikrishnan H + HH + 0000-0002-6395-7956 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + + Swami + Umang + U + 0000-0003-3518-0411 + + Division of Oncology, Department of Internal Medicine, Huntsman Cancer Institute, University of Utah, Salt Lake City, UT. + + + + Mahmoudi + Morteza + M + 0000-0002-2575-9684 + + Department of Radiology and Precision Health Program, Michigan State University, East Lansing, MI. + + + + Fillmore + Nathanael + N + 0000-0002-8058-3423 + + Department of Medicine, Harvard Medical School, Boston, MA. + + + + Garraway + Isla P + IP + + Department of Urology, David Geffen School of Medicine, University of California, Los Angeles, CA. + + + Department of Surgical and Perioperative Care, VA Greater Los Angeles, Los Angeles, CA. + + + + Leong + Darryl + D + 0000-0002-1968-169X + + Population Health Research Institute and Department of Medicine, McMaster University and Hamilton Health Sciences, Hamilton, ON, Canada. + + + + Pinthus + Jehonathan + J + + Division of Urology, Department of Surgery, McMaster University, Hamilton, ON, Canada. + + + + Shanahan + John + J + + Cancer Informatics, Seidman Cancer Center at University Hospitals of Cleveland, Cleveland, OH. + + + + Montero + Alberto J + AJ + 0000-0002-8221-8120 + + Case Western Reserve University, Cleveland, OH. + + + Department of Hematology-Oncology, University Hospitals Seidman Cancer Center, Cleveland, OH. + + + + Agarwal + Neeraj + N + 0000-0003-1076-0428 + + Huntsman Cancer Institute, University of Utah, Salt Lake City, UT. + + + + Guha + Avirup + A + 0000-0003-0253-1174 + + Division of Cardiology, Department of Medicine, Medical College of Georgia at Augusta University, Augusta, GA. + + + Cardio-Oncology Program, Medical College of Georgia at Augusta University, Augusta, GA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + JCO Oncol Pract + 101758685 + 2688-1527 + + IM +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 16 + 12 + + + aheadofprint + + 42214056 + 10.1200/OP-26-00131 + + +
+ + + 42213920 + + 2026 + 05 + 29 + +
+ + 1079-7114 + + 136 + 19 + + 2026 + May + 15 + + + Physical review letters + Phys Rev Lett + + Hierarchical and Ultrametric Barriers in the Energy Landscape of Jammed Granular Matter. + + 198202 + 198202 + + 10.1103/mtn5-s26m + + According to the mean-field glass theory, the (free) energy landscape of disordered systems is hierarchical and ultrametric if they belong to the full-replica-symmetry-breaking universality class. However, examining this theoretical picture in three-dimensional systems remains challenging, where the energy barriers become finite. Here, we numerically explore the energy landscape of granular models near the jamming transition using a saddle dynamics algorithm to locate both local energy minima and saddles. The multiscale distances and energy barriers between minima are characterized by two metrics, both of which exhibit signatures of an ultrametric space. The scale-free distributions of energy barriers confirm the landscape's hierarchical organization and align with the distribution of elastic avalanches under athermal quasistatic shear. + + + + Wu + Shuonan + S + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + + Xie + Yuchen + Y + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + + Pan + Deng + D + + Chinese Academy of Sciences, Institute of Theoretical Physics, Beijing 100190, China. + https://ror.org/034t30j35 + + + + Zhang + Lei + L + + Peking University, School of Mathematical Sciences, Beijing 100871, China. + https://ror.org/02v51f717 + + + Peking University, Beijing International Center for Mathematical Research, Beijing, 100871, China. + https://ror.org/02v51f717 + + + Peking University, Center for Quantitative Biology, Beijing, 100871, China. + https://ror.org/02v51f717 + + + Peking University, Center for Machine Learning Research, Beijing, 100871, China. + https://ror.org/02v51f717 + + + + Jin + Yuliang + Y + + Chinese Academy of Sciences, Institute of Theoretical Physics, Beijing 100190, China. + https://ror.org/034t30j35 + + + University of Chinese Academy of Sciences, School of Physical Sciences, Beijing 100049, China. + https://ror.org/05qbk4x57 + + + University of Chinese Academy of Sciences, Center for Theoretical Interdisciplinary Sciences, Wenzhou Institute, Wenzhou, Zhejiang 325001, China. + https://ror.org/05qbk4x57 + + + + eng + + Journal Article + +
+ + United States + Phys Rev Lett + 0401141 + 0031-9007 + + IM +
+ + + + 2025 + 12 + 22 + + + 2026 + 2 + 10 + + + 2026 + 4 + 21 + + + 2026 + 5 + 29 + 18 + 35 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 15 + 12 + + + ppublish + + 42213920 + 10.1103/mtn5-s26m + + +
+ + + 42213819 + + 2026 + 05 + 29 + +
+ + 1535-1386 + + + 2026 + May + 29 + + + The Journal of bone and joint surgery. American volume + J Bone Joint Surg Am + + Compliance with the CONSORT AI Extension in Orthopaedic Randomized Controlled Trials. + 10.2106/JBJS.25.01439 + + The utilization of artificial intelligence (AI), such as machine learning, in health care has risen exponentially, underscoring the necessity of transparency and traceability in the reporting of AI in randomized controlled trials (RCTs) that involve AI. In 2020, a CONSORT (Consolidated Standards of Reporting Trials) AI extension was published that included 14 additional items that should be reported when AI is used in RCTs. This study aimed to evaluate compliance with these additional guidelines. + A systematic approach was used to identify all RCTs in orthopaedics that involved AI since the extension was published. Three databases were searched (PubMed, Embase, Cochrane) using the search terms ([orthopaedic] OR [orthopedic]) AND ([artificial intelligence] OR [AI] OR [machine learning] OR [deep learning]). + One hundred and seventy-four articles were identified, and 11 articles satisfied the inclusion and exclusion criteria and were assessed for compliance. The average number of CONSORT AI-extension items met per study was 11.4 ± 1.6 (81.2% ± 12.1%). Eight items (1a [i], 1b [ii], 2a [i], 4a [i], 5 [ii], 5 [v], 5 [vi], 19) that were related to standard reporting of AI utilization were reported in all articles. The items with the lowest reporting rates were related to data transparency and included 4a (ii), 5 (iii), and 25, with only 9.1%, 36.4%, and 45.5% of all studies complying, respectively. + Orthopaedic RCTs involving AI showed high compliance with respect to standard trial reporting and broad AI descriptors but low compliance with respect to detailed data transparency, data-quality handling, and code accessibility. Addressing these weaker areas is essential to improve reproducibility, reduce bias, and strengthen trust in AI-driven clinical research. + Improved compliance with CONSORT-AI reporting standards may help orthopaedic clinicians to critically evaluate AI-based randomized trials, reproduce findings, and determine whether AI interventions are reliable and safe for clinical use. + Copyright © 2026 by The Journal of Bone and Joint Surgery, Incorporated. + + + + Strasser + Thomas + T + 0000-0003-4456-8178 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Baker + Christopher + C + 0009-0009-9822-6633 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Cheminant + Jenna + J + 0009-0001-2747-5263 + + College of Osteopathic Medicine of the Pacific, Western University of Health Sciences, Pomona, California. + + + + Han + Blake + B + 0009-0002-9570-1944 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + College of Osteopathic Medicine of the Pacific, Western University of Health Sciences, Pomona, California. + + + + Canumay + Sallie + S + 0009-0009-1627-8828 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + + Schlechter + John + J + 0000-0001-8389-8407 + + Department of Orthopedic Surgery, Riverside University Health System, Moreno Valley, California. + + + Rady Children's Health Orange County, Orange, California, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + United States + J Bone Joint Surg Am + 0014030 + 0021-9355 + + IM + Disclosure: No external funding was received for this work. The Disclosure of Potential Conflicts of Interest forms are provided with the online version of the article (http://links.lww.com/JBJS/J301). +
+ + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 18 + 34 + + + 2026 + 5 + 29 + 14 + 2 + + + aheadofprint + + 42213819 + 10.2106/JBJS.25.01439 + 00004623-990000000-01850 + + + + Schulz KF, Altman DG, Moher D; CONSORT Group. CONSORT 2010 statement: updated guidelines for reporting parallel group randomised trials. BMJ. 2010 Mar 23;340:c332. + + + Moher D, Hopewell S, Schulz KF, Montori V, Gøtzsche PC, Devereaux PJ, Elbourne D, Egger M, Altman DG. CONSORT 2010 explanation and elaboration: updated guidelines for reporting parallel group randomised trials. BMJ. 2010 Mar 23;340:c869. + + + Ioannidis JP. How to make more published research true. PLoS Med. 2014 Oct 21;11(10):e1001747. + + + Liu X, Cruz Rivera S, Moher D, Calvert MJ, Denniston AK; SPIRIT-AI and CONSORT-AI Working Group. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI extension. Nat Med. 2020 Sep;26(9):1364-74. + + + Fan X, Qiao X, Wang Z, Jiang L, Liu Y, Sun Q. Artificial Intelligence-Based CT Imaging on Diagnosis of Patients with Lumbar Disc Herniation by Scalpel Treatment. Comput Intell Neurosci. 2022 May 27;2022:3688630. + + + Anderson PG, Baum GL, Keathley N, Sicular S, Venkatesh S, Sharma A, Daluiski A, Potter H, Hotchkiss R, Lindsey RV, Jones RM. Deep learning assistance closes the accuracy gap in fracture detection across clinician types. Clin Orthop Relat Res. 2023 Mar 1;481(3):580-8. + + + Gauci MO, Olmos M, Cointat C, Chammas PE, Urvoy M, Murienne A, Bronsard N, Gonzalez JF. Validation of the shoulder range of motion software for measurement of shoulder ranges of motion in consultation: coupling a red/green/blue-depth video camera to artificial intelligence. Int Orthop. 2023 Feb;47(2):299-307. + + + Zhu Y, Wu T, Wang W, Cai C, Zhu B, Lin W, Xu H, Liang Q, Wang Y. Artificial intelligence algorithm–based lumbar and spinal MRI for evaluation of efficacy of Chinkuei Shin Chewan decoction on lumbar spinal stenosis. Contrast Media Mol Imaging. 2021 Dec 29;2021:2700452. + + + Zhang H, He Q, Liu Q, He Y, Wang T, Feng Z, Zhang Q, He S. Comparative analysis of artificial intelligence and two-dimensional digital template preoperative planning–assisted total hip arthroplasty to predict prosthesis size. Chin J Tissue Eng Res. 2023;27(29):4620-7. + + + Zheng H, Feng E, Xiao Y, Liu X, Lai T, Xu Z, Chen J, Xie S, Lin F, Zhang Y. Is AI 3D-printed PSI an accurate option for patients with developmental dysplasia of the hip undergoing THA? BMC Musculoskelet Disord. 2024 Apr 22;25(1):308. + + + Gao L, Xing B. Bone cement reinforcement improves the therapeutic effects of screws in elderly patients with pelvic fragility factures. J Orthop Surg Res. 2024 Mar 18;19(1):191. + + + Baker HP, Dwyer E, Kalidoss S, Hynes K, Wolf J, Strelzow JA. ChatGPT’s Ability to Assist with Clinical Documentation: A Randomized Controlled Trial. J Am Acad Orthop Surg. 2024 Feb 1;32(3):123-9. + + + Bates NA, Huffman A, Goodyear E, Nagai T, Rigamonti L, Breuer L, Holmes BD, Schilaty ND. Physical clinical care and artificial-intelligence-guided core resistance training improve endurance and patient-reported outcomes in subjects with lower back pain. Clin Biomech (Bristol). 2023 Mar;103:105902. + + + Zhang Y, Hui Z, Qi W, Zhang J, Wang M, Zhu D. Clinical study on the safety and feasibility of AiWalker-K for lower limbs exercise rehabilitation in children with cerebral palsy. PLoS One. 2024 May 22;19(5):e0303517. + + + Thiengwittayaporn S, Wattanapreechanon P, Sakon P, Peethong A, Ratisoontorn N, Charoenphandhu N, Charoensiriwath S. Development of a mobile application to improve exercise accuracy and quality of life in knee osteoarthritis patients: a randomized controlled trial. Arch Orthop Trauma Surg. 2023 Feb;143(2):729-38. + + + Jayakumar P, Moore MG, Furlough KA, Uhler LM, Andrawis JP, Koenig KM, Aksan N, Rathouz PJ, Bozic KJ. Comparison of an artificial intelligence–enabled patient decision aid vs educational material on decision quality, shared decision-making, patient experience, and functional outcomes in adults with knee osteoarthritis: a randomized clinical trial. JAMA Netw Open. 2021 Feb 1;4(2):e2037107. + + + Page MJ, McKenzie JE, Bossuyt PM, Boutron I, Hoffmann TC, Mulrow CD, Shamseer L, Tetzlaff JM, Akl EA, Brennan SE, Chou R, Glanville J, Grimshaw JM, Hróbjartsson A, Lalu MM, Li T, Loder EW, Mayo-Wilson E, McDonald S, McGuinness LA, Stewart LA, Thomas J, Tricco AC, Welch VA, Whiting P, Moher D. The PRISMA 2020 statement: an updated guideline for reporting systematic reviews. BMJ. 2021 Mar 29;372:n71. + + + Sataloff RT, Bush ML, Chandra R, Chepeha D, Rotenberg B, Fisher EW, Goldenberg D, Hanna EY, Kerschner JE, Kraus DH, Krouse JH, Li D, Link M, Lustig LR, Selesnick SH, Sindwani R, Smith RJ, Tysome J, Weber PC, Welling DB. Systematic and other reviews: criteria and complexities. Ear Nose Throat J. 2021 Jul;100(6):403-6. + + + Liu X, Rivera SC, Moher D, Calvert MJ, Denniston AK; SPIRIT-AI and CONSORT-AI Working Group. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI Extension. BMJ. 2020 Sep 9;370:m3164. + + + Anderson JM, Howard C, Staggs J, Steele R, Strasser T, Small T, Vassar M, Checketts JX. Inadequate reporting of complications in randomized controlled trials cited as supporting evidence underpinning AAOS CPG recommendations for hip and knee osteoarthritis: application of the CONSORT Harms checklist. J Arthroplasty. 2022 Dec;37(12):2466-2472.e2. + + + Marcus E, Teuwen J. Artificial intelligence and explanation: How, why, and when to explain black boxes. Eur J Radiol. 2024 Apr;173:111393. + + + Wyles CC, Saniei S, Mulford KL, Girod MM, Taunton MJ. Reporting Guidelines for Artificial Intelligence Use in Orthopaedic Surgery Research. J Arthroplasty. 2025 Oct;40(10):2737-2743.e1. + + + Martindale APL, Llewellyn CD, de Visser RO, Ng B, Ngai V, Kale AU, Ferrante di Ruffano L, Golub RM, Collins GS, Moher D, McCradden MD, Oakden-Rayner L, Cruz Rivera S, Calvert M, Kelly CJ, Lee CS, Yau C, Chan AW, Keane PA, Beam AL, Denniston AK, Liu X. Concordance of randomized controlled trials for artificial intelligence interventions with the CONSORT-AI reporting guidelines. Nature Communications. 2024;15(1):1619. + + + Shahzad R, Ayub B, Siddiqui MAR. Quality of reporting of randomised controlled trials of artificial intelligence in healthcare: a systematic review. BMJ Open. 2022 Sep 5;12(9):e061519. + + + Misir A, Yuce A. AI in Orthopedic Research: A Comprehensive Review. J Orthop Res. 2025 Aug;43(8):1508-27. + + + +
+ + + 42213782 + + 2026 + 05 + 29 + +
+ + 2211-1247 + + 45 + 6 + + 2026 + May + 28 + + + Cell reports + Cell Rep + + Non-centromeric CENP-A regulates epithelial-mesenchymal plasticity and heterogeneity in human cells. + + 117405 + 117405 + + 10.1016/j.celrep.2026.117405 + S2211-1247(26)00483-3 + + Centromere protein A (CENP-A), a centromeric histone H3 variant highly expressed in aggressive cancers, promotes epithelial-mesenchymal transition (EMT), yet its underlying mechanisms remain unresolved. Here, we used a reversible high-CENP-A expression system in human cells to follow EMT-state trajectories and CENP-A localization over time. Sustained CENP-A elevation shifted hybrid populations toward mesenchymal states and increased both centromeric loading and ectopic chromatin incorporation. Chromatin immunoprecipitation revealed ectopic CENP-A enrichment at EMT-associated loci. Single-nucleus multi-omics further resolved two EMT programs engaged at distinct cell cycle stages: CENP-A strengthened a pre-existing inflammatory program and triggered a developmental program. Importantly, restoring basal CENP-A levels erased these transcriptional programs and eliminated ectopic incorporation, consistent with a reversible, non-genetic mechanism. Together, our findings uncover a non-centromeric function for CENP-A in shaping epithelial-mesenchymal plasticity and cellular heterogeneity. + Copyright © 2026 The Author(s). Published by Elsevier Inc. All rights reserved. + + + + Renaud-Pageot + Charlène + C + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Capocefalo + Daniele + D + + Institut Pasteur, Université Paris Cité, CNRS, UMR 3738, Machine Learning for Integrative Genomics Lab, 75015 Paris, France. + + + + Lemaire + Sébastien + S + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Forest + Audrey + A + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. + + + + Cantini + Laura + L + + Institut Pasteur, Université Paris Cité, CNRS, UMR 3738, Machine Learning for Integrative Genomics Lab, 75015 Paris, France. + + + + Almouzni + Geneviève + G + + Institut Curie, Université PSL, Sorbonne Université, CNRS, UMR 3664 Nuclear Dynamics, Chromatin Dynamics Lab, Equipe Labellisée Ligue Contre le Cancer, 75005 Paris, France. Electronic address: genevieve.almouzni@curie.fr. + + + + eng + + Journal Article + + + 2026 + 05 + 28 + +
+ + United States + Cell Rep + 101573691 + + IM + + CENP-A + CP: developmental biology + CP: molecular biology + cell cycle + centromere + chromatin + epigenetics + epithelial-mesenchymal transition + single-nucleus multi-omics + + Declaration of interests The authors declare no competing interests. +
+ + + + 2025 + 10 + 1 + + + 2026 + 2 + 10 + + + 2026 + 4 + 27 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 18 + 33 + + + 2026 + 5 + 29 + 13 + 52 + + + aheadofprint + + 42213782 + 10.1016/j.celrep.2026.117405 + S2211-1247(26)00483-3 + + +
+
\ No newline at end of file diff --git a/sources/samples/standardized_scopus_test.xlsx b/sources/samples/standardized_scopus_test.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..11b463506060782e824bb2012c4809e8e88c5521 GIT binary patch literal 127113 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 z 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

@9r!H(ItBQ5?1&-d$l4_bcOsN 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 BY~cU^ literal 0 HcmV?d00001 diff --git a/www/services/file_extractor.py b/www/services/file_extractor.py index bbc6193..13fdc8f 100644 --- a/www/services/file_extractor.py +++ b/www/services/file_extractor.py @@ -1,102 +1,118 @@ -import pandas as pd +"""Extract raw bibliographic records from files before standardization.""" + +from __future__ import annotations + import os +import tempfile +import zipfile + +import pandas as pd +from bibtexparser.bparser import BibTexParser + +from .parsers import parse_cochrane_data, parse_pubmed_medline_text, parse_wos_data + + +SUPPORTED_EXTENSIONS = {".csv", ".xlsx", ".xls", ".txt", ".ciw", ".bib"} + + +def _annotate_records(records: list[dict], file_extension: str, source: str) -> list[dict]: + """Attach source metadata used by the transformation dispatcher.""" + for record in records: + record["_bibliometrix_file_type"] = file_extension + record["_bibliometrix_source"] = source + return records + + +def _read_tabular_file(file_path: str, file_extension: str, source_upper: str) -> list[dict]: + skiprows = 1 if source_upper == "DIMENSIONS" else 0 + + if file_extension == ".csv": + df = pd.read_csv( + file_path, + dtype=str, + skiprows=skiprows, + on_bad_lines="skip", + encoding="utf-8", + ) + else: + df = pd.read_excel(file_path, dtype=str, skiprows=skiprows) + + return df.fillna("").to_dict(orient="records") + + +def _read_bibtex_file(file_path: str) -> list[dict]: + with open(file_path, "r", encoding="utf-8") as file: + parser = BibTexParser() + return parser.parse_file(file).entries + + +def _extract_zip_file(file_path: str, source_upper: str) -> list[dict]: + all_records: list[dict] = [] + with zipfile.ZipFile(file_path, "r") as archive: + with tempfile.TemporaryDirectory() as tmp_dir: + archive.extractall(tmp_dir) + for root, _, files in os.walk(tmp_dir): + for filename in files: + nested_path = os.path.join(root, filename) + nested_ext = os.path.splitext(filename)[1].lower() + if nested_ext in SUPPORTED_EXTENSIONS: + all_records.extend(extract_from_file(nested_path, source_upper)) + return all_records -from .parsers import parse_pubmed_medline_text, parse_wos_data, parse_cochrane_data def extract_from_file(file_path: str, source: str) -> list[dict]: + """Read one raw bibliographic export and return a list of record dicts. + + The function is intentionally limited to the extraction phase: it never + renames columns or enforces the WoS schema. That work is delegated to + ``standardizer.convert2df``. """ - Legge un file grezzo esportato manualmente dalle principali piattaforme - bibliometriche e lo converte in una struttura dati Python standardizzata. - - Args: - file_path (str): Il percorso assoluto o relativo del file da leggere. - source (str): Il nome del database di origine (es. "Scopus", "PubMed"). - - Returns: - list[dict]: Una lista dove ogni dizionario rappresenta un singolo articolo. - - Raises: - FileNotFoundError: Se il percorso del file indicato non esiste. - ValueError: Se l'estensione del file o la fonte testuale non sono supportate. - """ - - # Controlliamo subito se il file esiste sul disco. if not os.path.exists(file_path): - raise FileNotFoundError(f"Errore: Il file '{file_path}' non esiste.") - - # Pulizia dell'input: trasformiamo la fonte in maiuscolo e togliamo gli spazi accidentali + raise FileNotFoundError(f"Il file '{file_path}' non esiste.") + source_upper = source.upper().strip() - - # Estraiamo l'estensione del file e la mettiamo in minuscolo file_extension = os.path.splitext(file_path)[1].lower() - - # FILE DI TESTO PROPRIETARI (TXT/CIW) - # Wos, Cochrane e PubMed - if file_extension in ['.txt', '.ciw']: - print(f"[{source_upper}] Lettura file testuale proprietario: {file_path}") - - # Gestione specifica per PubMed: + + if file_extension == ".zip": + return _extract_zip_file(file_path, source_upper) + + if file_extension == ".bib": + print(f"[{source_upper}] Lettura file BibTeX: {file_path}") + records = _read_bibtex_file(file_path) + return _annotate_records(records, file_extension, source_upper) + + if file_extension in {".txt", ".ciw"}: + print(f"[{source_upper}] Lettura file testuale: {file_path}") + if source_upper == "PUBMED": - # PubMed richiede che il testo venga letto qui e passato al parser come stringa. - with open(file_path, 'r', encoding='utf-8') as f: - text_content = f.read() - return parse_pubmed_medline_text(text_content) - - # Gestione per Web of Science: + with open(file_path, "r", encoding="utf-8") as file: + records = parse_pubmed_medline_text(file.read()) elif source_upper == "WEB_OF_SCIENCE": - return parse_wos_data(file_path) - - # Gestione per Cochrane: + records = parse_wos_data(file_path) elif source_upper == "COCHRANE": - return parse_cochrane_data(file_path) - + records = parse_cochrane_data(file_path) else: raise ValueError( - f"I file di testo (.txt/.ciw) sono supportati solo per PUBMED, WEB_OF_SCIENCE e COCHRANE. " - f"Ricevuto: {source_upper}" + "I file .txt/.ciw sono supportati solo per PUBMED, " + f"WEB_OF_SCIENCE e COCHRANE. Ricevuto: {source_upper}" ) - # FILE TABELLARI (CSV/XLSX/XLS) - # Scopus, Dimensions, Lens, OpenAlex e WoS tabellare + return _annotate_records(records, file_extension, source_upper) - elif file_extension in ['.csv', '.xlsx', '.xls']: + if file_extension in {".csv", ".xlsx", ".xls"}: print(f"[{source_upper}] Lettura file tabellare {file_extension}: {file_path}") - try: - # Calcola quante righe saltare: 1 per Dimensions (disclaimer), 0 per gli altri - righe_da_saltare = 1 if source_upper == "DIMENSIONS" else 0 - - if file_extension == '.csv': - df = pd.read_csv( - file_path, - dtype=str, # Legge tutto come stringa. - skiprows=righe_da_saltare, # Salta la prima riga se la fonte è Dimensions - on_bad_lines='skip', # Se una riga del CSV è corrotta la salta. - encoding='utf-8' - ) - else: - df = pd.read_excel( - file_path, - dtype=str, - skiprows=righe_da_saltare # Salta la prima riga se la fonte è Dimensions - ) - - # Sostituiamo i NaN con stringhe vuote. - df = df.fillna("") - - # Converte il DataFrame in una una lista di dizionari, dove ogni dizionario è una riga della tabella. - return df.to_dict(orient="records") - + records = _read_tabular_file(file_path, file_extension, source_upper) except pd.errors.EmptyDataError: - print(f"[ERRORE] Il file '{file_path}' è vuoto.") - return [] - - except Exception as e: - print(f"[ERRORE] Impossibile leggere il file tabellare: {e}") - return [] - - else: - raise ValueError( - f"Formato file non supportato: {file_extension}. " - f"I formati accettati sono: .csv, .xlsx, .txt, .ciw" - ) \ No newline at end of file + print(f"[ERRORE] Il file '{file_path}' e' vuoto.") + return [] + except Exception as exc: + print(f"[ERRORE] Impossibile leggere il file tabellare: {exc}") + return [] + + return _annotate_records(records, file_extension, source_upper) + + raise ValueError( + f"Formato file non supportato: {file_extension}. " + "Formati accettati: .csv, .xlsx, .xls, .txt, .ciw, .bib, .zip" + ) diff --git a/www/services/format_functions.py b/www/services/format_functions.py index 1a8ee7a..c5de6b2 100644 --- a/www/services/format_functions.py +++ b/www/services/format_functions.py @@ -1176,6 +1176,7 @@ def format_sr_column(entry, source, file_type): # Function for SR Column (forma initials = ''.join([name[0] + '.' for name in names.split() if name]) author_dict = {'Surname': surname, 'Name Initials': initials} + break publication_year = entry.get('year', '') journal = entry.get('journal', '').replace('\n', ' ') diff --git a/www/services/standardizer.py b/www/services/standardizer.py index 57cc8fc..bd5cde0 100644 --- a/www/services/standardizer.py +++ b/www/services/standardizer.py @@ -1,256 +1,420 @@ -# ============================================================================= -# standardizer.py — Phase 2: TRANSFORM – RENAME (Integration with format_functions) -# ============================================================================= +"""Central transformation step for the Bibliometrix ETL pipeline. + +The goal of this module is intentionally simple: +1. receive raw records from ``file_extractor`` or ``api_retriever``; +2. map them to the internal WoS-like schema used by the app; +3. enforce predictable types and null handling; +4. return a DataFrame ready for the dashboard. +""" from __future__ import annotations -import pandas as pd + +import ast +import re from typing import Any -# Importiamo le funzioni di formattazione dal file fornito +import pandas as pd + from . import format_functions as ff +from .validation import validate_dataframe_contract, validate_record_contract + # ----------------------------------------------------------------------------- -# 1. CONTRATTI DI TIPO E DEFAULT +# 1. Target schema and type contracts # ----------------------------------------------------------------------------- + COLUMN_TYPE_CONTRACTS: dict[str, type] = { - "DB": str, "UT": str, "DI": str, "PMID": str, - "TI": str, "SO": str, "JI": str, "PY": str, - "DT": str, "LA": str, "RP": str, "AB": str, - "VL": str, "IS": str, "BP": str, "EP": str, - "SR": str, "TC": int, - "AU": list, "AF": list, "C1": list, - "CR": list, "DE": list, "ID": list, + "DB": str, + "UT": str, + "DI": str, + "PMID": str, + "TI": str, + "SO": str, + "JI": str, + "PY": str, + "DT": str, + "LA": str, + "RP": str, + "AB": str, + "VL": str, + "IS": str, + "BP": str, + "EP": str, + "SR": str, + "TC": int, + "AU": list, + "AF": list, + "C1": list, + "CR": list, + "DE": list, + "ID": list, } -_TYPE_DEFAULTS: dict[type, Any] = {str: "", int: 0, list: []} -CSV_DELIMITER: str = ";" +LIST_COLUMNS = {"AU", "AF", "C1", "CR", "DE", "ID"} +CSV_DELIMITER = ";" +NULL_STRINGS = {"", "nan", "none", "null", "na", "n/a"} +INTERNAL_KEYS = {"_bibliometrix_file_type", "_bibliometrix_source"} + -def _get_default_value(expected_type: type) -> Any: +def _default(expected_type: type) -> Any: + """Return a safe default for the requested contract type.""" if expected_type is list: return [] - return _TYPE_DEFAULTS.get(expected_type, "") + if expected_type is int: + return 0 + return "" + + +def _is_null(value: Any) -> bool: + """Detect null-like values without breaking on lists or arrays.""" + if value is None: + return True + if isinstance(value, str): + return value.strip().lower() in NULL_STRINGS + try: + return bool(pd.isna(value)) + except (TypeError, ValueError): + return False + + +def _clean_string(value: Any) -> str: + if _is_null(value): + return "" + return str(value).replace("\r", " ").replace("\n", " ").strip() + + +def _parse_literal_list(value: str) -> list[Any] | None: + """Parse strings saved by Excel/CSV as "['a', 'b']" when present.""" + stripped = value.strip() + if not (stripped.startswith("[") and stripped.endswith("]")): + return None + try: + parsed = ast.literal_eval(stripped) + except (SyntaxError, ValueError): + return None + return parsed if isinstance(parsed, list) else None + + +def _as_list(value: Any) -> list[str]: + """Convert multi-value fields to list[str], splitting serialized strings.""" + if _is_null(value): + return [] + + if isinstance(value, str): + parsed = _parse_literal_list(value) + if parsed is not None: + return _as_list(parsed) + + text = _clean_string(value) + if not text: + return [] -def _cast_scalar(value: Any, expected_type: type) -> Any: - if value is None or (isinstance(value, float) and pd.isna(value)): - return _get_default_value(expected_type) + separator = CSV_DELIMITER if CSV_DELIMITER in text else None + parts = text.split(separator) if separator else [text] + return [part.strip() for part in parts if part.strip().lower() not in NULL_STRINGS] + if isinstance(value, (list, tuple, set)): + values: list[str] = [] + for item in value: + values.extend(_as_list(item)) + return values + + text = _clean_string(value) + return [text] if text else [] + + +def _as_int(value: Any) -> int: + if isinstance(value, (list, tuple, set)): + value = next((item for item in value if not _is_null(item)), 0) + if _is_null(value): + return 0 + try: + return int(float(str(value).strip())) + except (TypeError, ValueError): + return 0 + + +def _as_year(value: Any) -> str: + match = re.search(r"\d{4}", _clean_string(value)) + return match.group(0) if match else "" + + +def _cast(tag: str, value: Any) -> Any: + """Cast one value according to the target schema.""" + expected_type = COLUMN_TYPE_CONTRACTS[tag] + if expected_type is list: + return _as_list(value) if expected_type is int: - try: - return int(float(value)) - except (ValueError, TypeError): - return 0 - elif expected_type is list: - return value if isinstance(value, list) else [str(value)] + return _as_int(value) + if tag == "PY": + return _as_year(value) + return _clean_string(value) + + +def _empty_record(db: str) -> dict[str, Any]: + record = {tag: _default(contract) for tag, contract in COLUMN_TYPE_CONTRACTS.items()} + record["DB"] = db + return record - return str(value).strip() # ----------------------------------------------------------------------------- -# 2. INTEGRAZIONE CON FORMAT_FUNCTIONS (Il Bridge) +# 2. Bridge to the existing format_functions.py # ----------------------------------------------------------------------------- -# Mappa dei tag WoS alle specifiche funzioni di format_functions.py + FORMAT_FUNCTIONS_MAP = { - 'AB': ff.format_ab_column, - 'AF': ff.format_af_column, - 'AU': ff.format_au_column, - 'BP': ff.format_bp_column, - 'C1': ff.format_c1_column, - 'CR': ff.format_cr_column, - 'DE': ff.format_de_column, - 'DI': ff.format_di_column, - 'DT': ff.format_dt_column, - 'EP': ff.format_ep_column, - 'IS': ff.format_is_column, - 'JI': ff.format_ji_column, - 'ID': ff.format_id_column, - 'LA': ff.format_la_column, - 'PMID': ff.format_pmid_column, - 'PY': ff.format_py_column, - 'RP': ff.format_rp_column, - 'SO': ff.format_so_column, - 'TC': ff.format_tc_column, - 'TI': ff.format_ti_column, - 'UT': ff.format_ut_column, - 'VL': ff.format_vl_column, - 'SR': ff.format_sr_column + "AB": ff.format_ab_column, + "AF": ff.format_af_column, + "AU": ff.format_au_column, + "BP": ff.format_bp_column, + "C1": ff.format_c1_column, + "CR": ff.format_cr_column, + "DE": ff.format_de_column, + "DI": ff.format_di_column, + "DT": ff.format_dt_column, + "EP": ff.format_ep_column, + "IS": ff.format_is_column, + "JI": ff.format_ji_column, + "ID": ff.format_id_column, + "LA": ff.format_la_column, + "PMID": ff.format_pmid_column, + "PY": ff.format_py_column, + "RP": ff.format_rp_column, + "SO": ff.format_so_column, + "TC": ff.format_tc_column, + "TI": ff.format_ti_column, + "UT": ff.format_ut_column, + "VL": ff.format_vl_column, + "SR": ff.format_sr_column, } -# Mappatura dei nomi dei DB da uppercase a quelli attesi da format_functions SOURCE_NAME_MAP = { "WEB_OF_SCIENCE": "Web_of_Science", "SCOPUS": "Scopus", "PUBMED": "PubMed", "DIMENSIONS": "Dimensions", "LENS": "The_Lens", - "COCHRANE": "Cochrane" + "THE_LENS": "The_Lens", + "COCHRANE": "Cochrane", } -def transform_via_format_functions(raw_record: dict, source_upper: str, file_type: str) -> dict: - """ - Funzione universale che delega l'estrazione dei campi a format_functions.py - e assicura il rispetto dei Type Contracts di standardizer. - """ - standardized: dict = { - tag: _get_default_value(contract) - for tag, contract in COLUMN_TYPE_CONTRACTS.items() - } - - standardized["DB"] = source_upper - ff_source_name = SOURCE_NAME_MAP.get(source_upper, source_upper) - for tag, extract_func in FORMAT_FUNCTIONS_MAP.items(): +def _effective_file_type(raw_record: dict[str, Any], source: str, file_type: str) -> str: + """Prefer file metadata added by file_extractor, then normalize extensions.""" + effective = str(raw_record.get("_bibliometrix_file_type") or file_type or "").lower().strip() + if effective and effective != "api" and not effective.startswith("."): + effective = f".{effective}" + + # PubMed API records are parsed into Medline-like keys, so the text formatter works. + if source == "PUBMED" and effective in {"api", ".xml", "xml", ""}: + return ".txt" + return effective + + +def _prepare_for_formatters(raw_record: dict[str, Any], source: str) -> dict[str, Any]: + """Small adapter for the older format_functions expectations.""" + prepared = {k: v for k, v in raw_record.items() if k not in INTERNAL_KEYS} + + if source == "PUBMED": + for key, value in list(prepared.items()): + if isinstance(value, (list, tuple, set)): + prepared[key] = CSV_DELIMITER.join(_as_list(value)) + if "MH" not in prepared and "OT" in prepared: + prepared["MH"] = prepared["OT"] + + return prepared + + +def _build_sr(record: dict[str, Any]) -> str: + """Fallback short reference: FirstAuthor, Year, Source.""" + first_author = record["AU"][0] if record["AU"] else "" + return ", ".join(part for part in [first_author, record["PY"], record["SO"]] if part) + + +def _finalize_record(record: dict[str, Any]) -> dict[str, Any]: + """Apply common derived/cleanup fields after source-specific mapping.""" + if record["SO"]: + record["SO"] = record["SO"].upper() + if not record["JI"] and record["SO"]: + record["JI"] = record["SO"] + if not record["SR"]: + record["SR"] = _build_sr(record) + return record + + +def transform_with_format_functions( + raw_record: dict[str, Any], source: str, file_type: str +) -> dict[str, Any]: + """Map records supported by the existing format_functions module.""" + record = _empty_record(source) + formatter_source = SOURCE_NAME_MAP.get(source, source) + prepared = _prepare_for_formatters(raw_record, source) + + for tag, formatter in FORMAT_FUNCTIONS_MAP.items(): try: - # Invoca la funzione specifica del campo passando i tre parametri richiesti - raw_value = extract_func(raw_record, ff_source_name, file_type) - except Exception as e: - raw_value = None # Fallback sicuro in caso di KeyError interni - - # Cast al tipo atteso (int, str, list) per evitare disallineamenti - standardized[tag] = _cast_scalar(raw_value, COLUMN_TYPE_CONTRACTS[tag]) - - # Pulizia standard su Nome Rivista (SO) - if standardized.get("SO"): - standardized["SO"] = standardized["SO"].upper() - - return standardized + value = formatter(prepared, formatter_source, file_type) + except Exception: + value = None + record[tag] = _cast(tag, value) + + return _finalize_record(record) + # ----------------------------------------------------------------------------- -# 3. LOGICHE RESIDUE (Solo per OpenAlex, non presente in format_functions) +# 3. OpenAlex mapping, because it is not covered by format_functions.py # ----------------------------------------------------------------------------- -def clean_scalar_fields_oa(raw_record: dict, mapping_dict: dict) -> dict: - res = {} - for oa_key, wos_tag in mapping_dict.items(): - val = raw_record.get(oa_key) - res[wos_tag] = _cast_scalar(val, COLUMN_TYPE_CONTRACTS[wos_tag]) - return res - -def transform_openalex_record(raw_record: dict, file_type: str = "") -> dict: - # (Mantieni qui la logica di base per OpenAlex JSON originale) - standardized = {t: _get_default_value(c) for t, c in COLUMN_TYPE_CONTRACTS.items()} - standardized["DB"] = "OPENALEX" - - mapping = {"id": "UT", "doi": "DI", "title": "TI", "publication_year": "PY", "type": "DT", "cited_by_count": "TC"} - standardized.update(clean_scalar_fields_oa(raw_record, mapping)) - - # Autori (estrazione semplificata) - authorships = raw_record.get("authorships", []) - if authorships: - standardized["AU"] = [str(a.get("author", {}).get("display_name", "")) for a in authorships] - standardized["AF"] = standardized["AU"] - standardized["C1"] = [inst.get("display_name", "") for auth in authorships for inst in auth.get("institutions", [])] - return standardized - -def transform_openalex_csv_record(raw_record: dict, file_type: str = "") -> dict: - # (Mantieni qui la logica di base per OpenAlex CSV originale) - standardized = {t: _get_default_value(c) for t, c in COLUMN_TYPE_CONTRACTS.items()} - standardized["DB"] = "OPENALEX" - - mapping = {"id": "UT", "doi": "DI", "title": "TI", "publication_year": "PY", "type": "DT", "cited_by_count": "TC", "host_venue": "SO"} - standardized.update(clean_scalar_fields_oa(raw_record, mapping)) - - authors_str = str(raw_record.get("authors", raw_record.get("author_display_names", ""))) - if authors_str: - sep = ";" if ";" in authors_str else "," - standardized["AU"] = [a.strip() for a in authors_str.split(sep) if a.strip()] - standardized["AF"] = standardized["AU"] - return standardized + +def _openalex_source(raw_record: dict[str, Any]) -> str: + location = raw_record.get("primary_location") or {} + source = location.get("source") or raw_record.get("host_venue") or {} + if isinstance(source, dict): + return _clean_string(source.get("display_name")) + return _clean_string(source) + + +def _openalex_authors_and_affiliations(raw_record: dict[str, Any]) -> tuple[list[str], list[str]]: + authors: list[str] = [] + affiliations: list[str] = [] + + for authorship in raw_record.get("authorships", []) or []: + author_name = _clean_string((authorship.get("author") or {}).get("display_name")) + if author_name: + authors.append(author_name) + + for institution in authorship.get("institutions", []) or []: + name = _clean_string(institution.get("display_name")) + if name and name not in affiliations: + affiliations.append(name) + + return authors, affiliations + + +def _openalex_abstract(raw_record: dict[str, Any]) -> str: + inverted_index = raw_record.get("abstract_inverted_index") + if not isinstance(inverted_index, dict): + return "" + + words: list[tuple[int, str]] = [] + for word, positions in inverted_index.items(): + for position in positions or []: + words.append((int(position), str(word))) + return " ".join(word for _, word in sorted(words)) + + +def transform_openalex_record(raw_record: dict[str, Any]) -> dict[str, Any]: + """Map one OpenAlex API/JSON record to the target schema.""" + record = _empty_record("OPENALEX") + biblio = raw_record.get("biblio") or {} + ids = raw_record.get("ids") or {} + authors, affiliations = _openalex_authors_and_affiliations(raw_record) + source_name = _openalex_source(raw_record) + concepts = raw_record.get("concepts") or raw_record.get("keywords") or [] + keywords = [ + _clean_string(item.get("display_name") or item.get("keyword")) + for item in concepts + if isinstance(item, dict) + ] + + values = { + "UT": raw_record.get("id"), + "DI": raw_record.get("doi"), + "PMID": ids.get("pmid"), + "TI": raw_record.get("display_name") or raw_record.get("title"), + "SO": source_name, + "JI": source_name, + "PY": raw_record.get("publication_year"), + "DT": raw_record.get("type"), + "LA": raw_record.get("language"), + "TC": raw_record.get("cited_by_count"), + "AB": _openalex_abstract(raw_record), + "VL": biblio.get("volume"), + "IS": biblio.get("issue"), + "BP": biblio.get("first_page"), + "EP": biblio.get("last_page"), + "AU": authors, + "AF": authors, + "C1": affiliations, + "CR": raw_record.get("referenced_works"), + "DE": keywords, + "ID": keywords, + } + + for tag, value in values.items(): + record[tag] = _cast(tag, value) + + return _finalize_record(record) + # ----------------------------------------------------------------------------- -# 4. VALIDAZIONE E SERIALIZZAZIONE +# 4. Already standardized XLSX/CSV rows # ----------------------------------------------------------------------------- -class ValidationError(Exception): pass -def validate_record(record: dict) -> None: - errors = [] - for tag, expected_type in COLUMN_TYPE_CONTRACTS.items(): - if tag not in record: - errors.append(f"[MISSING_COLUMN] Tag '{tag}' assente.") - continue - val = record[tag] - if not isinstance(val, expected_type): - errors.append(f"[TYPE_ERROR] Tag '{tag}': atteso {expected_type.__name__}, trovato {type(val).__name__}.") - if errors: - raise ValidationError("\n".join(errors)) +def _looks_standardized(raw_record: dict[str, Any]) -> bool: + target_columns = set(COLUMN_TYPE_CONTRACTS) + return "SR" in raw_record and len(target_columns.intersection(raw_record)) >= 10 + + +def transform_standardized_record(raw_record: dict[str, Any], default_db: str) -> dict[str, Any]: + """Re-load rows previously exported from this standardized schema.""" + record = _empty_record(default_db) + for tag in COLUMN_TYPE_CONTRACTS: + record[tag] = _cast(tag, raw_record.get(tag, record[tag])) + return _finalize_record(record) + + +def serialize_for_csv(record: dict[str, Any]) -> dict[str, Any]: + """Flatten list columns using the internal semicolon delimiter.""" + return { + tag: CSV_DELIMITER.join(value) if isinstance(value, list) else value + for tag, value in record.items() + } -def serialize_for_csv(record: dict) -> dict: - return {tag: (CSV_DELIMITER.join(str(i) for i in val) if isinstance(val, list) else val) for tag, val in record.items()} # ----------------------------------------------------------------------------- -# 5. ENTRY POINT PRINCIPALE +# 5. Public entry point # ----------------------------------------------------------------------------- + def convert2df( - raw_records: list[dict], + raw_records: list[dict[str, Any]], source: str = "OPENALEX", - file_type: str = ".csv", # Aggiunto parametro per format_functions + file_type: str = ".csv", validate: bool = True, for_csv_export: bool = False, ) -> pd.DataFrame: - """ - Trasforma una lista di record grezzi in un DataFrame standardizzato. - """ - # --- SONDE DI DEBUG (da rimuovere una volta risolto) --- - print("\n" + "="*40) - print("🎯 DEBUG CONVERT2DF CHIAMATO!") - print(f"🔹 Source ricevuta: '{source}'") - print(f"🔹 File type ricevuto: '{file_type}'") - print(f"🔹 Tipo di raw_records: {type(raw_records)}") - - if isinstance(raw_records, list): - print(f"🔹 Numero di record: {len(raw_records)}") - if len(raw_records) > 0: - print(f"🔹 Chiavi del primo record: {list(raw_records[0].keys())[:5]}...") - else: - print("⚠️ ERRORE: raw_records NON è una lista!") - print("="*40 + "\n") - # ------------------------------------------------------- - - source_upper = source.upper() - - # Routing dinamico per OpenAlex vs Format Functions - if source_upper == "OPENALEX" and raw_records: - first_record = raw_records[0] - if "authorships" not in first_record and ("author_display_names" in first_record or "publication_year" in first_record): - source_upper = "OPENALEX_CSV" - - standardized_records: list[dict] = [] - - for idx, raw in enumerate(raw_records): - try: - # Logica di Routing - if source_upper == "OPENALEX": - record = transform_openalex_record(raw, file_type) - elif source_upper == "OPENALEX_CSV": - record = transform_openalex_csv_record(raw, file_type) - else: - # Per Scopus, WoS, PubMed, Dimensions, Cochrane e Lens usa il Bridge - record = transform_via_format_functions(raw, source_upper, file_type) - except Exception as exc: - print(f"[ERROR] Trasformazione fallita per il record {idx}: {exc}") + """Convert raw records into the standardized Bibliometrix DataFrame.""" + source = source.upper().strip() + records: list[dict[str, Any]] = [] + + for raw_record in raw_records or []: + if not isinstance(raw_record, dict): continue - if validate: - try: - validate_record(record) - except ValidationError as ve: - print(f"[WARN] Validazione fallita per il record {idx}:\n{ve}") + record_source = str(raw_record.get("_bibliometrix_source", source)).upper().strip() + effective_file_type = _effective_file_type(raw_record, record_source, file_type) + + if _looks_standardized(raw_record): + record = transform_standardized_record(raw_record, default_db=record_source) + elif record_source == "OPENALEX": + record = transform_openalex_record(raw_record) + else: + record = transform_with_format_functions(raw_record, record_source, effective_file_type) - if for_csv_export: - record = serialize_for_csv(record) + if validate: + validate_record_contract(record, COLUMN_TYPE_CONTRACTS) - standardized_records.append(record) + records.append(serialize_for_csv(record) if for_csv_export else record) - column_order = list(COLUMN_TYPE_CONTRACTS.keys()) - if not standardized_records: + column_order = list(COLUMN_TYPE_CONTRACTS) + if not records: return pd.DataFrame(columns=column_order) - df = pd.DataFrame(standardized_records) + df = pd.DataFrame(records) + for tag, expected_type in COLUMN_TYPE_CONTRACTS.items(): + if tag not in df.columns: + default_value = _default(expected_type) + df[tag] = [[] for _ in range(len(df))] if expected_type is list else default_value - # Assicuriamo che tutte le colonne siano presenti - for col in column_order: - if col not in df.columns: - if for_csv_export: - df[col] = "" - else: - default_val = _TYPE_DEFAULTS[COLUMN_TYPE_CONTRACTS[col]] - df[col] = [[] for _ in range(len(df))] if isinstance(default_val, list) else default_val + df = df[column_order] + if validate and not for_csv_export: + validate_dataframe_contract(df, COLUMN_TYPE_CONTRACTS) - return df[column_order] \ No newline at end of file + return df diff --git a/www/services/validation.py b/www/services/validation.py index e69de29..55bbaca 100644 --- a/www/services/validation.py +++ b/www/services/validation.py @@ -0,0 +1,78 @@ +"""Validation helpers for the Bibliometrix ETL pipeline. + +The ETL target schema mirrors the Web of Science tags used by the analytical +functions. These helpers keep validation separate from extraction and +transformation, as required by the exam trace. +""" + +from __future__ import annotations + +from typing import Any + +import pandas as pd + + +class ValidationError(Exception): + """Raised when a standardized record or DataFrame violates the ETL contract.""" + + +MULTI_VALUE_COLUMNS: set[str] = {"AU", "AF", "C1", "CR", "DE", "ID"} + + +def _is_missing(value: Any) -> bool: + """Return True for values that must not survive in standardized output.""" + if value is None: + return True + if isinstance(value, float) and pd.isna(value): + return True + if isinstance(value, str) and value.strip().lower() in {"nan", "none", "null"}: + return True + return False + + +def validate_record_contract(record: dict[str, Any], contracts: dict[str, type]) -> None: + """Validate one standardized bibliographic record against type contracts.""" + errors: list[str] = [] + + for tag, expected_type in contracts.items(): + if tag not in record: + errors.append(f"[MISSING_COLUMN] Tag '{tag}' assente.") + continue + + value = record[tag] + if _is_missing(value): + errors.append(f"[NULL_VALUE] Tag '{tag}' contiene un valore nullo.") + continue + + if not isinstance(value, expected_type): + errors.append( + f"[TYPE_ERROR] Tag '{tag}': atteso {expected_type.__name__}, " + f"trovato {type(value).__name__}." + ) + + if errors: + raise ValidationError("\n".join(errors)) + + +def validate_dataframe_contract(df: pd.DataFrame, contracts: dict[str, type]) -> None: + """Validate the finalized standardized DataFrame.""" + errors: list[str] = [] + + missing_columns = [col for col in contracts if col not in df.columns] + if missing_columns: + errors.append(f"[MISSING_COLUMNS] Colonne assenti: {', '.join(missing_columns)}") + + for col in [c for c in contracts if c in df.columns]: + expected_type = contracts[col] + for idx, value in df[col].items(): + if _is_missing(value): + errors.append(f"[NULL_VALUE] Riga {idx}, colonna '{col}' contiene un nullo.") + continue + if not isinstance(value, expected_type): + errors.append( + f"[TYPE_ERROR] Riga {idx}, colonna '{col}': atteso " + f"{expected_type.__name__}, trovato {type(value).__name__}." + ) + + if errors: + raise ValidationError("\n".join(errors[:25]))