Your new experience awaits. Try the new design now and help us make it even better

BRIEF RESEARCH REPORT article

Front. Syst. Biol., 29 August 2025

Sec. Integrative Systems Microbiology

Volume 5 - 2025 | https://doi.org/10.3389/fsysb.2025.1544432

This article is part of the Research TopicInsights in Human and Medical Genomics 2024View all 8 articles

MicrobiomeKG: bridging microbiome research and host health through knowledge graphs

Updated
  • 1Institute for Systems Biology, Seattle, WA, United States
  • 2School of Electrical Engineering and Computer Science, Oregon State University, Corvallis, OR, United States

The microbiome represents a complex community of trillions of microorganisms residing in various body parts and plays critical roles in maintaining host health and wellbeing. Understanding the interactions between microbiota and their host offers valuable insights into potential strategies for promoting health, including microbiome-targeted interventions. We have created MicrobiomeKG, a knowledge graph for microbiome research, that bridges various taxa and microbial pathways with host health. This novel knowledge graph derives algorithmically generated knowledge assertions from the supplementary tables that support published microbiome papers. By identifying knowledge assertions from supplementary tables and expressing them as knowledge graphs, we are casting this valuable content into a format that is ideal for hypothesis generation. To address the high heterogeneity of study contexts, methodologies, and reporting standards, we leveraged neural networks to implement a standardized edge scoring system, which we use to perform centrality analyses. We present three example use cases: linking helminth infections with non-alcoholic fatty-liver disease via microbial taxa, exploring connections between the Alistipes genus and inflammation, and identifying the Bifidobacterium genus as the most central connection with attention deficit hyperactivity disorder. MicrobiomeKG is deployed for integrative analysis and hypothesis generation, both programmatically and via the Biomedical Data Translator ecosystem. By bridging data gaps and facilitating the discovery of new biological relationships, MicrobiomeKG will help advance personalized medicine through a deeper understanding of the microbial contributions to human health and disease mechanisms.

1 Introduction

The microbiome represents a complex community of trillions of microorganisms that reside in various body parts; it plays critical roles in maintaining host health and wellbeing. Emerging research has revealed that it influences numerous physiological processes, including digestion (Hills et al., 2019), aging (Wilmanski et al., 2021), and immune system function (Wiertsema et al., 2021). Conversely, the dysregulation of microbiota (dysbiosis) is associated with various diseases and negative health outcomes (e.g., inflammatory bowel disease, obesity, diabetes, and neurological disorders) (Hills et al., 2019). Hence, understanding the interactions between microbiota and their host offers valuable insights into potential strategies for promoting health, including microbiome-targeted interventions.

The NCATS Biomedical Data Translator (“Translator”) is a cutting-edge platform that aims to revolutionize biomedical research (Fecho et al., 2025). It integrates vast amounts of diverse data, from genes to clinical records, and uses advanced algorithms to uncover insights and accelerate discoveries. By harmonizing data and enabling semantic searches, Translator fosters a collaboration among researchers and facilitates the development of new treatments and therapies for various diseases. The Translator project uses knowledge graphs (KGs) to store the wealth of data required for reasoning in a compact, easy-to-parse, universal format. KGs organize data from multiple sources, capture information about entities of interest in a given domain or task, and display connections between them. KGs comprise nodes (things) and edges (relationships between things).

Some prominent projects have come close to reconciling microbiome data with Translator philosophy. BugSigDB (Geistlinger et al., 2024) serves as a comprehensive database of published microbial signatures but lacks content connecting the microbiome and host health, as well as a knowledge graph format. KG-Microbe (Santangelo et al., 2025) is an integratively analyzable knowledge graph linking prokaryotic data for phenotypic traits, taxonomy, chemicals, and environment descriptors, but is yet to include content linking the microbiome and host health. MicroPhenoDB (Yao et al., 2020) incorporates content linking the microbiome with host health but lacks a knowledge graph format. MetagenomicsKG (Ma et al., 2024) incorporates multiple content sources, inclusive of microbiome-host health knowledge, into an integratively analyzable knowledge graph. However, neither includes knowledge from supplementary tables in their findings.

Here, we present MicrobiomeKG, an integratively analyzable knowledge graph for microbiome research that bridges various taxa and microbial pathways with host health, built from algorithmically generated knowledge assertions from supplementary tables and deployed to Translator (Fecho et al., 2025).

2 Methods

2.1 Selection of publications and supplementary tables

The publications included in the initial version of MicrobiomeKG represent a manually selected, non-comprehensive set of recent and multiomic-driven scientific papers that (a) bridge microbiome and host health-related content and (b) include one or more supplementary tables with content that can be modeled as subject–predicate–object triples (e.g., taxon X affects disease Y) —the standard units of knowledge graphs.

2.2 Derivation of knowledge assertions

Leveraging relevant content from the supplementary tables, their descriptions, or the manuscript itself, we incorporated supplementary data contents into DataFrames using Python’s “polars” library and processed the content to derive assertions. We implemented a declarative data transformation system that paired a human-curated configuration file to each supplementary table; the configuration file specified the transformations required to extract the knowledge assertions. We used custom Python scripts to transform the DataFrames values in multiple ways via operations on individual values and on entire rows. Value transformations included mathematical transformations (e.g., exponentiating log-transformed p-values), extracting relevant content with regular expressions (e.g., extracting “Actinobacteria” from “kurilshikov_class.Actinobacteria.id.419”), and text cleaning (e.g., deriving “enterocloster bolteae” from “enterocloster_bolteae”). Row operations included filtering based on certain conditions (e.g., based on a given column’s Boolean value), dropping duplicates, dropping null values, and imposing cutoffs for filtering. Some edge attributes were manually computed when not provided but were reasonably inferred (e.g., total cohort size for meta-analyses where the cohort sizes for all initial analyses are made explicit). Such manual operations were performed only in the creation of the configuration files but not in post-processing the extracted knowledge assertions; this step was entirely automated and objective. We use a p-value cutoff of 0.1 so that the graph contained both statistically significant and not significant but highly suggestive edges.

2.3 Standardization of KG contents and structure

We standardized all edge predicates and node categories to Biolink ontology predicates and Biolink ontology classes (Unni et al., 2022). Furthermore, we mapped nodes to ontologies, representing them using compact universal resource identifiers (CURIEs) and normalizing them using BABEL (version of 2025/03/31)1. We dropped any knowledge assertions that failed to map subject or object to standard CURIEs. We then exported the output in Knowledge Graph Exchange (KGX) tab-separated values (TSV) format2.

2.4 Edge score computation

We developed a lightweight CPU-bound PyTorch neural network to regress a score for each edge in MicrobiomeKG to serve as a centralized semantic unifier, accounting for methodological differences in the underlying knowledge and enabling graph-wide edge interpretations and centrality analyses. To train the model and score edges, we selected 11 features denoting the significance of an edge, the sample size used to make an assertion, whether the significance of an edge was FDR-corrected, the strength of the assertion in an edge, the statistical test used to make an assertion, the type of natural language processing required to compute an edge, the database used to map an edge’s subject and object to a CURIE, and miscellaneous context comprising the notes and supplementary file caption fields. We cast numeric features to a standard normal distribution and label-encoded categorical features. We embedded free-text features with the pooler output of the dmis-lab/biobert-base-cased-v1.1 transformer from HuggingFace (Lee et al., 2020). These features were then passed through three linear layers delimited by LeakyReLU activation functions, with a dropout of 20% between the two largest linear layers to prevent overfitting, given the similarity of certain features. Finally, we leveraged a Softplus activation function after the last linear layer to ensure strictly positive scores. Our specific implementation of the model was trained on 300 manually scored edges, with unique combinations of all 11 features, from initial versions of MicrobiomeKG. During the training loop, we used a Huber Loss (σ = 1) implemented with SmoothL1Loss (β = 1) and an Adam optimizer (Kingma and Jimmy, 2017).

2.5 Centrality analysis

We calculated node centralities using four methods from the graph_tool Python library: node betweenness, eigenvector, Katz, and PageRank (Peixoto, 2023). For the Katz centrality method, we set alpha to 80% of the eigenvalue and beta to the eigenvector of the corresponding node. We treated edges with symmetric predicates (biolink:correlated_with and biolink:associated_with) symmetrically, and edges with asymmetric predicates (biolink:affects) directionally. We calculated the edge weights for these analyses using the scoring regression neural network described above.

2.6 Deployment

We deployed MicrobiomeKG as a public web application programming interface (API) using Translator Reasoner API (TRAPI) format3. We achieve this using Plover (Glen et al., 2025), an in-memory Python-based platform designed to host and serve Biolink-compliant knowledge graphs as TRAPI APIs. Plover enables one-hop queries of the underlying KG and automatically performs Biolink predicate/class hierarchical reasoning and concept subclass transitive chaining, among other tasks. The Plover MicrobiomeKG API is accessible for direct querying via its Translator deployment endpoint4.

3 Results

3.1 Overview of MicrobiomeKG

We developed Microbiome KG, a knowledge graph built for microbiome research, focusing on the interface between the microbiome and the health of the host. The current version (2.1.0) contains knowledge assertions crafted from 104 different supplementary tables (Supplementary Table S1) across 40 publications. The number of assertions derived from each publication varies over four orders of magnitude (Figure 1, Edge Count axis), reflecting the huge diversity in content and level of detail of the supplementary tables. The graph components derived from each publication may have multiple separate components, and therefore their unique edge counts may be lower than the expected theoretical minimum for connected graphs (Figure 1, blue dots and lower gray dashed line). Additionally, they may include edges sharing the same subject–predicate–object triple but found in different supplementary tables or using different analytical methods. Their total edge count may therefore exceed the theoretical maximum (Figure 1, orange dots and upper gray dashed line).

Figure 1
Scatter plot showing edge count versus node count on a logarithmic scale. Red dots represent edges, and blue dots signify unique edges. Data points generally follow an upward trend, with dashed lines illustrating possible boundaries.

Figure 1. Node, edge, and unique edge count of MicrobiomeKG subgraphs stratified by publication. Each publication is represented by two (potentially overlapping) dots: an orange dot denoting the total number of edges contributed by that publication and a blue dot denoting the number of unique (non-redundant) edges. A gray line connects corresponding dots when they are not next to each other. Dark gray dashed lines denote the theoretical maximum and minimum unique edge counts for a connected graph. These correspond, respectively, to n•(n-1)/2 (for a fully connected graph) and n-1 (for a graph lacking any cliques), where n denotes the number of nodes in the graph. The light gray dashed line denotes the theoretical minimum unique edge count (n/2) without requiring the graph to be connected.

The KG comprises 27,772 nodes (concepts) and 112,118 edges (assertions, of which 71,602 are statistically significant) that outline relationships between the microbiome and various host health factors, spanning 38 Biolink (Unni et al., 2022) ontology classes (most commonly, genes, taxa, proteins, and chemicals—Figure 2; Supplementary Table S2). Disease and SmallMolecule are the most central classes to the graph, followed by OrganismTaxon, PhenotypicFeature, ChemicalEntity, and Gene. Notably, class node count does not correlate to graph centrality. For example, diseases (with 90 nodes) are more central than proteins (with 3,311 nodes), despite a roughly 36-fold ratio in the number of proteins vs. diseases included in the KG (Figure 2). The KG uses eight different biolink ontology predicates, of which the most commonly used are biolink:associated_with and biolink:correlated_with. Taking into account symmetric predicates, there are 244 combinations of subject category, predicate, and object category (Supplementary Table S3), with the most common being “Protein correlated_with SmallMolecule” (22,513 counts).

Figure 2
Network graph showing interconnections between various biological concepts. Central concepts include \

Figure 2. Metagraph of MicrobiomeKG. Vertices represent Biolink ontology classes; numbers in labels represent the count of nodes in the graph that belong to that class. Each arc represents a Biolink ontology predicate (or type of assertion) between two vertices; arcs are designated independent of edge count and are directed. Some pairs of vertices are connected by multiple arcs.

3.2 Case study 1: helminthiasis and NAFLD

Through the combination of edges derived from publications already integrated into MicrobiomeKG (see table in Figure 3), we identified a hypothetical connection between helminthiasis (MONDO:0004664) and metabolic dysfunction-associated steatotic liver disease (also known as non-alcoholic fatty-liver disease, or NAFLD, MONDO:0013209). This connection is consistent with and supported by published observations (Raj et al., 2020; Lee et al., 2021; Liu et al., 2022).

Figure 3
Diagram illustrating the associations between Helminthiasis, Lactobacillales, Burkholderiales, and NAFLD (Non-alcoholic fatty liver disease). Helminthiasis is associated with both Lactobacillales (Gobert 2022) and Burkholderiales (Gobert 2022). Lactobacillales treats NAFLD (Lee 2021) and affects Burkholderiales (Gagnon 2023). Burkholderiales affects NAFLD. NAFLD is correlated with Burkholderiales (Yun 2019). A table below presents data on these associations, including subjects, predicates, objects, relationship strengths, p-values, methods, and authors.

Figure 3. Microbiome effects link helminth infections with non-alcoholic fatty liver disease (NAFLD). Arrows indicate relationships between the concepts (helminth infection, bacterial classes, NAFLD). Bidirectional arrows represent symmetrical relationships (associated with, correlated with). Thicker lines represent significant relationships, dashed arrows represent higher-level “treats” relationships. The source publication for each edge is indicated in green. IVW: inverse variance-weighted. ZIGMM: zero-inflated Gaussian mixture model. B–H: Benjamini–Hochberg. Bf: Bonferroni. NA: not applicable.

Helminthiasis is a global health burden, particularly in economically underdeveloped regions. Helminth colonization has been linked to changes in host gut microbiomes of increased diversity (Lee et al., 2014). More recent work identified significant alterations in host gut and saliva microbiota, driven by clinical helminth infections (Gobert et al., 2022), at multiple taxonomic levels. Figure 3 highlights the statistically significant association between helminth infections and gut bacteria of the orders Burkholderiales (adjusted p-value = 0.0026) and Lactobacillales (adjusted p-value ∼0), as reported in Supplementary Table S3 of Gobert et al. (2022).

Non-alcoholic fatty liver disease (NAFLD) is a highly prevalent form of progressive and chronic liver disease, with gradual accumulation of liver fibrosis and cirrhosis. The pathogenesis of NAFLD is complex and involves disrupted glycolipid metabolism, inflammation, and dysregulation of the gut microbiota (Han et al., 2023). Metagenomic studies have identified bacterial taxa positively or negatively associated with progression to advanced fibrosis in NAFLD (Loomba et al., 2017). Furthermore, Gagnon et al. (2023) used Mendelian randomization to establish the causal relationships between gut microbiota and multiple cardiometabolic traits and chronic diseases, including NAFLD (Gagnon et al., 2023). We highlight their finding that Class Betaproteobacteria affects (leads to) NAFLD, with a Benjamini–Hochberg adjusted p-value of <0.0218 as computed using the inverse variance weighted (IVW) method (their Supplementary Table S5) and adjusted p-value of <0.000076 calculated using the IVW radial method (their Supplementary Table S6). The association with order Burkholderiales within class Betaproteobacteria did not reach the significance threshold but was suggestive, with an adjusted p-value of <0.075 (their Supplementary Table S5). A significant negative connection between Burkholderiales (specifically, Parasutterella) and NAFLD was reported by Yun et al. (2019). Similarly, the relationship with Lactobacillus did not reach statistical significance (adjusted p-value <0.0664), but a mechanistic relationship is reported by Lee et al. (2021). Both Burkholderiales and Lactobacillales have potential application as therapeutics for NAFLD (Lee et al., 2021; Liu et al., 2022).

3.3 Case study 2: genus Alistipes and inflammation

Connections between dietary patterns and systemic inflammation have long been established, with diets that emphasize animal proteins leading to increased inflammation versus diets that emphasize fiber, fruit, and vegetables lowering it (Galland, 2010; Ricker and Haas, 2017). Both diet and inflammation have also been linked to the gut microbiome (David et al., 2014; Zhang et al., 2022; Mirhosseini et al., 2024). In particular, the genus Alistipes has been implicated in inflammation (Kaur et al., 2017; Parker et al., 2020), although this assertion is ultimately derived from work that does not support it (Rautio et al., 1997). More recent publications provide additional support for this connection (Wan et al., 2019; Rinninella et al., 2023).

We observed in MicrobiomeKG multiple connections between the genus Alistipes and entities associated with inflammation (Figure 4), including genes (Saa1, Ghr, Fcer1g, Tnfrsf11a, and Adora1), tryptophan-related metabolites (tryptophan and 3-formylindole), and short-chain fatty acids (including butyric acid, propanoic acid, and acetate). The edges supporting these connections are sourced from Forsyth et al. (2024), Nguyen et al. (2021) and Diener et al. (2022).

Figure 4
Diagram illustrating the impact of diet on inflammation through the gut bacterium Alistipes. An animal protein diet and a high-fiber diet influence Alistipes, which affects various metabolites and proteins. Red arrows and dashed lines link to pro-inflammatory effects, while blue arrows and dashed lines indicate neutral or beneficial effects. Studies by Forsyth (2024), Nguyen (2021), and Diener (2022) are noted. A table below provides detailed correlations, methods, and study references.

Figure 4. Metabolite and gene connections between the Alistipes genus and inflammation. Arrows indicate relationships between the concepts. Bidirectional arrows represent symmetrical relationships (associated with, correlated with). Dotted lines denote multi-step connections, not detailed here. The source publication for each edge is indicated in green. Red and blue denote, respectively, positive (both increase together) and negative (increase in one with decrease in the other) associations. The thinner line for Diener et al. (2022) represents the weaker effect size, and the color gradient for 3-formylindole denotes the inconsistency in directionality. SparCC: sparse correlation for compositional data. B–H: Benjamini–Hochberg. Bf: Bonferroni.

Nguyen et al. (2021) studied the gut microbial communities and host metabolome in early life (6 weeks and 12 months of age) in humans. While they did not discuss it, their supplementary data show that Alistipes was negatively correlated with butyric acid, propanoic acid (which has multiple anti-inflammatory derivative drugs), and acetate (Spearman correlations of −0.31, −0.366, and −0.225, respectively; Benjamini–Hochberg adjusted p-values of 0.002, 0.001, and 0.032, respectively). These three metabolites are short-chain fatty acids (SCFAs) known to have anti-inflammatory effects (Cook and Sellin, 1998; Hamer et al., 2008; Mishiro et al., 2013; Al-Lahham and Rezaee, 2019). The data also indicate a negative correlation with tryptophan (Spearman correlation of −0.28; Benjamini–Hochberg adjusted p-value of 0.005), an essential amino acid that plays a complex role in inflammation, both directly and through its metabolites (Sorgdrager et al., 2019; Seymour et al., 2024; Harris et al., 2024).

Diener et al. (2022) jointly correlated host genetic variants and gut microbiome with the blood metabolome in humans (Diener et al., 2022). Here, the genus Alistipes was again not mentioned in the manuscript, but their Supplementary Table S3 reports a weaker positive association with 3-formylindole (two-sided Wald test of 0.018; Bonferroni adjusted p-value of 0.0032). This metabolite is also anti-inflammatory (Luo et al., 2024).

Forsyth et al. (2024) studied the relationship between gut microbiome dysbiosis and inflammaging in mice. They reported that the prevalence of Alistipes was positively correlated with the expression levels of the genes Saa1 and Ghr and negatively correlated with Tnfrsf11a, Fcer1g, and Adora1 (see table in Figure 4). Serum amyloid A1 (Saa1) is an acute-phase response protein that rapidly increases during inflammation events (Ye and Sun, 2015; Chen et al., 2023). Knock-out of growth hormone receptor (Ghr) in mice leads to reduced inflammation (Masternak and Andrzej, 2012). Dysregulation and ablation of tumor necrosis factor receptor superfamily member 11A (TNFRSF11A) causes autoinflammatory disorders (Jéru et al., 2013; Papatheodorou et al., 2024). Hypomethylation of the Fc epsilon receptor I gamma gene (FCER1G), leading to its increased activity, was observed in patients with rheumatoid arthritis compared to control subjects (Podgórska et al., 2022). Similarly, reduced expression of the adenosine A1 receptor (Adora1) led to islet inflammation in a mouse model of Type 1 diabetes (Yip et al., 2013).

In summary, almost all the gene and metabolite associations identified in MicrobiomeKG connecting the Alistipes genus to inflammation are consistent with a pattern of increased Alistipes fraction correlating with increased inflammation, both by positively correlating with genes and analytes that are themselves positively associated with inflammation or through two negative associations (e.g., Fcer1g and butyric acid). The only exception is 3-formylindole, which is positively associated with Alistipes but negatively associated with inflammation; we note that the Alistipes–3-formylindole association has a very weak effect size, much lower than the other nine Alistipes associations discussed here (see table in Figure 4).

3.4 Graph standardization via edge scores

By design, MicrobiomeKG is a highly heterogeneous graph. It integrates knowledge from 290 unique analyses comprising many different methods. Thus, the statistics annotating each edge may often convey a variety of meanings. This poses a unique challenge for graph-wide edge interpretation and centrality analyses. Without a centralized semantic unifier, edges are difficult to compare, particularly at scale, hindering downstream analysis. Furthermore, the complex non-linear nature of how each edge’s features contribute to its accuracy and utility precludes reasonable algorithmic construction of such semantic unifiers (e.g., algorithmic quantifications accounting for how methods affect relationship strength are often weak, especially as the number of different methods scales). However, given the ability to quantify an edge’s accuracy and utility on a small scale, neural networks present a unique and highly scalable solution to this centralized semantic unifier problem. We therefore implemented and trained a neural network (see “Methods”) and computed a score for each edge in MicrobiomeKG. The resulting distribution of scores (Supplementary Figure S1) is approximately bimodal, with each mode roughly corresponding to Boolean edge significance. The softplus activation function in the scoring network implies that theoretical scores should be non-negative (i.e., ranging from 0 to positive infinity). The observed scores for 112,118 edges range from 0 to ∼178, with an average score of ∼74 and very few outliers (Supplementary Figure S1). We then used these scores as edge weights to compute centrality metrics (see “Methods”, and case study 3 below).

3.5 Case study 3: ADHD and Bifidobacterium

We computed the most central organism taxa directly connected with a collection of diseases. Firstly, we iterated through each disease in MicrobiomeKG, creating a subgraph comprising the disease and its direct organism taxon neighbors. We then compared the various node centralities of the taxon nodes in these subgraphs, selecting the most central node for interpretation. This analysis identified 39 diseases connected to microbial taxa by four different centrality algorithms (Supplementary Table S4) and only taking into account edge directionality, weighted edges, and direct disease–taxon relationships. In some cases, different centrality metrics highlighted different taxa for the same disease, but frequently the same taxon was identified by most or all centrality methods.

In this analysis, the genus Bifidobacterium was the most central organism taxon connected to attention-deficit hyperactivity disorder (ADHD) in MicrobiomeKG across all four computed centralities. The relatively high node betweenness centrality of this genus emphasizes its role as the primary bridge connecting the ADHD node to the rest of the graph. Strengthening this narrative, Bifidobacterium’s sizable Katz and eigenvector centralities suggest that the node is strongly influential throughout MicrobiomeKG. Furthermore, the taxon is strongly recursively connected, as indicated by its PageRank centrality (Supplementary Table S4).

This central role that Bifidobacterium plays in ADHD is also reflected in the current microbiome-ADHD literature. The genus is described as one of the greatest mysteries in the field, with its relative abundance unpredictably fluctuating with age in different populations with ADHD (Cickovski et al., 2023). Furthermore, supplementation with Bifidobacterium bifidum (Bf-688) has yielded promising results in reducing inattentive and hyperactivity/impulsivity in clinical trials (Wang et al., 2022; Wang et al., 2024).

4 Discussion

We here present MicrobiomeKG, a novel knowledge graph connecting the microbiome and host health, and three case studies highlighting its application. MicrobiomeKG derives knowledge assertions drawn from supplementary materials published together with microbiome papers. Unlike the standard application of natural language processing of paper abstracts and/or full texts of papers, which is perforce limited to content their authors decided to discuss in the text (and, potentially, the main-text tables), content extraction from the supplementary tables may capture a significantly larger corpus of knowledge assertions not included in the manuscript for a variety of reasons, including considerations of statistical significance, space limitations, and decisions about focus of narrative. In some cases, the supplementary tables provide precise numerical values for content included in the manuscript narrative in a simplified or approximate form, or perhaps in graphical form in embedded figures, which pose additional data extraction challenges. By table-mining the supplementary materials, we are thus able to maximize knowledge extraction while minimizing reproduction errors. For example, most of the edges underlying case studies are not in their papers’ main text, tables, or figures, yet they are readily derivable from the supplementary data tables. Supporting materials from publications have been used to extract gene sets (Clarke et al., 2024); here, we applied them to extract structured knowledge assertions. Previous efforts have already extracted knowledge from the full text of published manuscripts via natural language processing or through wholesale inclusion in the training of large language models (LLMs). MicrobiomeKG is designed to supplement (and be integrated with) such existing knowledge bases, not to replace them or be redundant with them.

There is a need in the field for work that validates assertions by comparing results from different datasets and identifying inconsistencies in the assertions reported by different studies, as collected in large repositories like MGnify (Mitchell et al., 2020). A goal of the current project is to facilitate such efforts by collecting and standardizing the representation of such assertions as made available in the supplementary materials of published papers. Even after standardizing the semantic representation of the assertions, the heterogeneity of contexts, methodologies, and reporting standards used in the different studies pose an additional challenge for the integration, comparison, and downstream analysis of the edges in the knowledge graph. We thus developed an approach to scoring edges into a standardized framework. We achieved this by applying neural networks to integrate multiple aspects of publication and edge metadata such as sample size, statistical test and correction methods, and context terms derived from the manuscript itself. We demonstrated the use of such standardized edge scores to compute centrality metrics (Muhiuddin et al., 2023), which we then used to rank hypotheses within MicrobiomeKG subgraphs of interest, such as which organism taxa are directly related to specific diseases.

The resulting KG is available for direct download and is also deployed via Plover (Glen et al., 2025) and integrated with other KGs through the Translator ecosystem, which already incorporates assertions derived from other knowledge bases. Use of the KGX exchange format6, Biolink model (Unni et al., 2022) categories and predicates, and the standardized normalization of all terms into CURIEs, ensures the interoperability of the resource. This can be easily transformed into other knowledge representation and exchange formats, like BioRDF (Nolin et al., 2010) and integrated with cross-referenced data from other microbiome resources like MGnify (Mitchell et al., 2020).

A limitation of MicrobiomeKG is its current scope. The version of the graph presented here contains 27,772 nodes and 112,118 edges sourced from a set of 40 microbiome papers (Figure 1). Disbiome, a prior effort that manually curates information linking the microbiome with a disease, included assertions sourced from approximately 500 papers upon publication (Janssens et al., 2018) and then expanded to 1,179 papers—a much larger collection than currently included in MicrobiomeKG. On the other hand, that manual curation effort yielded 10,866 assertions linking 1,615 organisms to 375 diseases, which is a very limited number compared to the node and edge count in MicrobiomeKG. Likewise, the MGnify resource includes over 3,500 publicly available projects connected with 1,785 microbiome publications (Mitchell et al., 2020), although the scope is much wider than the microbiome-to-disease domain. To scale up the scope of MicrobiomeKG, we plan to implement automated extraction methods to further mine supplemental data for assertions on microbiome and host health while simultaneously expanding the types of multiomic analysis and data types to be included in the graph. In the long-term, we plan to leverage a collection of rule-based algorithms, natural language processing, artificial intelligence, and machine learning methods (including large language models) to optimize data collection and scalability and to improve the metadata associated with the knowledge assertions (Nassar et al., 2022).

Supplementary materials can be very difficult to use (Pop and Salzberg, 2015). By identifying knowledge assertions from supplementary tables and expressing them as knowledge graphs, we are casting this valuable content into a format that is ideal for hypothesis generation. MicrobiomeKG ultimately brings novel nodes and edges to Translator that foster previously unexplored connections between the microbiome and varied biomedical data. We expect that MicrobiomeKG will be the first of many knowledge graphs built from knowledge assertions derived from the trove of untapped supplementary tables. In the context of graph machine learning, such extended knowledge extraction will prove advantageous for training microbiome, biological, biomedical, and host health AI/ML models (Tiddi and Schlobach, 2022). As the field evolves, we foresee the integration of more diverse datasets into knowledge graphs, enhancing the richness and applicability of these resources. This expansion will not only strengthen the predictive power of AI/ML models but also enable data-driven insights into the complex interplay between the microbiome and host health. For example, graph embedding could integrate MicrobiomeKG’s expert-derived insights within graph neural networks, capturing microbial relationships and functional associations to enable downstream analyses such as phenotype classification, differential analysis, and microbial network exploration (Ma et al., 2024). Ultimately, by bridging data gaps and facilitating the discovery of new biological relationships, MicrobiomeKG will help advance personalized medicine through a deeper understanding of microbial contributions to human health and disease mechanisms.

Data availability statement

The original contributions presented in the study are included in the article/Supplementary Material; further inquiries can be directed to the corresponding author.

Author contributions

SG: Data curation, Investigation, Methodology, Software, Validation, Writing – original draft, Writing – review and editing. AG: Methodology, Software, Validation, Writing – review and editing. GG: Conceptualization, Data curation, Funding acquisition, Investigation, Methodology, Project administration, Supervision, validation, Writing – original draft, Writing – review and editing.

Funding

The author(s) declare that financial support was received for the research and/or publication of this article. This work was supported by the National Science Foundation (Award #2150265) and by the National Center for Advancing Translational Sciences, Biomedical Translator Program (Other Transaction Awards OT2TR003443, OT2TR003428, and OT2TR005706). Any opinions expressed in this document are those of the Translator community at large and do not necessarily reflect the views of NCATS, individual Translator team members, or affiliated organizations and institutions.

Acknowledgments

We wish to thank Jared C. Roach for advice and discussion.

Conflict of interest

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

The author(s) declared that they were an editorial board member of Frontiers, at the time of submission. This had no impact on the peer review process and the final decision.

Generative AI statement

The author(s) declare that no Generative AI was used in the creation of this manuscript.

Publisher’s note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

Supplementary material

The Supplementary Material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fsysb.2025.1544432/full#supplementary-material

Footnotes

1https://github.com/TranslatorSRI/Babel

2https://github.com/biolink/kgx

3https://github.com/NCATSTranslator/ReasonerAPI

4multiomics.transltr.io/mbkp

6https://github.com/biolink/kgx

References

Al-Lahham, S., and Rezaee, F. (2019). Propionic acid counteracts the inflammation of human subcutaneous adipose Tissue: a new avenue for drug development. Daru J. Fac. Pharm. Tehran Univ. Med. Sci. 27 (2), 645–652. doi:10.1007/s40199-019-00294-z

PubMed Abstract | CrossRef Full Text | Google Scholar

Chen, R., Chen, Q., Zheng, J., Zeng, Z., Chen, M., Li, L., et al. (2023). Serum amyloid protein A in inflammatory bowel disease: from Bench to bedside. Cell Death Discov. 9 (1), 154–10. doi:10.1038/s41420-023-01455-5

PubMed Abstract | CrossRef Full Text | Google Scholar

Cickovski, T., Mathee, K., Aguirre, G., Tatke, G., Hermida, A., Narasimhan, G., et al. (2023). Attention Deficit hyperactivity disorder (ADHD) and the gut microbiome: an Ecological Perspective. PLOS ONE 18 (8), e0273890. doi:10.1371/journal.pone.0273890

PubMed Abstract | CrossRef Full Text | Google Scholar

Clarke, D. J. B., Marino, G. B., Deng, E. Z., Xie, Z., Evangelista, J. E., and Ma’ayan, A. (2024). Rummagene: Massive mining of gene sets from supporting materials of biomedical research publications. Commun. Biol. 7 (1), 482. doi:10.1038/s42003-024-06177-7

PubMed Abstract | CrossRef Full Text | Google Scholar

Cook, S. I., and Sellin, J. H. (1998). Review article: short chain fatty acids in health and disease. Alimentary Pharmacol. and Ther. 12 (6), 499–507. doi:10.1046/j.1365-2036.1998.00337.x

PubMed Abstract | CrossRef Full Text | Google Scholar

David, L. A., Maurice, C. F., Carmody, R. N., Gootenberg, D. B., Button, J. E., Wolfe, B. E., et al. (2014). Diet rapidly and Reproducibly Alters the human gut microbiome. Nature 505 (7484), 559–563. doi:10.1038/nature12820

PubMed Abstract | CrossRef Full Text | Google Scholar

Diener, C., Dai, C. L., Wilmanski, T., Baloni, P., Smith, B., Rappaport, N., et al. (2022). Genome–microbiome interplay provides insight into the Determinants of the human blood metabolome. Nat. Metab. 4 (11), 1560–1572. doi:10.1038/s42255-022-00670-1

PubMed Abstract | CrossRef Full Text | Google Scholar

Fecho, K., Glusman, G., Baranzini, S. E., Bizon, C., Brush, M., Byrd, W., et al. (2025). Announcing the biomedical data translator: initial public release. Clin. Transl. Sci. 18 (7), e70284. doi:10.1111/cts.70284

PubMed Abstract | CrossRef Full Text | Google Scholar

Forsyth, C. B., Shaikh, M., Engen, P. A., Preuss, F., Naqib, A., Palmen, B. A., et al. (2024). Evidence that the Loss of colonic anti-microbial Peptides may promote Dysbiotic Gram-negative inflammaging-associated bacteria in aging mice. Front. Aging 5 (March), 1352299. doi:10.3389/fragi.2024.1352299

PubMed Abstract | CrossRef Full Text | Google Scholar

Gagnon, E., Mitchell, P. L., Manikpurage, H. D., Abner, E., Taba, N., Esko, T., et al. (2023). Impact of the gut microbiota and associated metabolites on cardiometabolic traits, chronic diseases and human Longevity: a Mendelian randomization study. J. Transl. Med. 21 (1), 60. doi:10.1186/s12967-022-03799-5

PubMed Abstract | CrossRef Full Text | Google Scholar

Galland, L. (2010). Diet and inflammation. Nutr. Clin. Pract. 25 (6), 634–640. doi:10.1177/0884533610385703

PubMed Abstract | CrossRef Full Text | Google Scholar

Geistlinger, L., Mirzayi, C., Zohra, F., Azhar, R., Elsafoury, S., Grieve, C., et al. (2024). BugSigDB captures patterns of differential abundance across a Broad range of host-associated microbial signatures. Nat. Biotechnol. 42 (5), 790–802. doi:10.1038/s41587-023-01872-y

PubMed Abstract | CrossRef Full Text | Google Scholar

Glen, A. K., Deutsch, E. W., and Ramsey, S. A. (2025). PloverDB: a high-performance platform for serving biomedical knowledge graphs as standards-compliant web APIs. Bioinformatics 41 (7), btaf380. doi:10.1093/bioinformatics/btaf380

PubMed Abstract | CrossRef Full Text | Google Scholar

Gobert, G. N., Atkinson, L. E., Lokko, A., Yoonuan, T., Phuphisut, O., Poodeepiyasawat, A., et al. (2022). Clinical helminth infections alter host gut and saliva microbiota. PLOS Neglected Trop. Dis. 16 (6), e0010491. doi:10.1371/journal.pntd.0010491

PubMed Abstract | CrossRef Full Text | Google Scholar

Hamer, H. M., Jonkers, D., Venema, K., Vanhoutvin, S., Troost, F. J., and Brummer, R.-J. (2008). Review article: the role of butyrate on colonic function. Alimentary Pharmacol. and Ther. 27 (2), 104–119. doi:10.1111/j.1365-2036.2007.03562.x

PubMed Abstract | CrossRef Full Text | Google Scholar

Han, H., Jiang, Y., Wang, M., Melaku, M., Liu, L., Zhao, Y., et al. (2023). Intestinal dysbiosis in Nonalcoholic fatty liver disease (NAFLD): focusing on the gut–liver Axis. Crit. Rev. Food Sci. Nutr. 63 (12), 1689–1706. doi:10.1080/10408398.2021.1966738

PubMed Abstract | CrossRef Full Text | Google Scholar

Harris, D. M. M., Szymczak, S., Schuchardt, S., Labrenz, J., Tran, F., Welz, L., et al. (2024). Tryptophan Degradation as a systems Phenomenon in inflammation – an analysis across 13 chronic inflammatory diseases. eBioMedicine 102 (April), 105056. doi:10.1016/j.ebiom.2024.105056

PubMed Abstract | CrossRef Full Text | Google Scholar

Hills, R., Pontefract, B., Mishcon, H., Black, C., Sutton, S., and Theberge, C. (2019). Gut microbiome: Profound Implications for diet and disease. Nutrients 11 (7), 1613. doi:10.3390/nu11071613

PubMed Abstract | CrossRef Full Text | Google Scholar

Janssens, Y., Nielandt, J., Bronselaer, A., Debunne, N., Verbeke, F., Wynendaele, E., et al. (2018). Disbiome database: linking the microbiome to disease. BMC Microbiol. 18 (1), 50. doi:10.1186/s12866-018-1197-5

PubMed Abstract | CrossRef Full Text | Google Scholar

Jéru, I., Cochet, E., Duquesnoy, P., Hentgen, V., Copin, B., Mitjavila-Garcia, M., et al. (2013). OR13-003 - TNFRSF11A molecular defects cause autoinflammatory disorders. Pediatr. Rheumatology Online J. 11 (Suppl. 1), A265. doi:10.1186/1546-0096-11-S1-A265

CrossRef Full Text | Google Scholar

Kaur, H., Das, C., and Mande, S. S. (2017). In silico analysis of Putrefaction pathways in bacteria and its implication in Colorectal Cancer. Front. Microbiol. 8 (November), 2166. doi:10.3389/fmicb.2017.02166

PubMed Abstract | CrossRef Full Text | Google Scholar

Kingma, D. P., and Jimmy, Ba. (2017). Adam: a method for Stochastic optimization. arXiv:1412.6980. Preprint, arXiv. doi:10.48550/arXiv.1412.6980

CrossRef Full Text | Google Scholar

Lee, S. C., Mei, S. T., Lim, Y. A. L., Choy, S. H., Kurtz, Z. D., Cox, L. M., et al. (2014). Helminth colonization is associated with increased diversity of the gut microbiota. PLoS Neglected Trop. Dis. 8 (5), e2880. doi:10.1371/journal.pntd.0002880

CrossRef Full Text | Google Scholar

Lee, J., Yoon, W., Kim, S., Kim, D., Kim, S., So, C. H., et al. (2020). BioBERT: a Pre-trained biomedical language representation model for biomedical text mining. Bioinformatics 36 (4), 1234–1240. doi:10.1093/bioinformatics/btz682

PubMed Abstract | CrossRef Full Text | Google Scholar

Lee, Na Y., Shin, M. J., Youn, Gi S., Yoon, S. J., Choi, Y. R., Kim, H. S., et al. (2021). Lactobacillus Attenuates progression of Nonalcoholic fatty liver disease by lowering Cholesterol and Steatosis. Clin. Mol. Hepatology 27 (1), 110–124. doi:10.3350/cmh.2020.0125

PubMed Abstract | CrossRef Full Text | Google Scholar

Liu, X., Jiang, Y., Ye, J., and Wang, X. (2022). Helminth infection and helminth-derived products: a novel therapeutic option for non-alcoholic fatty liver disease. Front. Immunol. 13 (October), 999412. doi:10.3389/fimmu.2022.999412

PubMed Abstract | CrossRef Full Text | Google Scholar

Loomba, R., Seguritan, V., Li, W., Long, T., Klitgord, N., Bhatt, A., et al. (2017). Gut microbiome-based Metagenomic signature for non-Invasive Detection of advanced fibrosis in human Nonalcoholic fatty liver disease. Cell Metab. 25 (5), 1054–1062. doi:10.1016/j.cmet.2017.04.001

PubMed Abstract | CrossRef Full Text | Google Scholar

Luo, W., Meng, J., Yu, X.-H., Zhang, Z.-Z., Wang, G., and He, J. (2024). Indole-3-Carboxaldehyde Inhibits inflammatory response and Lipid accumulation in Macrophages through the miR-1271-5p/HDAC9 pathway. J. Cell. Mol. Med. 28 (24), e70263. doi:10.1111/jcmm.70263

PubMed Abstract | CrossRef Full Text | Google Scholar

Ma, C., Liu, S., and Koslicki, D. (2024). MetagenomicKG: a knowledge graph for Metagenomic applications. Bioinformatics, 2024.03.14.585056. doi:10.1101/2024.03.14.585056

PubMed Abstract | CrossRef Full Text | Google Scholar

Masternak, M. M., and Andrzej, B. (2012). Growth hormone, inflammation and aging. Pathobiology Aging and Age Relat. Dis. 2 (April), 17293. doi:10.3402/pba.v2i0.17293

CrossRef Full Text | Google Scholar

Mirhosseini, S. M., Mahdavi, A., Yarmohammadi, H., Razavi, A., Rezaei, M., Soltanipur, M., et al. (2024). What is the link between the dietary inflammatory Index and the gut microbiome? A Systematic review. Eur. J. Nutr. 63 (7), 2407–2419. doi:10.1007/s00394-024-03470-3

PubMed Abstract | CrossRef Full Text | Google Scholar

Mishiro, T., Kusunoki, R., Otani, A., Ansary, M. M. U., Tongu, M., Harashima, N., et al. (2013). Butyric acid Attenuates Intestinal inflammation in Murine DSS-Induced colitis model via milk fat globule-EGF factor 8. Lab. Investig. 93 (7), 834–843. doi:10.1038/labinvest.2013.70

PubMed Abstract | CrossRef Full Text | Google Scholar

Mitchell, A. L., Almeida, A., Beracochea, M., Boland, M., Burgin, J., Cochrane, G., et al. (2020). MGnify: the microbiome analysis resource in 2020. Nucleic Acids Res. 48 (D1), D570–D578. doi:10.1093/nar/gkz1035

PubMed Abstract | CrossRef Full Text | Google Scholar

Muhiuddin, G., Samanta, S., Aljohani, A. F., and Alkhaibari, A. M. (2023). A study on graph centrality Measures of different diseases due to DNA Sequencing. Mathematics 11 (14), 3166. doi:10.3390/math11143166

CrossRef Full Text | Google Scholar

Nassar, M., Rogers, A. B., Talo’, F., Sanchez, S., Shafique, Z., Finn, R. D., et al. (2022). A machine learning framework for discovery and Enrichment of metagenomics metadata from open access publications. GigaScience 11 (August), giac077. doi:10.1093/gigascience/giac077

PubMed Abstract | CrossRef Full Text | Google Scholar

Nguyen, Q. P., Karagas, M. R., Madan, J. C., Dade, E., Palys, T. J., Morrison, H. G., et al. (2021). Associations between the gut microbiome and metabolome in early life. BMC Microbiol. 21 (1), 238. doi:10.1186/s12866-021-02282-3

PubMed Abstract | CrossRef Full Text | Google Scholar

Nolin, M.-A., Corbeil, J., Lamontagne, L., and Dumontier, M. (2010). Bio2RDF: Convert, provide and reuse. Nat. Preced. (October 20), 1. doi:10.1038/npre.2010.5060.1

CrossRef Full Text | Google Scholar

Papatheodorou, V., Gerodimos, C., Dimitrakopoulos, A., Lada, E., Tektonidou, M. G., Germenis, A., et al. (2024). TNFRSF11A variants contribute to systemic autoinflammatory diseases: a case series of 12 patients. Seminars Arthritis Rheumatism 68 (October), 152505. doi:10.1016/j.semarthrit.2024.152505

PubMed Abstract | CrossRef Full Text | Google Scholar

Parker, B. J., Wearsch, P. A., Veloo, A. C. M., and Rodriguez-Palacios, A. (2020). The genus Alistipes: gut bacteria with Emerging implications to inflammation, Cancer, and mental health. Front. Immunol. 11 (June), 906. doi:10.3389/fimmu.2020.00906

PubMed Abstract | CrossRef Full Text | Google Scholar

Peixoto, T. P. (2023). Descriptive vs. Inferential community Detection in networks: Pitfalls, Myths and Half-Truths. Elem. Struct. Dyn. Complex Netw. doi:10.1017/9781009118897

CrossRef Full Text | Google Scholar

Podgórska, D., Cieśla, M., and Kolarz, B. (2022). FCER1G gene Hypomethylation in patients with rheumatoid arthritis. J. Clin. Med. 11 (16), 4664. doi:10.3390/jcm11164664

PubMed Abstract | CrossRef Full Text | Google Scholar

Pop, M., and Salzberg, S. L. (2015). Use and mis-use of supplementary material in science publications. BMC Bioinforma. 16 (1), 237. doi:10.1186/s12859-015-0668-z

PubMed Abstract | CrossRef Full Text | Google Scholar

Raj, D., Tomar, B., Lahiri, A., and Mulay, S. R. (2020). The gut-liver-kidney Axis: novel regulator of fatty liver associated chronic kidney disease. Pharmacol. Res. 152 (February), 104617. doi:10.1016/j.phrs.2019.104617

PubMed Abstract | CrossRef Full Text | Google Scholar

Rautio, M., Lönnroth, M., Saxén, H., Nikku, R., Väisänen, M. L., Finegold, S. M., et al. (1997). Characteristics of an unusual Anaerobic pigmented gram-negative Rod isolated from normal and inflamed Appendices. Clin. Infect. Dis. 25 (Suppl. 2), S107–S110. doi:10.1086/516210

PubMed Abstract | CrossRef Full Text | Google Scholar

Ricker, M. A., and Haas, W. C. (2017). Anti-inflammatory diet in clinical Practice: a review. Nutr. Clin. Pract. 32 (3), 318–325. doi:10.1177/0884533617700353

PubMed Abstract | CrossRef Full Text | Google Scholar

Rinninella, E., Tohumcu, E., Raoul, P., Fiorani, M., Cintoni, M., Mele, M. C., et al. (2023). The role of diet in Shaping human gut microbiota. Best Pract. and Res. Clin. Gastroenterology 62–63 (February), 101828. doi:10.1016/j.bpg.2023.101828

PubMed Abstract | CrossRef Full Text | Google Scholar

Santangelo, B. E., Hegde, H., Harry Caufield, J., Reese, J., Kliegr, T., Hunter, L. E., et al. (2025). KG-microbe - Building Modular and scalable knowledge graphs for microbiome and microbial Sciences. bioRxiv. doi:10.1101/2025.02.24.639989

CrossRef Full Text | Google Scholar

Seymour, B. J., Trent, B., Allen, B. E., Berlinberg, A. J., Tangchittsumran, J., Jubair, W. K., et al. (2024). Microbiota-dependent Indole production Stimulates the development of Collagen-Induced arthritis in mice. J. Clin. Investigation 134 (4), e167671. doi:10.1172/JCI167671

PubMed Abstract | CrossRef Full Text | Google Scholar

Sorgdrager, F. J. H., Naudé, P. J. W., Kema, I. P., Nollen, E. A., and De Deyn, P. P. (2019). Tryptophan metabolism in inflammaging: from Biomarker to therapeutic Target. Front. Immunol. 10 (October), 2565. doi:10.3389/fimmu.2019.02565

PubMed Abstract | CrossRef Full Text | Google Scholar

Tiddi, I., and Schlobach, S. (2022). Knowledge graphs as tools for Explainable machine learning: a Survey. Artif. Intell. 302 (January), 103627. doi:10.1016/j.artint.2021.103627

CrossRef Full Text | Google Scholar

Unni, D. R., Moxon, S. A. T., Bada, M., Brush, M., Bruskiewich, R., Caufield, J. H., et al. (2022). Biolink model: a universal Schema for knowledge graphs in clinical, biomedical, and Translational science. Clin. Transl. Sci. 15 (8), 1848–1855. doi:10.1111/cts.13302

PubMed Abstract | CrossRef Full Text | Google Scholar

Wan, Y., Wang, F., Yuan, J., Li, J., Jiang, D., Zhang, J., et al. (2019). Effects of dietary fat on gut microbiota and faecal metabolites, and their relationship with cardiometabolic risk factors: a 6-month randomised controlled-feeding trial. Gut 68 (8), 1417–1429. doi:10.1136/gutjnl-2018-317609

PubMed Abstract | CrossRef Full Text | Google Scholar

Wang, L.-J., Yang, C. Y., Kuo, H. C., Chou, W. J., Tsai, C. S., and Lee, S.-Yu (2022). Effect of Bifidobacterium bifidum on clinical Characteristics and gut microbiota in Attention-deficit/hyperactivity disorder. J. Personalized Med. 12 (2), 227. doi:10.3390/jpm12020227

PubMed Abstract | CrossRef Full Text | Google Scholar

Wang, L.-J., Tsai, C.-S., Chou, W.-J., Kuo, H. C., Huang, Y. H., Lee, S. Y., et al. (2024). Add-on Bifidobacterium bifidum supplement in children with Attention-deficit/hyperactivity disorder: a 12-Week randomized double-Blind placebo-controlled clinical trial. Nutrients 16 (14), 2260. doi:10.3390/nu16142260

PubMed Abstract | CrossRef Full Text | Google Scholar

Wiertsema, S. P., Van Bergenhenegouwen, J., Garssen, J., and Knippels, L. M. J. (2021). The interplay between the gut microbiome and the immune system in the context of infectious diseases throughout life and the role of nutrition in optimizing treatment strategies. Nutrients 13 (3), 886. doi:10.3390/nu13030886

PubMed Abstract | CrossRef Full Text | Google Scholar

Wilmanski, T., Diener, C., Rappaport, N., Patwardhan, S., Wiedrick, J., Lapidus, J., et al. (2021). Gut microbiome pattern reflects Healthy ageing and predicts Survival in humans. Nat. Metab. 3 (2), 274–286. doi:10.1038/s42255-021-00348-0

PubMed Abstract | CrossRef Full Text | Google Scholar

Yao, G., Zhang, W., Yang, M., Yang, H., Wang, J., Zhang, H., et al. (2020). MicroPhenoDB associates Metagenomic data with pathogenic microbes, microbial Core genes, and human disease phenotypes. Genomics, Proteomics and Bioinforma. 18 (6), 760–772. doi:10.1016/j.gpb.2020.11.001

PubMed Abstract | CrossRef Full Text | Google Scholar

Ye, R. D., and Sun, L. (2015). Emerging functions of serum amyloid A in inflammation. J. Leukoc. Biol. 98 (6), 923–929. doi:10.1189/jlb.3VMR0315-080R

PubMed Abstract | CrossRef Full Text | Google Scholar

Yip, L., Taylor, C., Whiting, C. C., and Garrison Fathman, C. (2013). Diminished adenosine A1 receptor expression in pancreatic α-Cells may contribute to the pathology of type 1 diabetes. Diabetes 62 (12), 4208–4219. doi:10.2337/db13-0614

PubMed Abstract | CrossRef Full Text | Google Scholar

Yun, Y., Kim, H. N., Lee, E. J., Ryu, S., Chang, Y., Shin, H., et al. (2019). Fecal and blood microbiota Profiles and presence of nonalcoholic fatty liver disease in obese versus lean subjects. PLOS ONE 14 (3), e0213692. doi:10.1371/journal.pone.0213692

PubMed Abstract | CrossRef Full Text | Google Scholar

Zhang, F., Fan, D., Huang, J. L., and Zuo, T. (2022). The gut microbiome: linking dietary fiber to inflammatory diseases. Med. Microecology 14 (December), 100070. doi:10.1016/j.medmic.2022.100070

CrossRef Full Text | Google Scholar

Keywords: systems biology, data integration, supplementary data, table mining, knowledge representation, health informatics, hypothesis generation, neural networks

Citation: Goetz SL, Glen AK and Glusman G (2025) MicrobiomeKG: bridging microbiome research and host health through knowledge graphs. Front. Syst. Biol. 5:1544432. doi: 10.3389/fsysb.2025.1544432

Received: 26 December 2024; Accepted: 01 August 2025;
Published: 29 August 2025.

Edited by:

Maxim B. Freidin, King’s College London, United Kingdom

Reviewed by:

Maaly Nassar, SciBite, United Kingdom
Rhea Aqueel, Forman Christian College, Pakistan

Copyright © 2025 Goetz, Glen and Glusman. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Gwênlyn Glusman, Z2dsdXNtYW5AaXNic2NpZW5jZS5vcmc=

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.