<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Will Ware</title>
    <description>The latest articles on Forem by Will Ware (@will_ware_dae793289d796d0).</description>
    <link>https://forem.com/will_ware_dae793289d796d0</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1750986%2Fcdc3a499-b840-4b8b-88e1-dc909e61a625.png</url>
      <title>Forem: Will Ware</title>
      <link>https://forem.com/will_ware_dae793289d796d0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/will_ware_dae793289d796d0"/>
    <language>en</language>
    <item>
      <title>Medical Literature Knowledge Graph</title>
      <dc:creator>Will Ware</dc:creator>
      <pubDate>Fri, 20 Feb 2026 21:13:41 +0000</pubDate>
      <link>https://forem.com/will_ware_dae793289d796d0/medical-literature-knowledge-graph-3k83</link>
      <guid>https://forem.com/will_ware_dae793289d796d0/medical-literature-knowledge-graph-3k83</guid>
      <description>&lt;p&gt;For a while now I’ve been telling anybody who’d listen that knowledge graphs are a good way to provide grounded information to language models. In recent months I’ve been slowly building a graph with a bunch of PubMed papers on cancer research, and finally I’m starting to see results worth talking about.&lt;/p&gt;

&lt;p&gt;This conversation demonstrates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Natural language querying of a medical knowledge graph&lt;/li&gt;
&lt;li&gt;GraphQL API for structured entity and relationship retrieval&lt;/li&gt;
&lt;li&gt;Semantic search capabilities across biomedical entities&lt;/li&gt;
&lt;li&gt;Relationship traversal to discover connections between entities&lt;/li&gt;
&lt;li&gt;Provisional vs canonical entity distinction based on standardization status&lt;/li&gt;
&lt;li&gt;Usage tracking and confidence scores for entity mentions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What really is interesting about this is that (at least to me, and I am very much not a doctor), it sounds pretty intelligent. Nothing it’s saying is crazy or stupid.&lt;/p&gt;

&lt;p&gt;If you want to view the graph and click on nodes and things, go to &lt;a href="http://104.131.171.175/graph-viz/" rel="noopener noreferrer"&gt;http://104.131.171.175/graph-viz/&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;User&lt;/strong&gt;: show me the first 15 biomarkers please&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Assistant&lt;/strong&gt;: I'll query for the first 15 biomarkers in the knowledge graph.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight graphql"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="n"&gt;biomarkers&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;entities&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;filter&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;entityType&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"biomarker"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;limit&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;15&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="n"&gt;items&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;entityId&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;entityType&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;name&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;status&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;confidence&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;usageCount&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;source&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="n"&gt;canonicalUrl&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="n"&gt;total&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  First 15 Biomarkers (out of 81 total)
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;CA-125&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Status: provisional&lt;/li&gt;
&lt;li&gt;Confidence: 0.45, Usage: 2&lt;/li&gt;
&lt;li&gt;Source: PMC12757429&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;JC-1 fluorescent probe&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Status: provisional&lt;/li&gt;
&lt;li&gt;Confidence: 0.475, Usage: 1&lt;/li&gt;
&lt;li&gt;Source: PMC12757429&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;BCR Shannon diversity&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Status: provisional&lt;/li&gt;
&lt;li&gt;Confidence: 0.35, Usage: 2&lt;/li&gt;
&lt;li&gt;Source: PMC12757429&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;...&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;DDR-IF score&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Status: provisional&lt;/li&gt;
&lt;li&gt;Confidence: 0.475, Usage: 21&lt;/li&gt;
&lt;li&gt;Source: PMC12757875&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;...&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;STING activation score&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Status: provisional&lt;/li&gt;
&lt;li&gt;Confidence: 0.475, Usage: 1&lt;/li&gt;
&lt;li&gt;Source: PMC12757875&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Observations:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;All 15 biomarkers shown are &lt;strong&gt;provisional&lt;/strong&gt; (none have been promoted to canonical status yet)&lt;/li&gt;
&lt;li&gt;They come from 2 medical papers (PMC12757429 and PMC12757875)&lt;/li&gt;
&lt;li&gt;Usage counts range from 1 to 21 (DDR-IF score being the most used)&lt;/li&gt;
&lt;li&gt;Confidence scores range from 0.35 to 0.475&lt;/li&gt;
&lt;li&gt;Many relate to cancer research (STING pathway, TCGA cohort, CA-125, etc.)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Query 3: DDR-IF Score Investigation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;User&lt;/strong&gt;: DDR-IF score is discussed (possibly for the first time?) in this paper: &lt;a href="https://pubmed.ncbi.nlm.nih.gov/41487593/" rel="noopener noreferrer"&gt;https://pubmed.ncbi.nlm.nih.gov/41487593/&lt;/a&gt; - curious that it has no canonical ID&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Assistant&lt;/strong&gt;: Excellent detective work! You're absolutely right. The &lt;strong&gt;DDR-IF score&lt;/strong&gt; has no canonical ID because it's a &lt;strong&gt;novel composite biomarker&lt;/strong&gt; introduced in that very recent paper (PMC12757875, which corresponds to PubMed ID 41487593).&lt;/p&gt;

&lt;h3&gt;
  
  
  Why DDR-IF score is provisional (not canonical):
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Novel Research Contribution&lt;/strong&gt;: The paper introduces the DDR-IF score as a new composite biomarker that integrates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DNA Damage Response (DDR)&lt;/strong&gt; alterations (HRD component)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Immune Infiltration (IF)&lt;/strong&gt; features (TME/tumor microenvironment)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;STING activation&lt;/strong&gt; (immune signaling)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;From the relationships extracted:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Purpose&lt;/strong&gt;: Predicts PARP-ICB (PARP inhibitor + immune checkpoint blockade) response in ES-SCLC (extensive-stage small cell lung cancer)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AUROC = 0.81 (strong predictive power)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Clinical utility&lt;/strong&gt;: Identifies tumors most susceptible to PARP-ICB combination therapy&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Cut-off&lt;/strong&gt;: ≥0.65 defines "DDR-IF-high" status&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Why no canonical ID exists:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This is &lt;strong&gt;cutting-edge research&lt;/strong&gt; (2026 paper based on the creation date in properties)&lt;/li&gt;
&lt;li&gt;Not yet incorporated into standardized biomarker databases like:

&lt;ul&gt;
&lt;li&gt;MeSH (Medical Subject Headings)&lt;/li&gt;
&lt;li&gt;LOINC (Logical Observation Identifiers Names and Codes)&lt;/li&gt;
&lt;li&gt;NCBI Gene (for molecular markers)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;May require validation in multiple studies before databases assign canonical identifiers&lt;/li&gt;

&lt;li&gt;It's a &lt;strong&gt;composite score&lt;/strong&gt; (not a single molecule/gene), which makes canonicalization more complex&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;The knowledge graph correctly identified it as &lt;strong&gt;provisional&lt;/strong&gt; with decent usage (21 mentions across 3 papers), showing it's gaining traction but not yet standardized in biomedical ontologies.&lt;/p&gt;

&lt;h2&gt;
  
  
  Query 4: Understanding STING Activation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;User&lt;/strong&gt;: dumb question, what is STING activation?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Assistant&lt;/strong&gt;: Not a dumb question at all! STING is actually pretty complex immunology. Let me search the knowledge graph for more details.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;STING&lt;/strong&gt; = &lt;strong&gt;S&lt;/strong&gt;timulator of &lt;strong&gt;I&lt;/strong&gt;nterferon &lt;strong&gt;G&lt;/strong&gt;enes&lt;/p&gt;

&lt;h4&gt;
  
  
  What it does:
&lt;/h4&gt;

&lt;p&gt;STING is part of your &lt;strong&gt;innate immune system&lt;/strong&gt; - your body's first-line defense against threats. Think of it as an alarm system inside cells.&lt;/p&gt;

&lt;h4&gt;
  
  
  How it works:
&lt;/h4&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Detection&lt;/strong&gt;: When DNA appears in the wrong place inside a cell (e.g., from viruses, bacteria, or damaged cancer cells), a sensor called &lt;strong&gt;cGAS&lt;/strong&gt; detects it&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Activation&lt;/strong&gt;: cGAS triggers &lt;strong&gt;STING protein&lt;/strong&gt;, which gets phosphorylated (p-STING in the biomarker list)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Alarm response&lt;/strong&gt;: Activated STING causes the cell to produce:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Interferons&lt;/strong&gt; (signaling proteins that alert the immune system)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Inflammatory cytokines&lt;/strong&gt; (recruit immune cells to attack)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h4&gt;
  
  
  Why it matters in cancer:
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;The double-edged sword:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Good news&lt;/strong&gt;: Cancer cells with damaged DNA can trigger STING → immune system attacks tumor&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bad news&lt;/strong&gt;: Chronic activation can lead to &lt;strong&gt;"cGAS-STING exhaustion"&lt;/strong&gt; where the pathway stops working (like a fire alarm that gets ignored)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;In the DDR-IF score context:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tumors with &lt;strong&gt;DNA damage&lt;/strong&gt; (from PARP inhibitors) → release DNA fragments → activate STING&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;STING activation&lt;/strong&gt; → recruits immune cells → makes &lt;strong&gt;immunotherapy&lt;/strong&gt; (checkpoint blockade) work better&lt;/li&gt;
&lt;li&gt;The DDR-IF score measures STING activation to predict which tumors will respond to the PARP + immunotherapy combination&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Clinical relevance:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"&lt;strong&gt;STING-desert phenotypes&lt;/strong&gt;" = tumors with no STING activity (won't respond well to immunotherapy)&lt;/li&gt;
&lt;li&gt;"&lt;strong&gt;STING agonists&lt;/strong&gt;" = drugs being developed to artificially activate this pathway&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So STING activation is basically your cell's burglar alarm going off when it detects suspicious DNA, calling in the immune system cavalry!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>graphql</category>
      <category>graphrag</category>
      <category>medical</category>
    </item>
  </channel>
</rss>
