Abstract
In this study we show that protein language models can encode structural and functional information of GPCR sequences that can be used to predict their signaling and functional repertoire. We used the ESM1b protein embeddings as features and the binding information known from publicly available studies to develop PRECOGx, a machine learning predictor to explore GPCR interactions with G protein and β-arrestin, which we made available through a new webserver (https://precogx.bioinfolab.sns.it/). PRECOGx outperformed its predecessor (e.g. PRECOG) in predicting GPCR-transducer couplings, being also able to consider all GPCR classes. The webserver also provides new functionalities, such as the projection of input sequences on a low-dimensional space describing essential features of the human GPCRome, which is used as a reference to track GPCR variants. Additionally, it allows inspection of the sequence and structural determinants responsible for coupling via the analysis of the most important attention maps used by the models as well as through predicted intramolecular contacts. We demonstrate applications of PRECOGx by predicting the impact of disease variants (ClinVar) and alternative splice forms from healthy tissues (GTEX) of human GPCRs, revealing the power to dissect system biasing mechanisms in both health and disease.
Graphical Abstract
INTRODUCTION
G protein-coupled receptors (GPCRs) form the largest family of cell-surface receptors and the most important pharmacological class, being targeted by approximately one-third of the marketed drugs (1). They transduce a multitude of physico-chemical stimuli from the extracellular environment to activate intracellular signalling pathways through the coupling to one or more heterotrimeric G proteins, which are grouped into four major G protein families: Gs, Gi/o, Gq/11 and G12/13 based on their α-subunits (2). GPCRs’ downstream activity is controlled by β-arrestins, which offer an alternative layer of signalling modulation via ERK (3). Alteration of these transduction mechanisms is linked to a myriad of pathological states (i.e. signalopathies), including cancer (4–7). A deeper knowledge of these mechanisms, integrated in the wider biological context of a disease state, can impact targeted therapies and personalized medicine protocols (e.g. (8)). Dissecting GPCR-G protein coupling can also aid the design of chemogenetic tools, such as Designer Receptors Exclusively Activated by Designer Drugs (DREADDs), that can be of great use in tinkering with signalling pathways in living systems (9). Ligand binding to GPCRs induces conformational changes that lead to binding and activation of G proteins situated intracellularly. Mammalian GPCRs display a wide and distinct repertoire of G protein coupling, ranging from highly selective to promiscuous profiles, which lead to specific downstream cellular responses (6). Determining specific coupling profiles is critical to understanding GPCR biology and pharmacology. Structural determination of receptor/G protein complexes is advancing rapidly, with over 170 complex structures deposited in the PDB (as of March 2022). This unprecedented wealth of structural information is illuminating the basis of receptor activation across classes (10), G protein families (e.g. (11)), as well as among distinct transducers of the same receptor (e.g.(12)). At the same time, quantitative screening methodologies have been set up to systematically profile the binding activities of GPCRs for transducer proteins ((13–16)). Despite these continuous advancements, a consensus picture of the sequence and structural basis of selectivity is still far from being complete and, importantly, coupling information is still missing for many receptors. Approximately 28% of human, non-olfactory GPCRs still lack the coupling information according to either IUPHAR/GuidetoPharmacology (GtoPdb) (17) or quantitative coupling studies, preventing a deeper understanding of their biological function.
To fill this knowledge gap, we previously developed PRECOG (18), a machine learning-based predictor of Class A GPCRs coupling with G proteins. In this previous study, we used sequence- and structure-based features and trained on experimentally determined binding activities of 144 Class A human GPCRs across 11 chimeric G proteins obtained through the TGFα shedding assay (TGF) (13,14). We herein present PRECOGx, a new ML-based predictor of G protein and β-arrestin binding which relies on protein embeddings from a pre-trained protein language model, i.e. the Evolutionary Scale Model (ESM) (19). ESM has been derived from Natural Language Processing (NLP) state-of-art models, i.e. transformers (20), and has shown superior performances in a number of protein structure and function prediction tasks as it captures aminoacids’ contextual dependencies within sequence (19). ESM was shown to outperform competing methods for protein embeddings (e.g. SeqVec (21) or Unirep (22)) and similar architectures, i.e. Evoformer, form the basis of the groundbreaking protein structure prediction algorithm AlphaFold2 (23).
METHODS
Embeddings generation
We generated the embeddings of the GPCR sequences by using a pre-trained encoder from the Evolutionary Scale Model (ESM; https://github.com/facebookresearch/esm). We computed embeddings from sequences in the Fasta format by using the extract.py function of the ESM library and by specifying the ESM1b model (esm1b_t33_650M_UR50S) with embeddings for individual amino acids as well as averaged over the full sequence using the option ‘–include mean per_tok’.
We generated embeddings for each individual layer separately, by specifying their corresponding number in the ‘–repr-layers’ option. We only retained the average embedding representation for the next analysis.
Data sets
We obtained experimental binding data from two distinct sources: the TGF assay (13), which captures the relative activities of binding of 148 GPCRs with 11 chimeric G proteins, and the EMTA biosensor (GEMTA) assay (16), which profiles the binding activities of 97 GPCRs with 12 G proteins and 3 β-arrestins/GRKs binders. We also used the Unified Coupling Map (UCM) study derived from an integrated analysis of the aforementioned assays (24), entailing binding relative activities for a total of 164 GPCRs for 14 G proteins. For the TGF assay, we considered a receptor coupled to a G protein if the logarithm (base 10) of the relative intrinsic activity (logRAi) was greater than -1, and non-coupled otherwise. Similarly, for the GEMTA assay we considered a receptor coupled to a G protein (or β-arrestins/GRK) if the double normalized Emax was greater than 0, and non-coupled otherwise. For the UCM study, we considered a receptor coupled to a G protein if the binding relative activity was greater than 0, and non-coupled otherwise.
Model training
We trained multiple models by using embeddings obtained from the pre-trained ESM1b as features. For each of the three studies described in the previous section, we generated training matrices by taking for each receptor the mean representation of each embedding layer, which are 1280 long vectors. This yielded 1280 x n matrices for each training set, where n is the number of GPCRs in each binding set, which were subjected to Principal Component Analysis (PCA) to project them to a lower dimensional space, constituted by the number of components describing 95% of the total variance, using the function decomposition.PCA from Scikit-learn. Next, for each G protein/β-arrestin transducer family, we created three training matrices, each containing decomposed PCA values of the receptors in the three studies and their coupling information as classification label (see the previous section). We implemented the machine learning models using logistic regression or support vector classifier algorithms available from Scikit-learn (https://scikit-learn.org/). We performed a grid search using stratified 5-fold cross validation (CV) to select the best hyper-parameters of the algorithms. We repeated the process 10 times to ensure minimum variance. In details, we used the following hyperparameter space for logistic regression: penalties {‘l1’, ‘l2’}; solvers)‘newton-cg’, ‘lbfgs’, ‘liblinear’, ‘sag’, ‘saga’}; inverse of regularization strength(C) [0.001, 100]; maximum number of iterations (4000) and class weights (balanced). For Support Vector machines we searched for the following hyperparameter space: kernels {‘linear’, ‘poly’(three degrees), ‘rbf’, ‘sigmoid’}; kernel coefficient i.e. gamma (scale), and class weights (balanced); and the inverse of the regularization strength(C) [0.1, 100]. For each of the 17 G protein/ β-arrestin transducer families, we generated two models per embedded layer. Thus, we obtained 68 models per transducer family. We then ranked the models based on their AUC (Area Under the Curve) scores obtained during the cross-validation process. To ensure minimal imbalance, we eliminated the models with the absolute difference of Recall (REC) and Specificity (SPE) greater than 0.15 during the cross-validation process. The top 5 filtered models ranked according to AUC score were finally employed for testing on a held-out study.
To assess over-fitting, we performed a randomization test (25) by randomly shuffling the original labels of the training matrix, while preserving the ratio of the number of positive (coupled) and negative (non-coupled) GPCRs.
Model testing
We downloaded all the known GPCR/G protein couplings provided in the GtoPDB database (http://www.guidetopharmacology.org/ (17)). A total of 117, 160, and 94 GPCR/G protein couplings were present in the GtoPDB but absent in the TGF assay (used as training set also for our original PRECOG model), the GEMTA assay, and the UCM studies, respectively. Since GtoPDB lacks a true negative set, we used Recall (REC) to compare the performance of PRECOGx with PRECOG (18). Note that we considered all human GPCRs from all the classes with the exception of Olfactory receptors, both during the training and testing stages of PRECOGx. By design, the original PRECOG and the corresponding model trained on the GEMTA assay using hand-crafted features (see below) only considered class A GPCRs. For testing β-arrestin models, we considered 57 Class A GPCR - β-arrestin 1/2 interactions obtained from STRING (combined score > 600) (26), HIPPIE (27), and IMEx (28) databases. We finally selected the 17 best performing models for each G protein or β-arrestin based on the highest Recall during testing.
As an additional test, we compared coupling probabilities with reported relative activities log(Emax/EC50) of four GPCRs (i.e. ADRB2, NTSR1, LPAR6, HTR7) obtained through the TRUPATH platform (15) as well as the TGFα Shedding Assay. We binarized the experimental activities, considered as ground truths, as well as coupling probabilities and we computed ACC, REC, PRE and AUC metric performances.
PRECOG-GEMTA
As a second baseline, we trained a coupling classifier using information from the GEMTA assay by extracting the sequence-based features for G protein/β-arrestin selectivity, as described in our previous studies (18). The GEMTA assay measured binding activities of 85 Class A, 15 Class B, and 5 Class C GPCRs with 11 G proteins and 2 β-arrestins (in presence/absence of GRK2). We considered double normalized maximum value of ligand-induced response (Emax). Due to the lack of enough data for other classes, we considered only the 85 Class A GPCRs from the GEMTA assay study to develop the predictor. Briefly, we created a multiple sequence alignment, using hmmalign from the HMMER3 package (29), and the 7tm_1 Hidden Markov Model (HMM) from PFAM (30), of the class A GPCRs from the GEMTA assay study and subdivided the alignment based on their coupling preference (double normalized Emax) to a given interacting group (G proteins/β-arrestins) (see section Data sets). Next, we created the HMM profile of the sub-alignments using the hmmbuild tool from the HMMER3 package (29). To generate the training matrix, we considered the positions within the HMM profiles that showed statistically significant (p-value < = 0.05) differences in the amino acid distributions of coupled vs. non-coupled profiles. We implemented the logistic regression algorithm using the machine learning workflow as described above (see section Model training) and calculated the metrics of the best-performing model (Supplementary Table S1), which was used for prediction purposes in the current study.
Attention head importance
By inspecting the weights of the trained classifiers, we extracted the most important attention head, for the best performing layer of each transducer family.
Let us observe that embeddings obtained through the ESM model are high-dimensional tensors obtained by concatenating 64 dimensional tensors across all of the 20 attention heads of the model.
In order to compute head importance we leverage the linear structure of the classification pipeline. In more depth, our pipeline maps an input embedding to a lower dimensional representation z:
(1) |
through PCA, where is the optimal number of components chosen through cross-validation as described in the model training section. Each classifier than computes a score S(x):
(2) |
which is then transformed into a class probability. In order to obtain head importance, we mapped back to importance weights from the final classifier through PCA. We defined the importance of the -th weight (associated with the -th PCA component) of the classifier as:
(3) |
Moreover, we defined the importance of the original -th element of in the -th component of PCA as:
(4) |
The quantities defined allow us to compute a reweighted principal component matrix as follows
(5) |
Recalling that each head outputs a 64 dimensional representation, the -head's importance is then obtained as:
(6) |
By varying from 1 to 20 we obtained vector and identify the most important head by selecting the head with maximum importance value. If the best performing model was obtained using the support vector classifier (with a non-linear kernel), we resorted to the logistic regression model (trained on the same embedding layer and assay study) to compute the most important head.
Unsupervised learning of the GPCRome embedded space
We generated embeddings for the human GPCRome, comprising a total of 377 receptors (287 Class A, 15 Class B1, 17 Class B2, 17 class C, 11 class F, 25 Taste receptors and 5 in other classes) shorter than 1024 amino acids in length due ESM model length constraints. We performed Principal Component Analysis (PCA) on each embedding layer using the PCA function from decomposition.PCA method of the Scikit-learn package (https://scikit-learn.org/). Each human GPCR sequence was annotated with the available functional labels, i.e. GtoPdb Class membership or Transduction Mechanism, couplings from the TGFα shedding or GEMTA and STRING interactions (for β-arrestins).
We performed K-means clustering of the study projected along the first two components of the PCA using the function cluster.KMeans from Scikit-learn. The number of clusters was set as the number of variables possible for the given functional label (i.e. GtoPdb GPCR Class, Transduction mechanisms or Coupling specificities from either TGF or GEMTA assays). In the case of GtoPdb class information, the number of clusters was set to 5 (possible variables: Class A, Class B, Class C, Frizzled, and Taste). For the remaining functional labels about coupling information, the number of clusters was set to 2 (possible variables: coupled or non-coupled to a G protein/β-arrestin). We then calculated the Normalized Mutual Information (NMI) score of the resulting clusters using metrics.cluster from Scikit-learn for all the 33 layers. We chose the best layer for a given functional label as the one with the highest NMI score.
Contact analysis
To interpret the determinants of G protein binding specificity, we first calculated predicted intra-molecular contacts for each receptor sequence using the logistic regression algorithm trained over the ESM’s attention maps, (using the function predict_contacts in the ESM library) (31) and retaining predicted contact with a probability greater than 0.5. We referenced sequence residue positions to the GPCRdb generic residue numbers (32). Next, contact maps were grouped based on G protein binding specificity (either TGF, GEMTA or UCM) and differential contact maps were derived by calculating the log-odds ratio from the following contingency Table 1:
Table 1.
Contact pair/G protein | Contact | No contact |
---|---|---|
Coupled | AA | BB |
Not coupled | CC | DD |
using the following equation (1):
(7) |
AA and BB terms represent a number of coupled GPCRs to a specific G protein depending on the assay that have or do not have a specific contact pair, respectively. CC and DD terms represent the number of non-coupled GPCRs for a specific G protein depending on the assay, that has or does not have a specific contact pair respectively. Contacts contributed from the loops, N-termini and C-termini of the GPCR where aggregated. We calculated the enrichment in a specific transducer family with respect to non-coupled receptors for a consensus list of 223 unique pairs, corresponding to 181 unique GPCRdb positions for the UCM study (220 and 184 unique pairs and positions for the GEMTA assay or 231 and 186 unique pairs and positions for the TGF assay).
We computed log-odds ratio using the Table2×2 function from StatsModels (https://www.statsmodels.org/). Resulting log-odds ratios were normalized using the MaxAbsScaler from scikit-learn.
Contacts with a positive log-odds ratio (enriched) are seen more frequently in receptors coupled to a specific G protein, while contacts with a negative log-odds ratio (depleted) are seen less frequently in receptors coupled to a specific G protein.
GPCR-Gα complexes prediction via AlphaFold-Multimer
A total of 2141 GPCR-Gα pairs, reported to bind in either GtoPdb or the TGF assay or the GEMTA assay, were considered, respectively corresponding to 265 and 14 human GPCRs and Gα proteins (the three members of the GNAT family are not considered). We generated through Alphafold-Multimer v2.1.1 (33) the 3D structural models for each of these experimental GPCR-Gα complexes lacking a known 3D structure in the PDB. The databases required to run AlphaFold-Multimer were downloaded on 16 November 2021. Among the 5 models generated for each GPCR-Gα pair, only the one with the highest confidence was considered for further analysis.
ClinVar mutations analysis
We used PRECOGx to predict the functional consequences of 2140 missense variants (212 GPCRs) from ClinVar (34). For each variant we compared predicted couplings with the ones calculated for the wild-type receptor sequence. Variants or wild-types with predicted probability higher than 0.5 were considered coupled and those with lower probability as uncoupled to specific G protein.
Healthy Tissue (GTEx) alternative splicing isoforms
We used PRECOGx to predict the impact of alternative splicing on GPCR signalling. We considered 1141 protein-coding, alternatively spliced mRNA transcripts from 364 unique genes from GTEx (35). We used the best performing model (PRECOGx) to profile coupling specificities for both canonical and spliced variants. Spliceforms with predicted probability greater than 0.5 were considered coupled and non-coupled otherwise. We annotated spliceforms with their highest expression across the tissue. Different conditions were tested by imposing cutoffs for isoform length (i.e. retaining 25%,50% 75% or all of their 7TM segments) or for expression (TPM > = 1.0).
Pipeline
Given user input data, i.e. receptor WT or mutant sequences, the web server backend generates the ESM embedding features (see Figure 1). The average embeddings are extracted and the ones corresponding to the best performing layer for the classification of a given coupling are used as features in the corresponding model for coupling classifications. The embedding layers are also used to project the input sequence in the PCA embedded space previously generated for the human GPCRome.
To detect the closest homolog for structural visualization purposes, every input sequence is aligned through PSI-BLAST (36) either to 3D structures of GPCRs G protein/β-arrestin complexes from the PDB or to AlphaFold-Multimer predicted complexes. Identified matches are returned for visualization and sorted based on percentage of identity. Sequence and structure residue positions were referenced to the GPCRdb generic residue numbers from GPCRdb (32).
We developed PRECOGx using Apache2 (https://httpd.apache.org/) using the Python programming language, both for the web frontend, which is based on Flask (http://flask.pocoo.org/) and for the internal pipeline to handle back-end processes. We additionally used the following Python and JavaScript libraries at both back- and front-ends: NGL Viewer (v1.3.1), jQuery (v3.5.1), neXtProt (v0.2.17), Bootstrap (v5.13), Scikit-learn (v1.0.2), DataTables (v1.11.3), Plotly (v2.6.3).
RESULTS
Using the webserver
The input can be one or more protein identifiers (UniProt identifiers, accessions, gene symbols or GtoPdb official nomenclatures), mutations in the format protein identifier/aa substitution (e.g. MC1R/D294H) or FASTA sequences (see Figure 1A). Examples of the different inputs accepted are available through dedicated buttons besides the ‘Submit’ one. The mutation format is particularly suited for predicting the functional consequence of missense mutations. For larger variants, e.g. alternative splicing variants, the user is recommended to directly input the corresponding FASTA sequence (see section ‘Predicting the functional consequences of GPCRs variants.’ below).
On the results page, a tutorial is available on the top. Predictions for each individual G protein/β-arrestin are tabulated in the upper panel. Each row lists either predicted coupling probabilities or experimental binding data, whenever available, for each given input. In the centre-left of Figure 1A, predicted intra-molecular contacts are displayed at the primary sequence level. Alternatively, transducer family-specific predicted contacts are shown via a toggle button on a heatmap, where cells are colored according to enrichment (green = enriched; red = depleted). In the centre-right, the predicted intra-molecular contacts are highlighted on a 3D structure with edges colored according to coupling specificity (green = enriched; red = depleted) and contacting residues shown as spheres whose radius is proportional to their contact network degree, by default the one best-matching (via BLAST) the input. The visualized structures can be optionally changed and, alternatively to experimental PDB structures, 3D models predicted via AlphaFold-Multimer can also be visualized. On the bottom-left, a PCA plot of the GPCRome sequence space is used to project and track the location of the input sequence (Figure 1B). This new feature performs PCA and k-means clustering on ESM embeddings of the non-olfactory human GPCRome to generate a low dimensional space where any input sequence can be projected and analysed. For instance, it is possible to input the wild type sequence of a GPCR (e.g. human TBXA2R, blue dot in Figure 1B) and perform the PCA projections on a specific embeddings layer to uncover functional patterns. To ease pattern detection, points corresponding to reference human GPCRome receptors can be colored based on functional information via a drop-down menu which allows to specify either GtoPdb class or transducer coupling mechanisms from either GtoPdb, TGF or GEMTA studies. For instance, the 13th layer is the one leading to the GPCRome clustering that best agrees with the GPCR Class annotation according to the NMI score metric (Figure 1B; see Methods). PCA bi-dimensional representation of the embedded space can also be used to visualise the trajectories of natural or artificial variants with respect to the reference GPCRome sequence space (see below). In the bottom-right, attention maps from the most informative attention head of a given layer can be visualised to explore residue-residue dependencies associated to a given coupling.
The information displayed in the sequence, 2D and 3D contacts visualizations as well as in the attention map panels is automatically updated by clicking on individual cells of the prediction table corresponding to a specific receptor-transducer pair (see below for more use examples of these panels).
Protein language models are predictive of GPCRs signalling mechanisms: beyond class A and G proteins
We trained and tested multiple machine learning models by considering different combinations of embedding layers, algorithms and training sets. The best performing model for every interacting group, for a total of 17 G proteins/β-arrestins partners, was selected based on the AUC during the training and REC during testing phase (Figure 2A, B; Supplementary Table S2; Methods). Models showed overall good stability, with low standard deviations of the performance metrics, and minimal overfit, with training on randomly shuffled labels always performing worse (Supplementary Figure S1A). With respect to coupling specificity, we found that seven best performing models were obtained by training on the Shedding assay and six by the GEMTA assay. The latter included three G proteins (i.e. GoB, GNAI2 and GNA11), and β-arrestins, whose binding data were not included in the TGF assay (Supplementary Table S2).
The best-performing models (collectively called PRECOGx) were tested on an independent test set comprising GPCRs that were absent in the training set but have known G protein coupling information reported in the literature (i.e. GtoPDB (17)). To test the predictions for β-arrestins, we considered high-confidence interactions from functional interaction databases (see Methods). We compared the performance of PRECOGx with the previous PRECOG approach trained on TGF as well as on the GEMTA studies (respectively termed PRECOG and PRECOG-GEMTA;see Methods). With the only exception of GNAI3 and β-arrestin2, PRECOGx outperformed PRECOG-based models (Figure 2C). This trend is evident also when aggregating the recall metric family-wise, particularly for Gs (Figure 2D).
We also trained the models based on the Unified Coupling Map study generated by intersecting the TGF and the GEMTA studies (37). The model trained on the UCM study performed overall worse than the one trained on the individual sets (Supplementary Figure S1B; Supplementary Table S3). Notably, while the original PRECOG was limited by design only to class A receptors, PRECOGx can be used to predict coupling specificities of any receptor regardless of its class. In particular, PRECOGx is able to recapitulate well known Gs preferences for several class B receptors, Gi/o for class C and G12/13 and Gq/11 for Frizzled receptors (Figure 2E; Supplementary Table S4). To further validate the model, we have also compared PRECOGx predictions with reported couplings of four receptors from the TRUPATH platform (15) (Supplementary Table S5). A total of 112 non-olfactory GPCRs, corresponding to 28% (112 out of 393) of the human GPCRome, have reported coupling neither in GtoPDB nor in quantitative binding studies. We now provide a comprehensive repertoire of predicted couplings for the entire non-olfactory, human GPCRome(Supplementary Table S6). For example, the model is able to correctly predict TASR1 and TASR2 coupling preference for GNAI1 and GoA. These receptors are the members of T1R family of taste receptors which are involved in the detection of sweet-tasting compounds and have been shown to preferentially couple aforementioned G proteins (38). We also successfully predicted coupling preference for GNAI2 of TAS2R16, a taste receptor with a role in bitter-tasting shown to signal mainly through with GNAI2 in a Ric-8A mediated fashion (39).
Predicted intra-molecular contacts inform about transducer family specific signatures
We employed the ESM contact prediction model to predict 3D intra-molecular contacts for each GPCR sequence and used transduction information to compute differential, intra-molecular contact maps (see Methods). This yielded a bi-dimensional contact enrichment map which allows identifying contacts between secondary structure elements differing among transducer families (Figure 3A). Differential contact maps can be visualized on a 3D structure to highlight the intramolecular interactions most associated with a give coupling class (Figure 3B). Bi-dimensional contact maps can be linearized and aggregated on the basis of secondary structure elements to obtain a contact enrichment signature for each G protein transducer family (Figure 3D). We used these signatures to cluster the transducer families on the basis of their similarity which recapitulated the family membership and moreover highlighted the structural features responsible for a specific coupling, either at the individual gene or family level (Figure 3D). Every transducer family retains a highly specific intra-molecular contact signature. For instance Gs members are depleted in contacts at multiple regions, including the selectivity filter (40) formed by TM5 and TM6 regions flanking ICL3 (TM5-TM6 and ICL3-TM6), which is instead enriched in Gi/o members (Figure 3D). Overall, Gs receptors are characterised by a larger fraction of depleted intra-molecular contacts (Figure 3C), supporting evidences that Gs binding is associated with lower structural constraints and higher structural plasticity to accommodate the bulkier Gs C-terminal tail at the receptors binding crevice (40).
Predicting the functional consequences of GPCRs variants
We show applications of PRECOGx to interpret the functional consequences of GPCRs either disease mutations or alternative splicing variants. We predicted the functional consequences of 2470 missense variants (for 214 unique GPCRs) from ClinVar with PRECOGx (Supplementary Table S7). We have also predicted the effects of interface mutations known to affect the interaction of G proteins with GPCRs (Supplementary Table S8). Whenever a mutation is inputted, PRECOGx calculates the coupling probabilities for both the mutant and wild type forms (Figure 4). By comparing predicted couplings for the variants with the corresponding wild-types it is possible to identify the mutations leading to a switch in coupling, i.e. either gain (i.e. mutant coupled vs. WT uncoupled) or loss (mutant uncoupled vs. WT coupled) (Figure 4A; Supplementary Table S7;Methods). For example, the variant MC1R p.D294H7x49 (dbSNP id: rs1805009; superscript refers to GPCRdb generic residue numbers) is classified as a risk factor for melanoma and is reported to lose the capability to stimulate cAMP levels (41). PRECOGx predicted that this mutation enhances the coupling towards several Gi/o family members, suggesting that the reduced cAMP levels might follow an increased inhibition of Adenylate Cyclase via Gi/o coupling (Figure 4A). Projections of the embeddings of the mutated sequence on the GPCRome embedded space allows the user to visualize the trajectory of the mutant with respect to the WT form (Figure 4B). Visualization of the mutation site in the structure panel of web interface allows the user to inspect the mutation site in the context of the coupling specific contact network which differentiates GNAI1 from GNAS (Figure 4C). Moreover, visualization of the attention map derived from the most important attention head of the best performing layer during classification, allowed us to interpret the effect of the D2947x49 mutation, which participate to a characteristic attention signature impinging on residue 170 (Figure 4D).
As an additional use case, we used PRECOGx to predict the impact of alternative splicing on GPCR signalling. We considered a total of 1141 protein-coding, alternatively spliced mRNA transcripts from 364 unique genes from GTEx (35) and we used the classifier to profile both canonical and alternatively spliced variants for binding probabilities. A total of 265 alternative splicing transcripts were predicted to change coupling classification (either gain or loss of binding with respect to the canonical sequence) for at least one binding partner (either G proteins or β-arrestins), out of which 105 were expressed in at least one tissue with an abundance equal or greater than 1TPM (Supplementary Table S9). Among our hits, we found several spliceforms previously reported to alter intracellular signalling (Supplementary Table S9) (42). For example, the TBXA2R alternative spliceform 2 is predicted to gain GNAS coupling with respect to the canonical one (Figure 5A, B). The PCA panel illustrates this functional effect by showing the TBXA2R spliceform 2 (red dot) approaching a cluster of GNAS coupled receptor (green dots) with respect to WT TBXA2R (blue dot; Figure 5A). While variation at the C-terminal is most often predicted to alter intracellular signalling, we predicted that also certain N-terminal variants might perturb intracellular signalling via allosteric mechanisms (Supplementary Figure S2). For example a N-terminal splice variant of GHRHR, which has been shown to alter the signalling properties (i.e. Gs vs β-arrestins), is also predicted to mildly alter corresponding couplings (Supplementary Table S9) (43).
DISCUSSION
We present a new method, called PRECOGx, to predict GPCRs coupling specificities which represents an improvement over its predecessor (PRECOG (18)). Our previous approach was trained on hand-crafted features comprising sequence-based descriptors, either from the 7TM bundle or the intra-cellular loops, which were found to be statistically associated with a certain coupling. This set of features was discrete, encompassing a few regions of the 7TM architecture, and was highly tailored to the experimental binding study that we used to train the model (i.e. 144 Class A GPCRs from the TGF assay). A key addition to this new resource is the use of protein embeddings derived from state-of-art protein language model (ESM1b) which has been pre-trained on hundreds of millions sequences. ESM embeddings encode intra-sequence amino acids contextual dependencies which have been shown to well recapitulate the structure and function of proteins (19). We therefore exploited the generalisability of this model to obtain deep, numerical representations for all human GPCRs, which allowed us to model the signalling properties of receptors from classes other than A, which were excluded from our previous analysis. The performances of PRECOGx for all the GPCR classes are even more remarkable if we consider that the training sets that we employed are generally enriched in Class A members.
The construction of our model entailed a critical and systematic assessment of the predictive power of classifier algorithms trained on distinct quantitative binding studies, such as TGFα shedding or GEMTA. While performances are overall comparable, we observe that optimal outcomes for certain interactors are study specific (e.g. GNA15 based on GEMTA assay or GNAS based on Shedding; Supplementary Table S2), suggesting that certain experimental settings might be more accurate and lead to more generalizable models for specific interaction partners. It is also possible that the observed slight differences might be due to intrinsic differences of the assays and generated binding data as well as to the different specific cutoff choices employed.
One clear advantage of the previous classifier was its inherent interpretability due to hand-crafted features. On the other hand, interpretability of transformers models such as the ESM is still an open area of research (44). Here we addressed this issue by outputting for each best performing embedding layer for a given coupling partner the attention map of the head receiving higher weights in the model, which is instrumental in understanding receptor's residue contextual dependencies associated with a certain coupling. Moreover, we also computed a map of differentially predicted contacts which allows us to visualize the intramolecular contacts recurring for certain couplings. We noted that different layers, encoding different contextual properties, are associated with different couplings. Understanding the structural, dynamical and functional nature of these couplings will be a matter of future investigations.
The new method also allows to predict the effect of mutations at virtually any position within the sequence as well as it can deal with larger variation such as splicing variants. On one hand, it can complement ongoing efforts to catalogue the functional impact of the myriad of cancer somatic mutations observed in GPCRs (7,45). On the other hand, our approach can provide mechanistic interpretation to recent systematic analysis showing the widespread role of alternative splicing to modulate GPCR signalling in healthy tissues (42). We also provide novel functionalities in the webserver frontend, such as the PCA panel, which allows the user to visualize the trajectories of variants with respect to a reference low-dimensional sequence space of the human GPCRome. Future efforts will focus on using more robust pre-trained models to account for mutation effects at the interaction interfaces with both the ligands as well as the transducers as well as within the network of intra-molecular contacts governing allosteric transitions.
In summary, the novel PRECOGx functionalities will be of great help to better understand GPCR signalling mechanisms, to interpret GPCRs disease variants, as well as to assist future receptor design efforts.
DATA AVAILABILITY
PRECOGx webserver is freely available at: https://precogx.bioinfolab.sns.it/.
The underlying code is freely available at: https://github.com/raimondilab/precogx.
Supplementary Material
ACKNOWLEDGEMENTS
We gratefully acknowledge the CINECA award, in collaboration with AIRC, for the availability of high performance computing resources and support. We gratefully acknowledge computational resources of the Center for High Performance Computing (CHPC) at Scuola Normale Superiore.
Contributor Information
Marin Matic, Laboratorio di Biologia Bio@SNS, Scuola Normale Superiore, Piazza dei Cavalieri 7, 56126, Pisa, Italy.
Gurdeep Singh, Heidelberg University Biochemistry Centre, 69120 Heidelberg, Germany; BioQuant, Heidelberg University, 69120 Heidelberg, Germany.
Francesco Carli, Laboratorio di Biologia Bio@SNS, Scuola Normale Superiore, Piazza dei Cavalieri 7, 56126, Pisa, Italy.
Natalia De Oliveira Rosa, Laboratorio di Biologia Bio@SNS, Scuola Normale Superiore, Piazza dei Cavalieri 7, 56126, Pisa, Italy.
Pasquale Miglionico, Laboratorio di Biologia Bio@SNS, Scuola Normale Superiore, Piazza dei Cavalieri 7, 56126, Pisa, Italy.
Lorenzo Magni, Laboratorio di Biologia Bio@SNS, Scuola Normale Superiore, Piazza dei Cavalieri 7, 56126, Pisa, Italy.
J Silvio Gutkind, Department of Pharmacology and Moores Cancer Center, University of CA, San Diego, La Jolla, CA 92093, USA.
Robert B Russell, Heidelberg University Biochemistry Centre, 69120 Heidelberg, Germany; BioQuant, Heidelberg University, 69120 Heidelberg, Germany.
Asuka Inoue, Graduate School of Pharmaceutical Sciences, Tohoku University, Sendai, Miyagi 980-8578, Japan.
Francesco Raimondi, Laboratorio di Biologia Bio@SNS, Scuola Normale Superiore, Piazza dei Cavalieri 7, 56126, Pisa, Italy.
SUPPLEMENTARY DATA
Supplementary Data are available at NAR Online.
FUNDING
F.R. was supported by the Italian Ministry of University and Research through the Department of excellence ‘Faculty of Sciences’ of Scuola Normale Superiore. The research leading to these results also received funding from the Italian Association for Cancer Research (AIRC) under My First AIRC Grant (MFAG) 2020 - ID. 24317 project – P.I. Raimondi Francesco. A.I. was funded by KAKENHI21H04791, 21H05113 and JPJSBP120213501 from the Japan Society for the Promotion of Science (JSPS); the LEAP JP20gm0010004 and the BINDS JP20am0101095 from the Japan Agency for Medical Research and Development (AMED); FOREST Program JPMJFR215T and JST Moonshot Research and Development Program JPMJMS2023 from the Japan Science and Technology Agency (JST); Daiichi Sankyo Foundation of Life Science; Takeda Science Foundation; The Uehara Memorial Foundation. G.S. and R.B.R. were funded by BMBF-funded de.NBI HD-HuB network, number #031A537C.
Conflict of interest statement. None declared.
REFERENCES
- 1. Hauser A.S., Attwood M.M., Rask-Andersen M., Schiöth H.B., Gloriam D.E.. Trends in GPCR drug discovery: new agents, targets and indications. Nat. Rev. Drug Discov. 2017; 16:829–842. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 2. Wettschureck N., Offermanns S.. Mammalian g proteins and their cell type specific functions. Physiol. Rev. 2005; 85:1159–1204. [DOI] [PubMed] [Google Scholar]
- 3. Smith J.S., Lefkowitz R.J., Rajagopal S.. Biased signalling: from simple switches to allosteric microprocessors. Nat. Rev. Drug Discov. 2018; 17:243–260. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 4. Insel P.A., Tang C.-M., Hahntow I., Michel M.C.. Impact of GPCRs in clinical medicine: monogenic diseases, genetic variants and drug targets. Biochim. Biophys. Acta. 2007; 1768:994–1005. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 5. Wu V., Yeerna H., Nohata N., Chiou J., Harismendy O., Raimondi F., Inoue A., Russell R.B., Tamayo P., Gutkind J.S.. Illuminating the Onco-gpcrome: novel g protein-coupled receptor-driven oncocrine networks and targets for cancer immunotherapy. J. Biol. Chem. 2019; 294:11062–11086. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 6. Ramms D.J., Raimondi F., Arang N., Herberg F.W., Taylor S.S., Gutkind J.S.. Gαs–Protein kinase a (PKA) pathway signalopathies: the emerging genetic landscape and therapeutic potential of human diseases driven by aberrant Gαs-PKA signaling. Pharmacol. Rev. 2021; 73:155–197. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 7. Raimondi F., Inoue A., Kadji F.M.N., Shuai N., Gonzalez J.-C., Singh G., de la Vega A.A., Sotillo R., Fischer B., Aoki J.et al.. Rare, functional, somatic variants in gene families linked to cancer genes: GPCR signaling as a paradigm. Oncogene. 2019; 38:6491–6506. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 8. Vukotic R., Raimondi F., Brodosi L., Vitale G., Petroni M.L., Marchesini G., Andreone P.. The effect of liraglutide on β-Blockade for preventing variceal bleeding: a case series. Ann. Intern. Med. 2020; 173:404–405. [DOI] [PubMed] [Google Scholar]
- 9. Urban D.J., Roth B.L.. DREADDs (Designer receptors exclusively activated by designer drugs): chemogenetic tools with therapeutic utility. Annu. Rev. Pharmacol. Toxicol. 2015; 55:399–417. [DOI] [PubMed] [Google Scholar]
- 10. Hauser A.S., Kooistra A.J., Munk C., Heydenreich F.M., Veprintsev D.B., Bouvier M., Babu M.M., Gloriam D.E.. GPCR activation mechanisms across classes and macro/microscales. Nat. Struct. Mol. Biol. 2021; 28:879–888. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 11. Okamoto H.H., Miyauchi H., Inoue A., Raimondi F., Tsujimoto H., Kusakizako T., Shihoya W., Yamashita K., Suno R., Nomura N.et al.. Cryo-EM structure of the human MT1–Gi signaling complex. Nat. Struct. Mol. Biol. 2021; 28:694–701. [DOI] [PubMed] [Google Scholar]
- 12. Resolving GPCR bias Nat. Chem. Biol. 2022; 18:237. [DOI] [PubMed] [Google Scholar]
- 13. Inoue A., Raimondi F., Ngako Kadji F.M., Singh G., Kishi T., Uwamizu A., Ono Y., Shinjo Y., Ishida S., Arang N.et al.. Illuminating G-protein-coupling selectivity of GPCRs. Cell. 2019; 177:1933–1947. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 14. Inoue A., Ishiguro J., Kitamura H., Arima N., Okutani M., Shuto A., Higashiyama S., Ohwada T., Arai H., Makide K.et al.. TGFα shedding assay: an accurate and versatile method for detecting GPCR activation. Nat. Methods. 2012; 9:1021–1029. [DOI] [PubMed] [Google Scholar]
- 15. Olsen R.H.J., DiBerto J.F., English J.G., Glaudin A.M., Krumm B.E., Slocum S.T., Che T., Gavin A.C., McCorvy J.D., Roth B.L.et al.. TRUPATH, an open-source biosensor platform for interrogating the GPCR transducerome. Nat. Chem. Biol. 2020; 16:841–849. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 16. Avet C., Mancini A., Breton B., Le Gouill C., Hauser A.S., Normand C., Kobayashi H., Gross F., Hogue M., Lukasheva V.et al.. Effector membrane translocation biosensors reveal g protein and βarrestin coupling profiles of 100 therapeutically relevant GPCRs. Elife. 2022; 11:e74101. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 17. Harding S.D., Sharman J.L., Faccenda E., Southan C., Pawson A.J., Ireland S., Gray A.J.G., Bruce L., Alexander S.P.H., Anderton S.et al.. The IUPHAR/BPS guide to PHARMACOLOGY in 2018: updates and expansion to encompass the new guide to IMMUNOPHARMACOLOGY. Nucleic Acids Res. 2018; 46:D1091–D1106. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 18. Singh G., Inoue A., Gutkind J.S., Russell R.B., Raimondi F.. PRECOG: PREdicting COupling probabilities of G-protein coupled receptors. Nucleic Acids Res. 2019; 47:W395–W401. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 19. Rives A., Meier J., Sercu T., Goyal S., Lin Z., Liu J., Guo D., Ott M., Zitnick C.L., Ma J.et al.. Biological structure and function emerge from scaling unsupervised learning to 250 million protein sequences. Proc. Natl. Acad. Sci. 2021; 118:e2016239118. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 20. Vaswani A., Shazeer N., Parmar N., Uszkoreit J., Jones L., Gomez A.N., Kaiser Ł., Polosukhin I.. Attention is all you need. Adv. Neural Inf. Process. Syst. 2017; 2017:5999–6009. [Google Scholar]
- 21. Yang K.K., Wu Z., Bedbrook C.N., Arnold F.H.. Learned protein embeddings for machine learning. Bioinformatics. 2018; 34:2642–2648. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 22. Alley E.C., Khimulya G., Biswas S., AlQuraishi M., Church G.M.. Unified rational protein engineering with sequence-based deep representation learning. Nat. Methods. 2019; 16:1315–1322. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 23. Tunyasuvunakool K., Adler J., Wu Z., Green T., Zielinski M., Žídek A., Bridgland A., Cowie A., Meyer C., Laydon A.et al.. Highly accurate protein structure prediction for the human proteome. Nature. 2021; 596:590–596. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 24. Hauser A.S., Avet C., Normand C., Mancini A., Inoue A., Bouvier M., Gloriam D.E.. Common coupling map advances GPCR-G protein selectivity. Elife. 2022; 11:e74107. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 25. Salzberg S.L. On comparing classifiers: pitfalls to avoid and a recommended approach. Data Min. Knowl. Discov. 1997; 1:317–328. [Google Scholar]
- 26. Szklarczyk D., Gable A.L., Lyon D., Junge A., Wyder S., Huerta-Cepas J., Simonovic M., Doncheva N.T., Morris J.H., Bork P.et al.. STRING v11: protein-protein association networks with increased coverage, supporting functional discovery in genome-wide experimental studys. Nucleic Acids Res. 2019; 47:D607–D613. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 27. Alanis-Lobato G., Andrade-Navarro M.A., Schaefer M.H.. HIPPIE v2.0: enhancing meaningfulness and reliability of protein-protein interaction networks. Nucleic Acids Res. 2017; 45:D408–D414. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 28. del Toro N., Shrivastava A., Ragueneau E., Meldal B., Combe C., Barrera E., Perfetto L., How K., Ratan P., Shirodkar G.et al.. The intact database: efficient access to fine-grained molecular interaction data. Nucleic Acids Res. 2022; 50:D648–D653. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 29. Eddy S.R. Accelerated profile HMM searches. PLoS Comput. Biol. 2011; 7:e1002195. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 30. Mistry J., Chuguransky S., Williams L., Qureshi M., Salazar G.A., Sonnhammer E.L.L., Tosatto S.C.E., Paladin L., Raj S., Richardson L.J.et al.. Pfam: the protein families database in 2021. Nucleic Acids Res. 2021; 49:D412–D419. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 31. Rao R., Liu J., Verkuil R., Meier J., Canny J.F., Abbeel P., Sercu T., Rives A.. MSA transformer. 2021; bioRxiv doi:13 February 2021, preprint: not peer reviewed 10.1101/2021.02.12.430858. [DOI]
- 32. Kooistra A.J., Mordalski S., Pándy-Szekeres G., Esguerra M., Mamyrbekov A., Munk C., Keserű G.M., Gloriam D.E.. GPCRdb in 2021: integrating GPCR sequence, structure and function. Nucleic Acids Res. 2021; 49:D335–D343. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 33. Evans R., O’Neill M., Pritzel A., Antropova N., Senior A., Green T., Žídek A., Bates R., Blackwell S., Yim J.et al.. Protein complex prediction with alphafold-Multimer. 2022; bioRxiv doi:10 March 2022, preprint: not peer reviewed 10.1101/2021.10.04.463034. [DOI]
- 34. Bailey M.H., Tokheim C., Porta-Pardo E., Sengupta S., Bertrand D., Weerasinghe A., Colaprico A., Wendl M.C., Kim J., Reardon B.et al.. Comprehensive characterization of cancer driver genes and mutations. Cell. 2018; 173:371–385. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 35. Ardlie K.G., Deluca D.S., Segre A.V., Sullivan T.J., Young T.R., Gelfand E.T., Trowbridge C.A., Maller J.B., Tukiainen T., Lek M.et al.. The genotype-tissue expression (GTEx) pilot analysis: multitissue gene regulation in humans. Science. 2015; 348:648–660. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 36. Altschul S.F., Madden T.L., Schäffer A.A., Zhang J., Zhang Z., Miller W., Lipman D.J.. Gapped BLAST and PSI-BLAST: a new generation of protein database search programs. Nucleic Acids Res. 1997; 25:3389–3402. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 37. Hauser A.S., Avet C., Normand C., Mancini A., Inoue A., Bouvier M., Gloriam D.E.. GPCR-G protein selectivity – a unified meta-analysis. 2021; bioRxiv doi:08 September 2021, preprint: not peer reviewed 10.1101/2021.09.07.459250. [DOI] [PMC free article] [PubMed]
- 38. Sainz E., Cavenagh M.M., LopezJimenez N.D., Gutierrez J.C., Battey J.F., Northup J.K., Sullivan S.L.. The G-protein coupling properties of the human sweet and amino acid taste receptors. Dev. Neurobiol. 2007; 67:948–959. [DOI] [PubMed] [Google Scholar]
- 39. Fenech C., Patrikainen L., Kerr D.S., Grall S., Liu Z., Laugerette F., Malnic B., Montmayeur J.P.. Ric-8A, a galpha protein guanine nucleotide exchange factor potentiates taste receptor signaling. Front. Cell. Neurosci. 2009; 3:11. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 40. Capper M.J., Wacker D.. Structural biology: a complex story of receptor signalling. Nature. 2018; 558:529–530. [DOI] [PubMed] [Google Scholar]
- 41. Fernandez L.P., Milne R.L., Bravo J., Lopez J.M., Avilés J.A., Longo M.I., Benítez J., Lázaro P., Ribas G.. MC1R: three novel variants identified in a malignant melanoma association study in the spanish population. Carcinogenesis. 2007; 28:1659–1664. [DOI] [PubMed] [Google Scholar]
- 42. Marti-Solano M., Crilly S.E., Malinverni D., Munk C., Harris M., Pearce A., Quon T., Mackenzie A.E., Wang X., Peng J.et al.. Combinatorial GPCR isoform expression impacts signalling and drug responses. Nature. 2020; 587:659–656. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 43. Cong Z., Zhou F., Zhang C., Zou X., Zhang H., Wang Y., Zhou Q., Cai X., Liu Q., Li J.et al.. Constitutive signal bias mediated by the human GHRHR splice variant 1. Proc. Natl. Acad. Sci. USA. 2021; 118:e2106606118. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 44. Voita E., Talbot D., Moiseev F., Sennrich R., Titov I.. Analyzing multi-head self-attention: specialized heads do the heavy lifting, the rest can be pruned. ACL 2019 - 57th Annu. Meet. Assoc. Comput. Linguist. Proc. Conf. 2019; [Google Scholar]
- 45. Huh E., Gallion J., Agosto M.A., Wright S.J., Wensel T.G., Lichtarge O.. Recurrent high-impact mutations at cognate structural positions in class a g protein-coupled receptors expressed in tumors. Proc. Natl. Acad. Sci. USA. 2021; 118:e2113373118. [DOI] [PMC free article] [PubMed] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Supplementary Materials
Data Availability Statement
PRECOGx webserver is freely available at: https://precogx.bioinfolab.sns.it/.
The underlying code is freely available at: https://github.com/raimondilab/precogx.