Skip to content
PaperFren

Does background biological knowledge help predict deadly gene pairs?

Open paper intelligence

Feeding a graph neural network a knowledge graph of pathways, diseases and drugs improved prediction of synthetic-lethal gene pairs compared with methods that only saw known gene pairs.

Source

KG4SL: knowledge graph neural network for synthetic lethality prediction in human cancers

Wang S, Xu F, Li Y, et al. · Bioinformatics (Oxford, England) · 2021

doi.org/10.1093/bioinformatics/btab271Read the full paper ↗56 citationscc by

Study at a glance

Design
Computational / modelling — Link prediction on SynLethDB gene pairs; KG4SL (knowledge-graph message passing on gene-specific subgraphs) versus 10 baselines using AUC, AUPR and F1, plus sensitivity, convergence and knowledge-graph ablation analyses.
N
N=72804 · Balanced dataset of gene pairs: known synthetic-lethal pairs from SynLethDB plus an equal number of randomly drawn unknown pairs.
Population
Human gene pairs from SynLethDB and the SynLethKG knowledge graph
Outcome
AUC, AUPR and F1 for predicting synthetic-lethal gene pairs

Structured fields used in claim comparison tables when every cited study has a complete layer.

What they did

Synthetic lethality means two genes whose joint loss kills a cell, which is useful for cancer drug targets. The authors built KG4SL, which for each gene samples a subgraph from a knowledge graph linking genes to pathways, biological processes, diseases, compounds and more, passes messages along it, and scores gene pairs. They compared it with 10 baselines spanning matrix factorisation, random-walk embeddings and standard GNNs, and ran an analysis comparing models using only the knowledge graph, only the gene-pair graph, or both.

What they found

KG4SL beat every baseline; against the runner-up, a matrix-factorisation method using gene-ontology similarity, it improved AUC, AUPR and F1 by a few percentage points. It reached an AUC of 0.9470 and AUPR of 0.9564. A knowledge-graph-only embedding performed worst, a GCN on the gene-pair graph alone did much better, and combining the two sources did better still, with the end-to-end KG4SL on top.

The limits

What it doesn't show

Negative examples were random unknown pairs rather than confirmed non-lethal pairs, so some negatives may be true synthetic-lethal pairs and random negatives can make the task easier than real discovery. The baselines were evaluated with 5-fold cross-validation whereas KG4SL used a single 8:1:1 split, so the comparison is not perfectly like-for-like, and no significance tests are reported. No predicted gene pairs were tested in the lab, and the model ignores cell-line or tissue context, which the authors note matters for real synthetic lethality.

Key terms

Synthetic lethality
A relationship where losing either of two genes alone is survivable but losing both kills the cell; it can be exploited to target cancer cells with one gene already mutated.
Knowledge graph
A multi-relational graph whose nodes are entities of different types (genes, pathways, drugs) linked by typed relations such as 'interacts' or 'regulates'.
Message passing
The core GNN operation in which each node updates its representation by aggregating information from its neighbours.
Link prediction
Predicting which missing edges in a graph are likely to exist, here which gene pairs are synthetic lethal.
AUPR
Area under the precision-recall curve, summarising how well positives are ranked above negatives.

Flashcards

1 / 9

0 of 9 answers reviewed

Research intelligence for this paper

See its role on concept claims, tensions it is part of, placement history, and related discoveries.

Open paper intelligence

Quiz yourself

1 / 5

What does synthetic lethality describe?

Common questions

Why would a knowledge graph help?

Many methods treat each gene pair as independent, but pairs often share mechanisms such as DNA repair. Linking genes to pathways and processes lets the model use those shared factors automatically instead of hand-built features.

How do we know the knowledge graph itself mattered?

In the ablation, a model using both the knowledge graph and the gene-pair graph beat either alone, and KG4SL, which integrates them end to end, scored highest.

Does this mean KG4SL found new cancer drug targets?

Not yet. It shows better benchmark scores; the authors list lab validation of predicted pairs with biologists as future work.

More on Graph neural networks