<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.4">Jekyll</generator><link href="https://chem-bla-ics.linkedchemistry.info/feed/by_tag/sr24.xml" rel="self" type="application/atom+xml" /><link href="https://chem-bla-ics.linkedchemistry.info/" rel="alternate" type="text/html" /><updated>2026-06-15T12:00:19+00:00</updated><id>https://chem-bla-ics.linkedchemistry.info/feed/by_tag/sr24.xml</id><title type="html">chem-bla-ics</title><subtitle>Chemblaics (pronounced chem-bla-ics) is the science that uses open science and computers to solve problems in chemistry, biochemistry and related fields.</subtitle><author><name>Egon Willighagen</name></author><entry><title type="html">Serious Request: the results</title><link href="https://chem-bla-ics.linkedchemistry.info/2025/01/05/sr24-results.html" rel="alternate" type="text/html" title="Serious Request: the results" /><published>2025-01-05T00:00:00+00:00</published><updated>2025-01-05T00:00:00+00:00</updated><id>https://chem-bla-ics.linkedchemistry.info/2025/01/05/sr24-results</id><content type="html" xml:base="https://chem-bla-ics.linkedchemistry.info/2025/01/05/sr24-results.html"><![CDATA[<p>The last week before the winter break <a href="https://chem-bla-ics.linkedchemistry.info/2024/12/09/sr24.html">Serious Request took place</a>.
We started <a href="https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids">an action around WikiPathways</a> and
we collected 877 euro for <a href="https://nl.wikipedia.org/wiki/Stichting_Metakids">the MetaKids Foundation</a>. In total there were 2612
actions, many of which brought in a lot more. We ended up in position 928.</p>

<p>But the money was only one part of our “donation” of the MetaKids goal to make 35 percent point more inherited metabolic
disorders treatable (which they currently are not), and to address the number one cause of death among Dutch kids.
Because our action focussed on getting more biology relevant to metabolic diseases into WikiPathays. For this we set
up a <a href="https://sr24.wikipathways.org/">WikiPathways SR24 community</a> page, along with a <a href="https://www.wikipathways.org/sr24-curation/index2.html">curation page</a>
showing the results of automated curation alerts. Actually, in preparation of the Action, I updated that code
base to no longer have two states (succeeded, failed), but four states, depending on the percentage of tests failing
for that pathway. This has also been roled out to the <a href="https://www.wikipathways.org/">main WikiPathways website</a>.</p>

<p>In the weekend before our action, I wanted to test my <a href="skills">PathVisio</a> and had a go at a pathway drawing
from a book of which most pathways had already been digitized (see doi:<a href="https://doi.org/10.1007/978-3-030-67727-5_73">10.1007/978-3-030-67727-5_73</a>),
but not this one. This resulted in a first pathway (wikipathways:<a href="https://wikipathways.org/instance/WP5504">WP5504</a>),
which was later that week greatly extended by <a href="https://scholar.google.com/citations?hl=en&amp;user=Le-4tuQAAAAJ">Denise</a>.
I also ported the table of chapters from this book to <a href="https://blau.wikipathways.org/">the new WikiPathways community page for the book</a>.</p>

<h2 id="a-list-of-genes">A list of genes</h2>

<p>From <a href="https://scholar.google.com/citations?user=6yvglHYAAAAJ&amp;hl=en">Marek Noga</a> from our university medical center
I received a pointer to a nice paper with a long list of diseases and matching genes (doi:<a href="https://doi.org/10.1002/jimd.12348">10.1002/jimd.12348</a>)
which provided a great starting point. I started out by making the data from the supplementary files more FAIR
by <a href="https://social.edu.nl/@egonw/113661472648129803">converting the data into RDF</a>.</p>

<p>With SPARQL I compared the genes (via their HGNC symbols) with the content of WikiPathways:</p>

<div class="language-sparql highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">PREFIX</span><span class="w"> </span><span class="nn">wp</span><span class="o">:</span><span class="w">      </span><span class="nn">&lt;http://vocabularies.wikipathways.org/wp#&gt;</span><span class="w">
</span><span class="k">PREFIX</span><span class="w"> </span><span class="nn">dc</span><span class="o">:</span><span class="w">      </span><span class="nn">&lt;http://purl.org/dc/elements/1.1/&gt;</span><span class="w">

</span><span class="k">SELECT</span><span class="w"> </span><span class="nv">?gene</span><span class="w"> </span><span class="nv">?omim</span><span class="w"> </span><span class="nv">?geneLabel</span><span class="w"> </span><span class="k">WHERE</span><span class="w"> </span><span class="p">{</span><span class="w">
  </span><span class="nv">?gene</span><span class="w"> </span><span class="k">a</span><span class="w"> </span><span class="nn">wp</span><span class="o">:</span><span class="ss">GeneProduct</span><span class="w"> </span><span class="p">;</span><span class="w">
    </span><span class="nn">rdfs</span><span class="o">:</span><span class="ss">label</span><span class="w"> </span><span class="nv">?geneLabel</span><span class="w"> </span><span class="p">.</span><span class="w">
  </span><span class="k">OPTIONAL</span><span class="w"> </span><span class="p">{</span><span class="w">
    </span><span class="nv">?gene</span><span class="w"> </span><span class="nn">rdfs</span><span class="o">:</span><span class="ss">seeAlso</span><span class="w"> </span><span class="nv">?omimIRI</span><span class="w"> </span><span class="p">.</span><span class="w">
    </span><span class="nv">?omimIRI</span><span class="w"> </span><span class="nn">dc</span><span class="o">:</span><span class="ss">identifier</span><span class="w"> </span><span class="nv">?omim</span><span class="w"> </span><span class="p">.</span><span class="w">
    </span><span class="k">FILTER</span><span class="w"> </span><span class="p">(</span><span class="nb">contains</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="nv">?omimIRI</span><span class="p">),</span><span class="w"> </span><span class="s2">"omim:"</span><span class="p">))</span><span class="w">
  </span><span class="p">}</span><span class="w">
  </span><span class="nv">?gene</span><span class="w"> </span><span class="nn">wp</span><span class="o">:</span><span class="ss">bdbHgncSymbol</span><span class="w"> </span><span class="nv">?hgnc</span><span class="w"> </span><span class="p">.</span><span class="w">
  </span><span class="k">OPTIONAL</span><span class="w"> </span><span class="p">{</span><span class="w">
    </span><span class="k">SERVICE</span><span class="w"> </span><span class="nn">&lt;https://sparql.wikipathways.org/sparql&gt;</span><span class="w"> </span><span class="p">{</span><span class="w">
      </span><span class="nv">?wpGene</span><span class="w"> </span><span class="nn">wp</span><span class="o">:</span><span class="ss">bdbHgncSymbol</span><span class="w"> </span><span class="nv">?hgnc</span><span class="w"> </span><span class="p">.</span><span class="w">
    </span><span class="p">}</span><span class="w">
  </span><span class="p">}</span><span class="w">
  </span><span class="k">FILTER</span><span class="w"> </span><span class="p">(</span><span class="o">!</span><span class="nb">BOUND</span><span class="p">(</span><span class="nv">?wpGene</span><span class="p">))</span><span class="w">
  </span><span class="k">FILTER</span><span class="w"> </span><span class="p">(</span><span class="nb">CONTAINS</span><span class="p">(</span><span class="nv">?geneLabel</span><span class="p">,</span><span class="w"> </span><span class="s2">" "</span><span class="p">))</span><span class="w">
</span><span class="p">}</span><span class="w">
</span></code></pre></div></div>

<p>This resulted in a <a href="https://docs.google.com/spreadsheets/d/1fWFKXVs9q172eHDpv4OLa0TcHuozTBweDe2_zOLJc-Q/edit?usp=sharing">spreadsheet with more than 300 genes not in WikiPathways</a>.
An analysis by Karen Rothfels and Lisa Matthews showed that the number of genes not found in Reactome
is only 129. Indeed, later analyses showed that Reactome has a few very relevant pathways missing in
WikiPathways.</p>

<h1 id="new-biological-pathways">New biological pathways</h1>

<p>To figure out, it turns out the <a href="https://pfocr.wikipathways.org/">Pathway Figure OCR</a> (doi:<a href="https://doi.org/10.1186/s13059-020-02181-2">10.1186/s13059-020-02181-2</a>)
and <a href="https://www.ndexbio.org/">NDEX</a> (doi:<a href="https://doi.org/10.1093/bioinformatics/btad118">10.1093/bioinformatics/btad118</a>) tools
are very useful here. They both allow passing a list of genes and return results (sets, pathways, models) relevant to
that list. NDEX includes the sets from Pathway Figure OCR, and those sets are a set of genes linked to single
journal article which included a pathway diagram. I used this on the list of 371 genes not in WikiPathways and the list
of 129 genes not in Reactome, and identified five articles. It actually turns out that two
basically described the same biology and both are captured in the same new pathway
(wikipathways:<a href="https://wikipathways.org/instance/WP5505">WP5505</a>). This pathway includes a good number
of PIG genes, handling the very specific metabolic conversion of a metabolite.</p>

<h1 id="complex-chemistry">Complex chemistry</h1>

<p>That <a href="https://social.edu.nl/@egonw/113678723229529283">metabolite is complex</a> and databases do not seem to have the structure yet, so I set out
generating a SMILES:</p>

<p><img src="/assets/images/b0fbb7ea135318b9.png" alt="" /></p>

<p>I reported the final SMILES, but I am not happy with it yet, and actually spotted an error already:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>N[Prot]C(=O)NCCOP(=O)([O-])OC[C@@H]1[C@@H](O)[C@H]([R11])[C@H]([R10])[C@@H](O1)O[C@H]1[C@@H]([R8])[C@H](O)[C@@H](C[R9])O[C@H]1OC[C@@H]1[C@@H]([R7])[C@H]([R6])[C@H]([R5])[C@@H](O1)OC[C@@H]1[C@@H](O[M3])[C@H](O)[C@@H](N)[C@H](O1)O[C@@H]1[C@@H](O)[C@H](O)[C@@H](O)[C@@H]([R3])[C@H]1OP(=O)([O-])OC[C@H]([R1])C[R2]
</code></pre></div></div>

<p>So, for completeness and as backup, here are the fragment SMILES that you can copy/paste into <a href="https://www.simolecule.com/cdkdepict/depict.html">CDK Depict</a>:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>N[Prot]C(=O)NCCOP(=O)([O-])OC[C@@H]1[C@@H](O)[C@H]([R11])[C@H]([R10])[C@@H](O1)O[C@H]1[C@@H]([R8])[C@H](O)[C@@H](C[R9])O[C@H]1OC[C@@H]1[C@@H]([R7])[C@H]([R6])[C@H]([R5])[C@@H](O1)OC[C@@H]1[C@@H](O[M3])[C@H](O)[C@@H](N)[C@H](O1)O[C@@H]1[C@@H](O)[C@H](O)[C@@H](O)[C@@H]([R3])[C@H]1OP(=O)([O-])OC[C@H]([R1])C[R2]
N[Prot]C(=O)NCCOP(=O)([O-])O protein-linked ethanolamine phosphate (E0)
[E0]OC[C@@H]1[C@@H](O)[C@H]([R11])[C@H]([R10])[C@@H](O1)O[M2] Manα1-2 (M1)
[M1]O[C@H]1[C@@H]([R8])[C@H](O)[C@@H](C[R9])O[C@H]1O[M3] Manα1-6 (M2)
[M2]OC[C@@H]1[C@@H]([R7])[C@H]([R6])[C@H]([R5])[C@@H](O1)O[G4] Manα1-4 (M3)
[R4]C[C@@H]1[C@@H](O[M3])[C@H](O)[C@@H](N)[C@H](O1)O[S5] GlCNα1-6 (G4)
[G4]O[C@@H]1[C@@H](O)[C@H](O)[C@@H](O)[C@@H]([R3])[C@H]1OP(=O)([O-])OC[C@H]([R1])C[R2] phosphatidylinositol (S5)
</code></pre></div></div>

<h1 id="the-hackathon-day">The hackathon day</h1>

<p>On Thursday we had a hackathon day at our <a href="https://www.maastrichtuniversity.nl/research/translational-genomics">Translational Genomics department</a>
(UNS60 building). One of the Action organizers was still travelling back from Germany, but otherwise Tina, Denise, Daan, me, and Marek worked
on Thursday on various things. Tina worked on WP5505, Daan created his first pathways (wikipathways:<a href="https://wikipathways.org/instance/WP5507">WP5507</a>),
and so did Marek (wikipathways:<a href="https://wikipathways.org/instance/WP5506">WP5506</a>).</p>

<p>We now have 36 pathways on <a href="https://sr24.wikipathways.org/">the community page</a>:</p>

<p><img src="/assets/images/sr24_community_pathways.png" alt="" /></p>

<p>After that hackathon, and to wrap up things, I finalized the updated to the curation page, making the output
look better (more curation tests now output Markdown) and failing tests now almost all have an explanation page
showing how the affected pathway can be improved (to address the issue).</p>

<p>Somewhere next week, the results of the pathways will be available from the <a href="https://sparql.wikipathways.org/">WikiPathways SPARQL endpoint</a>
and I can then calculate new numbers. The number of genes not in WikiPathways should be lower.</p>

<p>Finally, perhaps, there are some very specific results, but also we have created a nice todo list:</p>

<ul>
  <li>plenty of curation on those 36 pathways remains to be done</li>
  <li>we still have many genes of interest not in pathways, and we should start stubs in WikiPathways</li>
  <li>we need a better overview of the mitochondiral biology</li>
</ul>

<p>And there are also still a few issues open:</p>

<ul>
  <li>I have a todo item to make a curation SPARQL query available via the automated testing (enhancement)</li>
  <li>not all interactions end up in the RDF (bug)</li>
</ul>

<p>That bug actually has significant impact on downstream analyses, I guestimate.</p>]]></content><author><name>Egon Willighagen</name></author><category term="sr24" /><category term="justdoi:10.1002/jimd.12348" /><category term="doi:10.1007/978-3-030-67727-5_73" /><category term="justdoi:10.1186/s13059-020-02181-2" /><category term="justdoi:10.1093/bioinformatics/btad118" /><summary type="html"><![CDATA[The last week before the winter break Serious Request took place. We started an action around WikiPathways and we collected 877 euro for the MetaKids Foundation. In total there were 2612 actions, many of which brought in a lot more. We ended up in position 928.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://chem-bla-ics.linkedchemistry.info/assets/images/b0fbb7ea135318b9.png" /><media:content medium="image" url="https://chem-bla-ics.linkedchemistry.info/assets/images/b0fbb7ea135318b9.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Serious Request: “WikiPathways in actie voor MetaKids”</title><link href="https://chem-bla-ics.linkedchemistry.info/2024/12/09/sr24.html" rel="alternate" type="text/html" title="Serious Request: “WikiPathways in actie voor MetaKids”" /><published>2024-12-09T00:00:00+00:00</published><updated>2024-12-09T00:00:00+00:00</updated><id>https://chem-bla-ics.linkedchemistry.info/2024/12/09/sr24</id><content type="html" xml:base="https://chem-bla-ics.linkedchemistry.info/2024/12/09/sr24.html"><![CDATA[<p><a href="https://sr24.wikipathways.org/"><img src="/assets/images/sr24.png" style="width: 40%; display: block; margin-left: auto; margin-right: auto; float: right" alt="Screenshot of the 'WikiPathways in actie voor MetaKids' action page." /></a>
Every day a child is born with an <a href="https://imd.wikipathways.org/">inherited metabolic disorder</a>, and many do not grow old.
<a href="https://metakids.nl/">MetaKids</a> is a Dutch foundation that collects money and raises awareness and the charity selected
this year for the <a href="https://npo.nl/">NPO</a> (Dutch national radio/tv) <a href="https://en.wikipedia.org/wiki/NPO_3FM">3FM</a>
<a href="https://www.npo3fm.nl/kominactie">Serious Request</a>. This has become <a href="https://en.wikipedia.org/wiki/Serious_Request">a Dutch tradition</a>.
Serious Request will play music on the radio, when people contributed to the fundraiser, and the more money, the
more often the music gets played.</p>

<p>But besides this, Serious Request also encourages people to jump into action. And we have jumped into action.</p>

<h2 id="what-we-will-do">What we will do</h2>

<p>In the week when the <a href="https://en.wikipedia.org/wiki/Disc_jockey">DJ</a>s are locked up in their
<a href="https://en.wikipedia.org/wiki/Serious_Request#/media/File:Serious_Request_2008_-_20.jpg">glass house</a> in
<a href="https://en.wikipedia.org/wiki/Zwolle">Zwolle</a> just before christmas, <a href="https://scholia.toolforge.org/author/Q56868311">Dr Laura Steinbusch</a>,
<a href="https://scholia.toolforge.org/author/Q27987764">Martina Kutmon</a>, <a href="https://www.maastrichtuniversity.nl/d-van-beek">Daan van Beek</a>,
and I will work on making our open science <a href="https://wikipathways.org/">WikiPathways</a> knowledgebase even better to support
research into these disorders. Like we did for COVID-9/SARS-CoV-2 before (see doi:<a href="https://doi.org/10.1038/s41597-020-0477-8">10.1038/s41597-020-0477-8</a>).
Guided by experts, we will update existing maps (leveraging on the awesome work
<a href="https://doi.org/10.26481/dis.20240624ds">by Denise Slenter in her PhD</a>) with recent literature, supported by
<a href="https://www.wikipathways.org/sr24-curation/">computer-assisted data curation</a>, and draw new maps where there
are knowledge gaps.</p>

<p>Read our full statements here: <a href="https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids">https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids</a></p>

<p>Part of this will be a workshop day on Thursday 19th of December in Maastricht. Details about that will follow.</p>

<p>In this way, we collect not only money to donate, but we also donate research.</p>

<h2 id="how-to-donate">How to donate</h2>

<p>Well, obviously, it is a fund-raiser. So, please <a href="https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids">donate here</a>.
We have at least one donation with PayPal (not a fan) from outside The Netherlands.</p>

<p>We are currently at 405 euro of our 2500 euro goal. Please <a href="https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids">help us a bit closer to that goal</a>.</p>

<h2 id="how-can-you-help">How can you help</h2>

<p>You can help us enormously by spreading the news of the “kom in actie” in your social network, and raise awareness
for the cause of MetaKids. For example, by sharing our action:</p>

<ul>
  <li>the action page: <a href="https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids">https://www.npo3fm.nl/kominactie/acties/wikipathways-in-actie-voor-metakids</a></li>
  <li>the “we are working on” and results page: <a href="https://www.wikipathways.org/communities/sr24.html">https://www.wikipathways.org/communities/sr24.html</a></li>
</ul>

<p>Second, in good open science practice, we welcome you to join our “kom in actie”, and several other have
alread indicated wanting to do so. There is plenty of work that can be done, and we are documenting
<a href="https://github.com/orgs/wikipathways/projects/2/views/1">our activity on a project board</a>. Any work that will make
the FAIR and open knowledge better or show the power will help. To get some ideas of how the knowledge can be used
is written up in <a href="https://link.springer.com/chapter/10.1007/978-3-030-67727-5_73">this open access chapter</a> by
Denise, Tina, and me.</p>]]></content><author><name>Egon Willighagen</name></author><category term="wikipathways" /><category term="sr24" /><category term="doi:10.1038/S41597-020-0477-8" /><category term="justdoi:10.26481/DIS.20240624DS" /><category term="doi:10.1007/978-3-030-67727-5_73" /><summary type="html"><![CDATA[Every day a child is born with an inherited metabolic disorder, and many do not grow old. MetaKids is a Dutch foundation that collects money and raises awareness and the charity selected this year for the NPO (Dutch national radio/tv) 3FM Serious Request. This has become a Dutch tradition. Serious Request will play music on the radio, when people contributed to the fundraiser, and the more money, the more often the music gets played.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://chem-bla-ics.linkedchemistry.info/assets/images/sr24.png" /><media:content medium="image" url="https://chem-bla-ics.linkedchemistry.info/assets/images/sr24.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry></feed>