C. ClinVar Integration

Original version: 1 May, 2024

library(AlphaMissenseR)

Introduction

ClinVar is a freely available, public archive of human genetic variants that provides clinical classifications for whether a variant is likely benign or pathogenic. The AlphaMissense publication uses the ClinVar data to evaluate and calibrate the predictions generated by their model. A table containing ClinVar information for 82872 variants across 7951 proteins was derived from the supplemental data of the AlphaMissense paper, and is made available through this package for benchmarking and visualization purposes.

Access ClinVar classifications with AlphaMissense predictions

The ClinVar table can be accessed using clinvar_data() from the database.

clinvar_data()
#> * [16:08:09][info] downloading or finding local file
#> * [16:08:09][info] creating database table 'clinvar'
#> # Source:   table<clinvar> [?? x 5]
#> # Database: DuckDB v1.0.0 [biocbuild@Linux 5.15.0-112-generic:R 4.4.0//home/biocbuild/.cache/R/BiocFileCache/e375f40dae9fd_e375f40dae9fd]
#>    variant_id           transcript_id     protein_variant AlphaMissense label 
#>    <chr>                <chr>             <chr>                   <dbl> <fct> 
#>  1 chr1_925969_C_T_hg38 ENST00000342066.8 Q96NU1:P10S            0.967  benign
#>  2 chr1_930165_G_A_hg38 ENST00000342066.8 Q96NU1:R28Q            0.663  benign
#>  3 chr1_930204_G_A_hg38 ENST00000342066.8 Q96NU1:R41Q            0.0866 benign
#>  4 chr1_930245_G_A_hg38 ENST00000342066.8 Q96NU1:D55N            0.134  benign
#>  5 chr1_930248_G_A_hg38 ENST00000342066.8 Q96NU1:G56S            0.100  benign
#>  6 chr1_930282_G_A_hg38 ENST00000342066.8 Q96NU1:R67Q            0.0635 benign
#>  7 chr1_930285_G_A_hg38 ENST00000342066.8 Q96NU1:R68Q            0.0629 benign
#>  8 chr1_930314_C_T_hg38 ENST00000342066.8 Q96NU1:H78Y            0.110  benign
#>  9 chr1_930320_C_T_hg38 ENST00000342066.8 Q96NU1:R80C            0.0918 benign
#> 10 chr1_931058_G_A_hg38 ENST00000342066.8 Q96NU1:V92M            0.196  benign
#> # ℹ more rows

The ClinVar table is now available for exploration or parsing.

Compare ClinVar and AlphaMissense

This section uses the clinvar_plot() function to generate a scatterplot for benchmarking and comparing ClinVar classification with AlphaMissense predictions. By default, the function takes one UniProt accession identifier, derives AlphaMissense scores from am_data("aa_substitution"), and pulls ClinVar classifications from the data.frame previously obtained. Alternatively, it is possible to pass a custom AlphaMissense or ClinVar table to the function. See function details for more information.

clinvar_plot(uniprotId = "P37023")
#> * [16:08:10][info] 'alphamissense_table' not provided, using default 'am_data("aa_substitution")' table accessed through the AlphaMissenseR package
#> * [16:08:11][info] 'clinvar_table' not provided, using default ClinVar dataset in AlphaMissenseR package

We returned a ggplot object which overlays ClinVar classifications onto AlphaMissense predicted scores. Blue, gray, and red colors represent pathogenicity classifications for “likely benign”, “ambiguous”, or “likely pathogenic”, respectively. Large, bolded points are ClinVar variants colored according to their clinical classification, while smaller points in the background are AlphaMissense predictions.

We can note a discrepancy between the clinically-validated annotations and the AlphaMissense predictions around position 50. AlphaMissense seems to predict several variants in that region as likely benign, while ClinVar identifies them as pathogenic.

Because the ClinVar dataset is not exhaustive (not all proteins have been clinically-assessed), there may be proteins where information is not available. In this case, the function will provide an error.

Remember to disconnect from the database.

db_disconnect_all()

Session information

sessionInfo()
#> R version 4.4.0 RC (2024-04-16 r86468)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.4 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.20-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] AlphaMissenseR_1.1.5 dplyr_1.1.4         
#> 
#> loaded via a namespace (and not attached):
#>  [1] gtable_0.3.5         xfun_0.45            bslib_0.7.0         
#>  [4] ggplot2_3.5.1        htmlwidgets_1.6.4    rjsoncons_1.3.0     
#>  [7] vctrs_0.6.5          tools_4.4.0          generics_0.1.3      
#> [10] curl_5.2.1           parallel_4.4.0       tibble_3.2.1        
#> [13] fansi_1.0.6          RSQLite_2.3.7        highr_0.11          
#> [16] blob_1.2.4           pkgconfig_2.0.3      BiocBaseUtils_1.7.0 
#> [19] dbplyr_2.5.0         RcppSpdlog_0.0.17    lifecycle_1.0.4     
#> [22] farver_2.1.2         compiler_4.4.0       munsell_0.5.1       
#> [25] httpuv_1.6.15        htmltools_0.5.8.1    sass_0.4.9          
#> [28] yaml_2.3.8           pillar_1.9.0         later_1.3.2         
#> [31] jquerylib_0.1.4      whisker_0.4.1        tidyr_1.3.1         
#> [34] cachem_1.1.0         mime_0.12            tidyselect_1.2.1    
#> [37] r3dmol_0.1.2         digest_0.6.36        duckdb_1.0.0        
#> [40] purrr_1.0.2          labeling_0.4.3       fastmap_1.2.0       
#> [43] grid_4.4.0           colorspace_2.1-0     cli_3.6.3           
#> [46] magrittr_2.0.3       spdl_0.0.5           utf8_1.2.4          
#> [49] withr_3.0.0          filelock_1.0.3       scales_1.3.0        
#> [52] promises_1.3.0       bit64_4.0.5          rmarkdown_2.27      
#> [55] httr_1.4.7           bit_4.0.5            memoise_2.0.1       
#> [58] shiny_1.8.1.1        evaluate_0.24.0      knitr_1.47          
#> [61] bio3d_2.4-4          BiocFileCache_2.13.0 rlang_1.1.4         
#> [64] Rcpp_1.0.12          xtable_1.8-4         glue_1.7.0          
#> [67] DBI_1.2.3            jsonlite_1.8.8       R6_2.5.1