Benchmarking LIRICAL for Phenotype-based Prioritization In 75 Rare Disease Cases

LIRICAL [Robinson 2020] is a phenotype-based gene & variant prioritization tool.

Let's say an individual has symptoms described by these 7 human phenotype ontology (HPO) terms:

The LIRICAL algorithm takes these as input along with the individual's variant call file (from WGS or WES) and outputs a list of candidate diagnoses, their post-test probabilities, and visualizations showing which of the individual's HPO terms support or contradict each candidate.

For the above example, LIRICAL outputs:

LIRICAL output screenshot

Clinical geneticists that previously evaluated this case without using LIRICAL came to the conclusion that variants in the KMT2C gene explain this patient's phenotype.

To evaluate LIRICAL performance, I ran it on 75 previously-solved rare disease cases from the Rare Genomes Project.

LIRICAL identified the correct gene in 65 out of the 75 cases (87%), and in 42 out of 75 cases (56%) the correct gene was in the top 3 results.

NOTE: By default, LIRICAL uses gnomAD v2 allele frequencies (AFs) when analyzing variants. In order to take advantage of gnomAD v3.1 AFs, I prefilted all variant call files (VCFs) to gnomAD v3.1 POPMAX AF < 1% before passing them to LIRICAL. See the last section below for stats on how this improved results.


This histogram shows how often LIRICAL ranked the correct gene in the top 5, between 6-10, and >10th in the list, colored by inheritance mode. The x-axis represents # of cases:


LIRICAL correct gene rank by inheritance mode

Another way to look at this is - for the 65 cases where LIRICAL found the correct gene, what was that gene's rank in the list and it's post-test probability:

Plot post-test probability vs LIRICAL rank

To summarize this plot, in 49 out of 75 cases (65%) the correct result was among the top 5 hits and for 36 out of 75 (48%) it also had a post-test probability between 1% and 100%. On the other hand, for 16 cases (21%) the correct result was below 5th in the list and had a post-test probability near 0. For another 10 cases (13%), the correct result was not in the list at all.

Conclusion: LIRICAL shows relatively high sensitivity in finding the causal genes for rare disease cases from RGP.


How many genes would someone need to look through for a typical case?

From the above plot, a conservative approach would be to only consider the top 5 results (x-axis cutoff) and only if they have a post-test probability (PTP) of 1% or higher (y-axis cutoff). This would give 3 results (or more percisely, 2.53 results) to look at on average, with 24% of cases having 5 or more results with PTP > 1%:

histogram: % of RGP cases that have 0, 1, 2, 3, 4, or 5 LIRICAL results with PTP > 1 and rank <= 5


What is the false-positive rate?

The above plot shows that, although LIRICAL reports the correct gene as #1 in the list in 23 out of 75 cases (31%), most of the time the correct gene is further down in the list. All genes except the correct gene can be considered false positives. With conservative thresholds of only looking at the top 5 results and only when they have a post-test probability (PTP) of 1% or higher, analysts would need to look at ~2 false-positive genes per case on average.

To test LIRICAL performance another way and also see how much it depends on variant-based matching vs. phenotype-based matching, I reran the same cases, but substituted in variants from completely unrelated healthy individuals sequenced as part of the same cohort. I did this 5x for each of the 75 solved cases above (=> 375 test runs). With VCFs from healthy individuals, LIRICAL accuracy dropped to esssentially 0: only 10 out of the 375 LIRICAL reports (3%) still included the correct gene, and only 3 of these were in the top 5 and had a post-test probability > 1%.

However, in 260 out of 375 tests (70%) LIRICAL still reported at least one result with a post-test probability > 1%. This again shows that, even with conservative thresholds of top-5 and PTP > 1%, a user should expect to see on average 2 false-positive results per case:

histogram: % of RGP cases that had 0, 1, 2, 3, 4, or 5 false-positive LIRICAL results with PTP > 1 and rank <= 5

For comparison, in the first analysis, 62 out of 75 cases (83%) had at least one result with a post-test probability > 1%, so LIRICAL post-test probability is on average slightly lower for false-positive results.


Can we do better by dropping the post-test probability threshold to 0%?

Previously we saw that for 36 out of 75 (48%) cases, the correct gene was ranked in the top 5 and had a post-test probability between 1% and 100%. Would we get higher sensitivity/specificity if we used different thresholds? The answer is yes:

Post-test probability thresholdTop-k results# of true-positive genes
passing the thresholds
# of genes (per case)
passing the thresholds
> 1%top 5 genes36 out of 75 (48%)190/75 = 2.5 genes
> 0%top 5 genes49 out of 75 (65%)287/75 = 3.8 genes
> 0%top 4 genes45 out of 75 (60%)239/75 = 3.2 genes
> 0%top 3 genes42 out of 75 (56%)186/75 = 2.5 genes
> 0%top 2 genes40 out of 75 (53%)129/75 = 1.7 genes
> 0%top 1 genes29 out of 75 (39%) 68/75 = 0.9 genes

Based on this, it's better to look at the top 3 genes with PTP > 0% instead of the top 5 and PTP > 1%.


Can LIRICAL performance be improved further?

Yes - through additional prefiltering. For the tests above, I prefiltered each individual's variants to exclude variants that are common in the general population (keeping only variants with gnomAD v3 PopMax AF < 0.01). Applying this prefilter didn't change the number of true positive results, but improved their average rank from 7.6 to 5.9. Adding further prefiltering - such as by inheritance mode for cases where parents' DNA is available - will almost certainly improve results further.


References:

  1. Robinson PN, Ravanmehr V, Jacobsen JOB, et al. Interpretable Clinical Genomics with a Likelihood Ratio Paradigm. Am J Hum Genet. 2020;107(3):403-417. doi:10.1016/j.ajhg.2020.06.021
  2. Yuan X, Wang J, Dai B, et al. Evaluation of phenotype-driven gene prioritization methods for Mendelian diseases. Brief Bioinform. 2022;23(2):bbac019. doi:10.1093/bib/bbac019

Source code:


image