Literature DB >> 35033002

Assigning protein function from domain-function associations using DomFun.

Juan A G Ranea1,2,3, Pedro Seoane-Zonjic1,2,3, Elena Rojano1,3, Fernando M Jabato1,3, James R Perkins4,5,6, José Córdoba-Caballero1, Federico García-Criado1, Ian Sillitoe7, Christine Orengo7.   

Abstract

BACKGROUND: Protein function prediction remains a key challenge. Domain composition affects protein function. Here we present DomFun, a Ruby gem that uses associations between protein domains and functions, calculated using multiple indices based on tripartite network analysis. These domain-function associations are combined at the protein level, to generate protein-function predictions.
RESULTS: We analysed 16 tripartite networks connecting homologous superfamily and FunFam domains from CATH-Gene3D with functional annotations from the three Gene Ontology (GO) sub-ontologies, KEGG, and Reactome. We validated the results using the CAFA 3 benchmark platform for GO annotation, finding that out of the multiple association metrics and domain datasets tested, Simpson index for FunFam domain-function associations combined with Stouffer's method leads to the best performance in almost all scenarios. We also found that using FunFams led to better performance than superfamilies, and better results were found for GO molecular function compared to GO biological process terms. DomFun performed as well as the highest-performing method in certain CAFA 3 evaluation procedures in terms of [Formula: see text] and [Formula: see text] We also implemented our own benchmark procedure, Pathway Prediction Performance (PPP), which can be used to validate function prediction for additional annotations sources, such as KEGG and Reactome. Using PPP, we found similar results to those found with CAFA 3 for GO, moreover we found good performance for the other annotation sources. As with CAFA 3, Simpson index with Stouffer's method led to the top performance in almost all scenarios.
CONCLUSIONS: DomFun shows competitive performance with other methods evaluated in CAFA 3 when predicting proteins function with GO, although results vary depending on the evaluation procedure. Through our own benchmark procedure, PPP, we have shown it can also make accurate predictions for KEGG and Reactome. It performs best when using FunFams, combining Simpson index derived domain-function associations using Stouffer's method. The tool has been implemented so that it can be easily adapted to incorporate other protein features, such as domain data from other sources, amino acid k-mers and motifs. The DomFun Ruby gem is available from https://rubygems.org/gems/DomFun . Code maintained at https://github.com/ElenaRojano/DomFun . Validation procedure scripts can be found at https://github.com/ElenaRojano/DomFun_project .
© 2022. The Author(s).

Entities:  

Keywords:  CAFA; CATH; DomFun; Function prediction; Protein domains

Mesh:

Substances:

Year:  2022        PMID: 35033002      PMCID: PMC8761305          DOI: 10.1186/s12859-022-04565-6

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

Determining protein function is one of the major goals of bioinformatics. A key factor influencing the role of a given protein is its domain composition [1, 2]. Although domains can have distinct functions when examined individually, their combination within a given protein is what gives rise to its overall role in cellular processes [3]. As such, we must first understand individual domains and then investigate how they contribute to protein function. Approaches like dcGO use information from resources such as the Gene Ontology (GO) [4, 5], to statistically infer domain annotation [6]. Various features are important for function prediction, including sequence homology and conserved structure, which are used to classify protein domains by resources such CATH-Gene3D [7, 8], which uses a hierarchical classification system with the most specific group being the homologous superfamily [9]. Within the homologous superfamilies, domains can be further sub-divided into functional families (FunFams), based on shared patterns of sequence conservation [10]. Such domain families have been used by algorithms such as FunFHMMer to predict function at the protein level [9]. Furthermore, FunFam domain information has been used to predict protein functional sites using machine learning [11]. In recent years, we have developed tools to analyse and extract information from network-based data structures [12, 13]. We used them to find associations between pathological phenotypes and genomic mutations [14-17], and predict the genes involved in the development of rare diseases [18]. Nevertheless, without adequate functional knowledge of the proteins encoded by these genes, we cannot fully understand the underlying mechanisms leading to disease. Here, we present DomFun, a framework that uses associations between protein domains and functional annotation to predict protein function (Fig. 1).
Fig. 1

Workflow of the procedure followed in this study. We first built the domain-protein-function tripartite network. Then, we calculated associations between domains and functional annotations (through shared proteins) with NetAnalyzer. Once calculated, we combine these domain-function associations to predict proteins function with DomFun. For a given protein, DomFun obtains its constituent domains and their associated functions. These domain-function association values are combined to obtain protein-function scores

These associations are calculated by exploiting tripartite networks connecting domains and functional groups via proteins [19], using GO terms and pathways from KEGG [20] and Reactome [21]. For a given protein, DomFun obtains its constituent domains and their functional associations. The association scores are then combined to predict functional annotation. We validated our method using the prediction benchmark of the third version of the Critical Assessment of Functional Annotation challenge (CAFA 3) [22]. This evaluation method is widely used to evaluate protein function prediction methods. We focussed on GO annotation for proteins from multiple organisms in the three GO sub-ontologies: molecular function (GOMF), biological process (GOBP) and cellular component (GOCC). We have also developed and applied our own benchmarking protocol, named Pathway Prediction Performance (PPP). DomFun can be used to predict protein function for multiple organisms for which protein domain and functional annotation information is available. Although we used CATH-Gene3D annotation in this work, other features can be used. It can be downloaded from https://rubygems.org/gems/DomFun. Ruby code is available from https://github.com/ElenaRojano/DomFun and the workflow from https://github.com/ElenaRojano/DomFun_project. Technical information to install and use DomFun is provided in these repositories. Workflow of the procedure followed in this study. We first built the domain-protein-function tripartite network. Then, we calculated associations between domains and functional annotations (through shared proteins) with NetAnalyzer. Once calculated, we combine these domain-function associations to predict proteins function with DomFun. For a given protein, DomFun obtains its constituent domains and their associated functions. These domain-function association values are combined to obtain protein-function scores

Implementation

We have developed and implemented DomFun, a tool to predict function for a given protein based on associations between its constituent domains and functions, obtained from various annotation-databases. Associations are calculated using a tripartite network comprised of domains, proteins and functional annotation. The DomFun algorithm works in the following manner: Based on a training dataset, protein-domain and protein-function annotation data are combined to produce a tripartite network of 3 layers: domains-proteins-functions. This tripartite network is analysed using the NetAnalyzer software [12]. NetAnalyzer take as input a multipartite network and calculates associations between different layers within this network. In the context of this work, the layers are: domains, proteins and functions, and the associations are calculated between the domains and functions layers, bases on the connections via proteins. The output is therefore a list of pairs of domains and functions, with corresponding association values. Lists, with their corresponding association values, were calculated for 4 different association indices, mathematical details of which are described in the next section. Then, given a testing protein, DomFun predicts function for this protein by obtaining all of its annotated domains and searching for their associated functions in the list generated by NetAnalyzer. The scores for these associated functions are then combined using the methods whose mathematical formulae are described below, to obtain overall scores, which represent the predicted functions for the protein. An overview of the architecture of the software implementation is described in Fig. 1.

Protein, domain and annotation data sources

To build the domain-protein-function tripartite networks used to calculate the domain-function associations with DomFun, two types of relations were combined: protein-function and protein-domain. The workflow followed to perform the different steps explained next and data download links are included in a GitHub repository at https://github.com/ElenaRojano/DomFun_workflow.

Protein-function annotation

We used two datasets to establish protein-function relations. The first dataset was based on the functional annotation included in the third Critical Assessment of Functional Annotation challenge (CAFA 3) [22]. We used 66,841 protein identifiers available for the CAFA 3 training set (35,086 annotated in GOMF, 50,813 in GOBP and 49,328 in GOCC) to construct the protein-annotation layer for six tripartite networks. This information was downloaded from CAFA 3 repository at https://www.biofunctionprediction.org/cafa-targets/CAFA3_training_data.tgz. The second dataset was downloaded from UniProt (release 2021_02). We obtained 23,391,902 proteins both manually curated (Swiss-Prot) and computationally inferred (TrEMBL) for multiple species. We also downloaded their annotations in GOMF, GOBP, GOCC, KEGG and Reactome. We discarded proteins with GO annotation tagged as Inferred from Electronic Annotation (IEA) to ensure high-quality annotations for our study. We also discarded all protein tagged as fragments and protein fusions. We used this information to construct the protein-annotation layer for ten different tripartite networks. After these filters, we were left with 4,283,876 annotated proteins. Please note that the same protein may have annotation in any of the GO sub-ontologies, KEGG or Reactome.

Protein-domain annotation

To establish protein-domain relations, we used protein domains classified into homologous superfamilies and FunFams from the protein structure classification database CATH-Gene3D [8]. Superfamily classification is performed by grouping sequences likely to have an evolutionary relationship [9]. FunFams are a sub-classification of superfamilies based on shared patterns of sequence conservation related to function determining residues [23]. For this analysis, we used the CATH-Gene3D release v4_3_0, including 1,307,795 proteins from 1705 species, 4245 different superfamilies and 171,425 FunFams.

Tripartite network construction and association index calculation

We obtained multiple sets of protein-function and protein-domain relations. In total we built 16 networks connecting domains to functional annotation via shared proteins, one for each combination of protein-domain and protein-function datasets. These domain-protein-function networks were analysed with NetAnalyzer, a tool that calculates associations in multipartite networks [12]. We employed this tool to calculate domain-function associations using the Jaccard similarity index (eq. 1), Simpson index (eq. 2), Pearson correlation coefficient (PCC) (eq. 3) and the hypergeometric index (HyI) (eq. 4), as described in [24].where and are the set of protein nodes connected to a given domain node D and a function node F, respectively, and is the total number of protein nodes in the network.

Protein function prediction based on domain-function associations

The domain-function associations calculated using the above methods were used to predict protein function using DomFun. First, for a given protein, associated with a specific UniProt identifier, DomFun searches for its constituent domains within CATH-Gene3D. If domains are found, it then searches for any functions associated with them. If a protein contains multiple domains associated with the same functional annotation (Fig.  1), DomFun integrates the association values into a single combined score. This leads to a list of possible functions for the protein, ranked based on the strength of the domain-function associations, as described in the next section. By calculating this score for all functions associated with at least one domain for a given protein, we obtain a vector of scores, which represents the predicted functions for the protein. DomFun outputs a table of predicted functions for each protein, containing the UniProt identifier, the domains for that protein classified according to CATH-Gene3D superfamilies or FunFams, the predicted functions (GOMF, GOBP, GOCC, KEGG and Reactome) and the combined score for each putative protein-function association.

Combining domain-function association values

As mentioned above, if a protein contains multiple domains with the same function, these scores are combined into a single value. In the case of HyI values, these must be transformed into P-values by calculating their antilogarithm (base=10), which represents the probability of having an equal or greater number of interactions between a pair of nodes (i.e., proteins connecting domains and functional annotations) than would be expected by chance [24]. To integrate these P-values we use the Fisher’s combined probability test (eq. 5).Where is the HyI-derived P-value for the number of interactions between a function j and the domain i, and 2k represents the degrees of freedom. k represents the total number of domains for each predicted protein. This formula gives the test statistic, from which the combined P-value can be derived, based on the distribution and degrees of freedom. When combining association values produced using PCC, Jaccard or Simpson index, Stouffer’s method was used to obtain, for each of the three metrics, combined association values between proteins and functions (eq. 6) [25]. For this, the association values are first converted to Z-scores and then combined using the following formula:For a given protein, an overall Z-score was calculated for each of the functions j associated with at least one domain i within this protein. This was calculated by summing the scores for the domains in the protein associated with the given function and dividing by the square root of k—the number of domains in the protein associated with the given function. The scores were calculated for each given domain-function association value, by subtracting the mean association value for all domain-function associations, and dividing by the standard deviation.Where a represents the association values for all calculated domain-function associations; represents the association value for the domain i with a given function j; represents the mean association value for all domain-function associations; and s represents the standard deviation for the values in a.

DomFun evaluation methods

We evaluated the ability of DomFun to predict protein function using the CAFA 3 prediction benchmark for GOBP, GOMF and GOCC, using the methodology described in [26] with data available from the CAFA 3 website (https://www.biofunctionprediction.org/cafa). We also developed our own validation procedure to evaluate DomFun in terms of predicting function for KEGG and Reactome pathways. We refer to this procedure as Pathway Prediction Performance (PPP). We also used PPP for GOMF, GOBP and GOCC annotations — as similar evaluation values for the three GO sub-ontologies to those found with CAFA 3 would suggest that our benchmark procedure is reliable and lend confidence to the interpretation of the PPP results for KEGG and Reactome. For this validation, we looked at the maximum value of the harmonic mean () of precision and recall (PR), and , based on the semantic distance between predictions and known annotations, in line with CAFA 3. In total, we made eight separate sets of predictions, for the four different association metrics, separately for FunFams and superfamilies. Rather than compare all eight sets against all methods benchmarked within the CAFA 3 results (146 distinct methods), we initially compared the eight sets to each other, to see which performed best across all testing scenarios. The top performing method was then compared against the best performing method from CAFA 3 for each scenario.

CAFA 3 prediction benchmark

We used data from CAFA 3, a challenge aimed at comparing various methods for predicting protein function, to evaluate the predictive capability of DomFun [22]. In brief, the idea was that competitors would predict annotation for a number of proteins, and then compare their predictions to experimentally determined functional annotation obtained during a given time-period (-). As a result, they acquired and published a dataset including a list of the proteins that obtained annotation during this time period, their annotations at the start of the challenge () and at the end of the challenge (), and a benchmarking procedure with scripts to implement it. The CAFA 3 dataset includes various sub-divisions to evaluate the prediction methods, as explained in [22, 26], including two modes of evaluation: full and partial, and two types of annotation: no knowledge and limited knowledge. Full evaluation penalizes models if they cannot predict for all GO sub-ontology terms; partial mode evaluates without this penalization. With respect to the different proteins in the benchmark testing set, no knowledge proteins are those with no experimentally verified annotation in any of the three GO sub-ontologies at time t, but that accumulate at least one verified GO term between t and t. Limited knowledge includes proteins with annotation in at least one GO sub-ontology, but not in all three at t [22, 26]. We used different combinations to see with which one of our methods performed best in different scenarios. We used the CAFA protein-centric evaluation mode. It calculates maximum F-measure , using PR values for the proteins for which predictions could be made, to ascertain the performance of the predictive method. It also calculates the minimum semantic distance () between two GO terms (one from prediction and the other from the ground truth, i.e. CAFA 3). In addition, it calculates coverage, defined in this work as the fraction of benchmark proteins for which DomFun could make predictions. Formulae of these evaluation metrics are described in [26]. The CAFA 3 benchmark files include 3089 proteins. We consider this set as our testing set. We predicted GOMF, GOBP and GOCC for 2483 proteins from this set. As occurred with the training proteins set, we lost 606 testing proteins as they had no CATH domains. This loss affects prediction performance in terms of coverage. We compared DomFun performance against the two baseline models, Naïve and BLAST. We generated both models following instructions provided by CAFA authors [22]. We also compared the performance of our methods with the top scoring methods from CAFA 3, in terms of both and , for all three ontologies and all four combinations of evaluation type and mode. Analyses were made using all organisms. According to CAFA submission rules, prediction scores must be within the (0.00,1.00] range. Therefore, we normalized the combined scores for each protein. In the case of scores calculated using Stouffer’s method, as PCC values were within a range of [-1.00,1.00], their absolute values were calculated before they were combined. For Jaccard and Simpson combined scores, normalization was performed as follows: combined scores were transformed to Z-scores and any value with absolute value greater than 2 was set to 2. Finally, the distribution was normalised to the (0.00,1.00] range by dividing each value by the distribution range (4) and adding 0.5. In the case of scores calculated using Fisher’s method, i.e. the combined HyI derived P-values, we transformed them into the (0.00,1.00] range by subtracting the P-value generated by the method from 1. To avoid spurious predictions, we removed predictions with a transformed score lower than 0.001. To compare the results of the different association/combination methods used by DomFun on the CAFA 3 testing proteins, for both FunFams and superfamilies, we compared their results in terms of and using the Friedman test. If this gave a significant result (), meaning there is a difference between groups, this was followed by post-hoc pair-wise Dunn’s tests to identify a significant difference between the top ranked method and the other methods () [27].

Pathway prediction performance

In the pathway prediction performance (PPP) validation procedure, we predicted protein function (across all three GO sub-ontologies, KEGG and Reactome) for all proteins that were used to build the domain-protein-function tripartite networks. We compared these predicted associations to the original protein-function associations, and built precision-recall (PR) curves. For this, all predicted annotations that matched the original annotation were considered true positives; all predictions that did not match the original annotation were considered false positives. This additional validation procedure was necessary to evaluate the results obtained using KEGG and Reactome. As we had already validated the GO annotation using the CAFA 3 benchmarking procedure, we were able to use the PPP procedure to compare the results using KEGG and Reactome to the GO results and put them in the context of the CAFA 3 predictions. PR curves were generated using the ROCR package [28].

Results

We associated protein domains with functions by applying various metrics to tripartite networks formed by combining protein-domain and protein-function annotation via shared proteins. Functional annotation was obtained from the Gene Ontology molecular function (GOMF), biological process (GOBP) and cellular component (GOCC) sub-ontologies and KEGG and Reactome pathways. The domain-function associations were then used by DomFun for protein function prediction. Two validation procedures were used, one using the training and testing proteins from the CAFA 3 benchmark dataset [22], and another based on all Uniprot proteins (Pathway Prediction Performance, PPP).

CAFA 3 benchmark results

The CAFA 3 training set contains 98,567 proteins from multiple organisms, of which 50,813 had annotations in GOBP, 35,086 in GOMF and 49,328 in GOCC [22]. We used all proteins from these sets that had CATH-Gene3D annotation to build domain-protein-function tripartite networks for each of the sub-ontologies. In total, there were 41,453 proteins with domain and GOBP annotation, 30,650 with GOMF and 39,144 with GOCC, corresponding to a loss of 18.42%, 12.64% and 20.64% proteins, respectively, from the training set. We used the domain-function associations calculated for the CAFA 3 training proteins at to predict GO annotation for the 3,089 testing proteins included in CAFA 3, of which 2,483 had domain annotation. Predictions were compared to the annotation obtained for these proteins between and . We analysed the results to evaluate which combination of domain family, association and integration methods led to the most accurate predictions. This was performed separately for the FunFam and homologous superfamily classifications. We initially compared the results of each method to each other and to the two CAFA 3 baseline methods (BLAST and Naïve) in terms of maximum F-measure (Fig. 2). The exact values are shown in Table 1 for the CAFA 3 limited-knowledge, partial evaluation procedure. Full results for all four CAFA 3 evaluation procedures are shown in Additional file 1: Table S1. In terms of , we obtained higher values when using FunFam domains compared to superfamilies for all three GO sub-ontologies. In fact, using superfamily annotation, DomFun performed worse than the baseline methods in most cases. Better results were found in general when predicting both GOMF and GOCC annotation than GOBP; this trend also occurs with the top CAFA 3 methods [22].
Fig. 2

DomFun evaluation in terms of maximum F-measure () calculation when predicting for Gene Ontology (GO) molecular function (GOMF) (a), biological process (GOBP) (b) and cellular component (c) (GOCC) terms using the CAFA 3 prediction benchmark. The associations between GO terms and protein domains, classified using FunFams (FF) and superfamilies (SF) separately, were calculated using four different association indices: Jaccard (Jac), Simpson (Sim), Pearson correlation coefficient (PCC) and hypergeometric index (HyI), and combined using either Fisher’s method (Fis) or Stouffer’s method (Sto). Results for the baseline methods BLAST and Naïve are also included for comparison. Coverage (C) values for each method are included within the bars. The CAFA 3 evaluation procedure was set to partial mode and limited knowledge

Table 1

Maximum F-measure () scores obtained with DomFun using the CAFA 3 prediction benchmark

Domain classificationFAAssociation + combination methods
HyI + FisPCC+StoJac + StoSim+Sto
\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$F_{max}$$\end{document}Fmax values from PR curves (domain-FunFys associations for CAFA 3 target proteins)
 FunFamsGOMF0.6080.5530.5150.624
GOBP0.4520.4440.4430.492
GOCC0.5420.5290.5290.602
 SuperfamiliesGOMF0.3140.3470.3500.384
GOBP0.0990.1720.2380.174
GOCC0.2540.353 0.3980.340

The best performing methods for each domain/GO subontology combination are indicated in bold

FA Functional annotation, HyI hypergeometric index, Sim Simpson index, PCC Pearson correlation coefficient, Jac Jaccard index, Sto Stouffer’s combination method, Fis Fisher’s combined probability test. CAFA 3 evaluation procedure set to partial mode and limited knowledge

DomFun evaluation in terms of maximum F-measure () calculation when predicting for Gene Ontology (GO) molecular function (GOMF) (a), biological process (GOBP) (b) and cellular component (c) (GOCC) terms using the CAFA 3 prediction benchmark. The associations between GO terms and protein domains, classified using FunFams (FF) and superfamilies (SF) separately, were calculated using four different association indices: Jaccard (Jac), Simpson (Sim), Pearson correlation coefficient (PCC) and hypergeometric index (HyI), and combined using either Fisher’s method (Fis) or Stouffer’s method (Sto). Results for the baseline methods BLAST and Naïve are also included for comparison. Coverage (C) values for each method are included within the bars. The CAFA 3 evaluation procedure was set to partial mode and limited knowledge Maximum F-measure () scores obtained with DomFun using the CAFA 3 prediction benchmark The best performing methods for each domain/GO subontology combination are indicated in bold FA Functional annotation, HyI hypergeometric index, Sim Simpson index, PCC Pearson correlation coefficient, Jac Jaccard index, Sto Stouffer’s combination method, Fis Fisher’s combined probability test. CAFA 3 evaluation procedure set to partial mode and limited knowledge Simpson index with Stouffer’s method applied to FunFams ranked highest on average amongst all association indices implemented here using NetAnalyzer, for all evaluation procedures across all sub-ontologies, according to both and minimum semantic distance (). Moreover, for it was the best performing method in all cases, with the exception of the no knowledge, full evaluation (Type 1, Mode 1) comparison for the molecular function sub-ontology (Table 2). Similar results were seen for the output measure (Additional file 2: Table S2).
Table 2

DomFun ranking analysis based on comparing different evaluation methods

OntologyTypeModeFF-HyI-FisFF-PCC-StoFF-Jac-StoFF-Sim-StoSF-HyI-FisSF-PCC-StoSF-Jac-StoSF-Sim-Sto
GOMF112.54.54.52.58617
GOMF1223.53.518657
GOMF2123418675
GOMF2223418765
GOBP1123.53.518657
GOBP1223.53.518657
GOBP2123.53.518657
GOBP2223418657
GOCC1133318756
GOCC1223.53.518657
GOCC2123.53.518657
GOCC2223.53.518657

Type 1: no knowledge, type 2: limited knowledge. Mode 1: Full, mode 2: partial. FF FunFams, SF superfamilies. Jac Jaccard, Sim Simpson, PCC Pearson correlation coefficient, HyI hypergeometric, Sto Stouffer, Fis Fisher

DomFun ranking analysis based on comparing different evaluation methods Type 1: no knowledge, type 2: limited knowledge. Mode 1: Full, mode 2: partial. FF FunFams, SF superfamilies. Jac Jaccard, Sim Simpson, PCC Pearson correlation coefficient, HyI hypergeometric, Sto Stouffer, Fis Fisher We compared the results obtained by DomFun to the top results from CAFA 3 for all four evaluation procedure combinations and all three GO sub-ontologies (Table 3). DomFun was the top method using GOMF for the limited knowledge partial evaluation procedure and competitive in several other situations. Similar results were found for , with DomFun obtaining a lower score than the top CAFA 3 method for the no knowledge full evaluation procedure and the limited knowledge partial evaluation procedure (Additional file 3: Table S3). For both and , DomFun tended to obtain worse coverage than the best performing CAFA 3 method, although this was not always the case, particularly for . All values of and coverage, for all methods, sub-ontologies and validation procedures, are shown in Additional files 4 and 5: Tables S4 and S5.
Table 3

top values: DomFun (Simpson + Stouffer) vs. CAFA 3 methods

OntologyTypeModeTop DomFun \documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$F_{max}$$\end{document}FmaxDomFun coverageTop CAFA 3 \documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$F_{max}$$\end{document}FmaxCAFA 3 coverage
GOMF110.3570.710.6181
GOMF120.5670.410.6220.02
GOMF210.4310.490.6221
GOMF220.6240.490.6230.88
GOBP110.2750.460.3971
GOBP120.4020.460.4180.62
GOBP210.370.550.5981
GOBP220.4920.550.640.83
GOCC110.4120.490.6151
GOCC120.6060.490.9080
GOCC210.4220.510.6151
GOCC220.6020.510.8250

Type 1: no knowledge, type 2: limited knowledge. Mode 1: full evaluation, mode 2: partial evaluation

top values: DomFun (Simpson + Stouffer) vs. CAFA 3 methods Type 1: no knowledge, type 2: limited knowledge. Mode 1: full evaluation, mode 2: partial evaluation

Pathway prediction performance results

We further validated DomFun using the PPP validation procedure. Precision and recall (PR) curves for are shown in the Additional files 6 and 7: Figs. S1 and S2. values are shown in Table 4. As with CAFA 3 validation, we observe better AUC-PR values for FunFam predictions than superfamilies.
Table 4

Maximum F-measure () scores for precision and recall (PR) curves obtained with DomFun using the Pathway Prediction Performance benchmark procedure

Domains classificationFAAssociation + combination methods
HyI+FisPCC+StoJac+StoSim+Sto
\documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{mathrsfs} \usepackage{upgreek} \setlength{\oddsidemargin}{-69pt} \begin{document}$$F_{max}$$\end{document}Fmax values from PR curves (domains-FunFys associations from UniProt proteins)
 FunFamsGOMF0.7790.7490.7490.850
GOBP0.6430.6040.6040.714
GOCC0.7500.7040.7040.824
KEGG0.7300.7300.7300.822
Reactome0.7620.6800.6630.822
 SuperfamiliesGOMF0.2410.3700.3730.139
GOBP0.1960.2910.3050.089
GOCC0.2660.2210.2170.129
KEGG0.1320.3400.2710.494
Reactome0.1270.3440.3270.081

 The best performing methods for each domain/annotation source  combination are indicated in bold

FA Functional annotation, HyI hypergeometric index, PCC Pearson correlation coefficient, Jac Jaccard index, Sim Simpson index, Sto Stouffer’s method, Fis Fisher’s method

Maximum F-measure () scores for precision and recall (PR) curves obtained with DomFun using the Pathway Prediction Performance benchmark procedure The best performing methods for each domain/annotation source  combination are indicated in bold FA Functional annotation, HyI hypergeometric index, PCC Pearson correlation coefficient, Jac Jaccard index, Sim Simpson index, Sto Stouffer’s method, Fis Fisher’s method We compared the values calculated using PPP (Table 4) against those for the CAFA 3 benchmark (Table 1). We observed similar values for GOMF, GOCC and GOBP predictions for both CAFA 3 and PPP evaluations using FunFams. These results gives us confidence in the validity of DomFun for predicting KEGG and Reactome pathways. Interestingly, the predictions for these pathways lead to similar values to those calculated for GOMF and GOCC. The highest values for predictions using FunFams correspond to those calculated using Simpson index with Stouffer’s method, in line with the results obtained using the CAFA 3 dataset and lending confidence to the potential use of PPP as a further validation system that can be extended beyond GO to other annotation databases. With respect to the predictions performed with superfamilies, the values for GOMF, GOBP and GOCC were lower in comparison with FunFams, again suggesting that our methodology works better with FunFams, as also shown in the CAFA 3 results.

Discussion

We have presented DomFun, a novel approach to predict protein function based on associations between domains and functions. The method is based on the same protein domains classification system used by the FunFHMMer method [9], evaluated in CAFA 3 under the name of Orengo-FunFams [22]. Although both methods are based on similar underlying data, DomFun differs fundamentally from Orengo-FunFams in terms of how it assigns functions to the test proteins. Orengo-FunFams first assigns FunFam domains to a test protein then, for each of these FunFams, obtains corresponding GO term annotations, which are scored based on their frequency among the seed sequences for the given FunFam. Parental terms of these GO terms are also obtained. Finally, the set of all domain-GO terms annotations for the test protein IS considered. This differs markedly from our approach, which first obtains GO association values for all domains in a given protein based on tripartite network analysis, and then combines these values to produce a single score for each predicted protein-annotation association using data-fusion methods. Like the Orengo-FunFams method, DomFun performs particularly well for the no-knowledge partial evaluation and for GOMF. However, it performs less well in full evaluation procedures. The loss of training proteins due to the lack of CATH domains could explain this. As they will not form part of the association network, their information will not be available to make predictions and this could consequently decrease values. More concretely, we obtained Fmax values of 0.624 (GOMF) and 0.492 (GOBP) for the no knowledge partial evaluation procedure (full details in Table 3); for the Orengo-FunFams method these were 0.623 (GOMF) and 0.64 (GOBP). We also performed a comparison between our method and the Orengo-FunFams method using the CAFA 2 training/testing dataset (data not shown), in which the Orengo-FunFams method evaluation showed Fmax values of 0.58 for GOMF, and 0.39 for GOBP when making predictions for Homo sapiens (Figures and 7C and 7L of the CAFA 2 supplementary material [26]). These values were similar to those obtained with DomFun (Table 1) for GOMF calculated with Simpson index with Stouffer’s method (0.592) and slightly higher for GOBP calculated with the same method (0.341). Regarding coverage, we tended to obtain lower values than many of the top-performing CAFA 3 methods, particularly for FunFam predictions, although there were some exceptions, as shown in Table 3 and Additional file 3: Table S3. Again, we are currently limited to predicting for proteins for which domain annotation is available. However, the methodology presented here can easily be adapted to incorporate other protein features, such as amino acid k-mers or motifs. To this end have made all code fully available, allowing the user to analyse a tripartite network including any feature of interest. Future work could look into optimizing our system increasing the number of protein domains from other databases, such as Pfam or SCOP, or other protein features. We obtained better coverage when the associations were calculated using superfamilies than with FunFams, which is not surprising as not all sequences in a superfamily are classified into FunFams. FunFams are only generated for groups of sequences where at least one member has experimental characterisation [23, 29]. As such they can be considered more functionally coherent than superfamilies, which is likely to account for the improved performance. Simpson index with Stouffer’s combination method using FunFams was the best performing of all the methods implemented here for both the CAFA 3 and PPP benchmark, both for and . In previous work by Clancy and Hovig, the Simpson index was used to calculate the similarity between pairs of genes mapped to a protein interaction matrix [30]. In their study, the authors explain that the similarity between two genes can vary significantly depending on the number of proteins used for its calculation. To solve this problem they used the Simpson index, which normalises the results of the similarity calculation by the node that has the minimum number of connections (see eq. 2 in the Implementation section) [30]. We have a similar problem, as there can be a large discrepancy in size between the numbers of proteins mapping to each domain and function. We suggest that by using Simpson here, we reduce this problem by normalizing to the smaller of the two. Notably, there was much more variation in terms of performance for superfamilies. This may also be related to the network degree, this tended to be greater than for FunFams, as superfamilies tend to contain larger numbers of proteins. It should also be made clear that the homologous superfamily classification is based on domains having similar structures, but this does not necessarily mean they will have similar functions. To validate our results using the CAFA 3 data, we incorporated the original Matlab scripts (https://github.com/yuxjiang/CAFA2) into an automated system that is able to extract testing and training data from the benchmark dataset, build the tripartite networks to calculate associations and combine them to predict function for the testing proteins such that we could perform validation using CAFA3 in a high-throughput manner. These scripts are available from https://github.com/ElenaRojano/DomFun_project and can be used by others to validate their own method, or to validate adaptations of our methods, for example by adding additional protein features to the tripartite network. The PPP benchmark led to similar values compared to the CAFA 3 benchmark for all three GO sub-ontologies, especially for GOMF and GOCC. As such, we have confidence in the PPP procedure in terms of judging relative performance. Based on these assumptions, it would appear that DomFun has slightly greater accuracy when predicting KEGG and Reactome annotation than GO (Table 4). The results for GOMF and GOCC tended to be better than for GOBP, in line with CAFA 3. These differences are likely due to the distinct focus of the different annotation systems. GOBP terms can be quite varied regarding the different activities of proteins they encompass: these terms refer to biological processes that can involve a large number of distinct molecular activities, enzymatic reactions and regulatory processes. On the other hand, GOMF terms tend to represent more concrete molecular activities. As such, GOBP can be considered harder to predict for [31]. We hypothesize that proteins with similar molecular functions require similar domains to perform their activities, whereas proteins involved the same biological process might utilise a much wider range of domain structures, although this will also depend on the level of specificity of the term within the GO hierarchy. This is also commented on in the CAFA 2 manuscript, where they argue that predictors return different results depending on the type of ontology used, and that their size (number of elements), depth (maximum degree of specificity) and branching factor (number of total connections between nodes) can affect the results [26]. As mentioned above, the PPP benchmark showed better results for KEGG than GO. These resources include well-curated representations of specific metabolic pathways with shared catalytic activities performed by multiple proteins, which may explain these findings. Further work could investigate methodology to select the more specific GO terms using semantic similarity measures [32].

Conclusion

Results for both CAFA 3 and PPP validation show that, of the 8 prediction frameworks implemented here, combining the four association metrics with the two protein domain annotation types (superfamilies and FunFam), the best combination for making domain-function predictions with DomFun is the Simpson index with Stouffer’s method using FunFams. We have shown that protein domain associations based on network analysis can be useful for predicting protein function for multiple species, showing comparable performance when predicting GO annotation to other methods based on structural domain-based in the CAFA 3 challenge. We have also presented a novel validation system for protein function prediction that shows similar results to the CAFA 3 benchmark, but can also be extended to use KEGG and Reactome annotation. DomFun has been implemented in such a way that other protein features, such as different domain annotation classifications can also be integrated. Future work of DomFun should focus on improving domain-function associations using additional protein-features for protein annotation, more domain annotations and predicting for a greater range of functional systems.

Availability and requirements

Project name: DomFun Project home page: https://github.com/ElenaRojano/DomFun_project Operating system(s): Unix-like systems Programming language: Ruby, Matlab Other requirements: CAFA 3 benchmarking system used to compare methods License: GNU GPL Any restrictions to use by non-academics: None. Additional file 1. Table S1: F values for all DomFun methods and all combinations of evaluation scenarios and ontologies, compared to the highest equivalent value from CAFA 3 and the baseline methods. Type 1: no knowledge, type 2: limited knowledge. Mode 1: Full, mode 2: partial. FF: FunFams, SF: superfamilies. Jac: Jaccard, Sim: Simpson, PCC: Pearson correlation coe_cient, HyI: hypergeometric. Sto: Stou_er, Fis: Fisher. Additional file 2. Table S2: Additional file 3. Table S3: DomFun S Top vs. CAFA S Top (top means lowest score). Type 1: no knowledge, type 2: limited knowledge. Mode 1: Full, mode 2: partial. Additional file 4. Table S4: Coverage values for all DomFun methods and all combinations of evaluation scenarios and ontologies, compared to the highest equivalent value from CAFA 3 and the baseline methods. Type 1: no knowledge, type 2: limited knowledge. Mode 1: Full, mode 2: partial. FF: FunFams, SF: superfamilies. Jac: Jaccard, Sim: Simpson, PCC: Pearson correlation coefficient, HyI: hypergeometric. Sto: Stouffer, Fis: Fisher. Additional file 5. Table S5: S values for all DomFun methods and all combinations of evaluation scenarios and ontologies, compared to the highest equivalent value from CAFA 3 and the baseline methods. Type 1: no knowledge, type 2: limited knowledge. Mode 1: Full, mode 2: partial. FF: FunFams, SF: superfamilies. Jac: Jaccard, Sim: Simpson, PCC: Pearson correlation coefficient, HyI: hypergeometric. Sto: Stouffer, Fis: Fisher. Additional file 6. Fig. S1: Precision and recall curves to ascertain DomFun accuracy using domain-function associations with FunFams (PPP). funfamsPPP.pdf Prediction results for Gene Ontology (GO) molecular functions (GOMF, red curves), biological process (GOBP, blue curves), GOCC (green curves), KEGG (orange curves) and Reactome pathways (black curves) are shown. These curves compare DomFun results using associations between FunFam domains and functions calculated with (a) Jaccard index, (b) Pearson Correlation Coefficient (PCC), (c) hypergeometric index (HyI) and (d) Simpson index. The area under the precision-recall curve (AUC-PR) for each comparison is also shown. Additional file 7. Fig. S2: Precision and recall curves to ascertain DomFun accuracy using domain-function associations with superfamilies (PPP). superfamilyPPP.pdf Prediction results for Gene Ontology (GO) molecular functions (GOMF, red curves), biological process (GOBP, blue curves), GOCC (green curves), KEGG (orange curves) and Reactome pathways (black curves) are shown. These curves compare DomFun results using associations between superfamily domains and functions calculated with (a) Jaccard index, (b) Pearson Correlation Coefficient (PCC), (c) hypergeometric index (HyI) and (d) Simpson index. The area under the precision-recall curve (AUC-PR) for each comparison is also shown.
  25 in total

1.  Using networks to measure similarity between genes: association index selection.

Authors:  Juan I Fuxman Bass; Alos Diallo; Justin Nelson; Juan M Soto; Chad L Myers; Albertha J M Walhout
Journal:  Nat Methods       Date:  2013-12       Impact factor: 28.547

2.  DcGO: database of domain-centric ontologies on functions, phenotypes, diseases and more.

Authors:  Hai Fang; Julian Gough
Journal:  Nucleic Acids Res       Date:  2012-11-17       Impact factor: 16.971

3.  CATH FunFHMMer web server: protein functional annotations using functional family assignments.

Authors:  Sayoni Das; Ian Sillitoe; David Lee; Jonathan G Lees; Natalie L Dawson; John Ward; Christine A Orengo
Journal:  Nucleic Acids Res       Date:  2015-05-11       Impact factor: 16.971

4.  Functional classification of CATH superfamilies: a domain-based approach for protein function annotation.

Authors:  Sayoni Das; David Lee; Ian Sillitoe; Natalie L Dawson; Jonathan G Lees; Christine A Orengo
Journal:  Bioinformatics       Date:  2015-07-02       Impact factor: 6.937

5.  Systematic identification of phenotypically enriched loci using a patient network of genomic disorders.

Authors:  Armando Reyes-Palomares; Aníbal Bueno; Rocío Rodríguez-López; Miguel Ángel Medina; Francisca Sánchez-Jiménez; Manuel Corpas; Juan A G Ranea
Journal:  BMC Genomics       Date:  2016-03-15       Impact factor: 3.969

6.  CATH: an expanded resource to predict protein function through structure and sequence.

Authors:  Natalie L Dawson; Tony E Lewis; Sayoni Das; Jonathan G Lees; David Lee; Paul Ashford; Christine A Orengo; Ian Sillitoe
Journal:  Nucleic Acids Res       Date:  2016-11-28       Impact factor: 16.971

7.  FunFam protein families improve residue level molecular function prediction.

Authors:  Linus Scheibenreif; Maria Littmann; Christine Orengo; Burkhard Rost
Journal:  BMC Bioinformatics       Date:  2019-07-18       Impact factor: 3.169

8.  Protein function prediction using domain families.

Authors:  Robert Rentzsch; Christine A Orengo
Journal:  BMC Bioinformatics       Date:  2013-02-28       Impact factor: 3.169

9.  The CAFA challenge reports improved protein function prediction and new functional annotations for hundreds of genes through experimental screens.

Authors:  Naihui Zhou; Yuxiang Jiang; Timothy R Bergquist; Alexandra J Lee; Balint Z Kacsoh; Alex W Crocker; Kimberley A Lewis; George Georghiou; Huy N Nguyen; Md Nafiz Hamid; Larry Davis; Tunca Dogan; Volkan Atalay; Ahmet S Rifaioglu; Alperen Dalkıran; Rengul Cetin Atalay; Chengxin Zhang; Rebecca L Hurto; Peter L Freddolino; Yang Zhang; Prajwal Bhat; Fran Supek; José M Fernández; Branislava Gemovic; Vladimir R Perovic; Radoslav S Davidović; Neven Sumonja; Nevena Veljkovic; Ehsaneddin Asgari; Mohammad R K Mofrad; Giuseppe Profiti; Castrense Savojardo; Pier Luigi Martelli; Rita Casadio; Florian Boecker; Heiko Schoof; Indika Kahanda; Natalie Thurlby; Alice C McHardy; Alexandre Renaux; Rabie Saidi; Julian Gough; Alex A Freitas; Magdalena Antczak; Fabio Fabris; Mark N Wass; Jie Hou; Jianlin Cheng; Zheng Wang; Alfonso E Romero; Alberto Paccanaro; Haixuan Yang; Tatyana Goldberg; Chenguang Zhao; Liisa Holm; Petri Törönen; Alan J Medlar; Elaine Zosa; Itamar Borukhov; Ilya Novikov; Angela Wilkins; Olivier Lichtarge; Po-Han Chi; Wei-Cheng Tseng; Michal Linial; Peter W Rose; Christophe Dessimoz; Vedrana Vidulin; Saso Dzeroski; Ian Sillitoe; Sayoni Das; Jonathan Gill Lees; David T Jones; Cen Wan; Domenico Cozzetto; Rui Fa; Mateo Torres; Alex Warwick Vesztrocy; Jose Manuel Rodriguez; Michael L Tress; Marco Frasca; Marco Notaro; Giuliano Grossi; Alessandro Petrini; Matteo Re; Giorgio Valentini; Marco Mesiti; Daniel B Roche; Jonas Reeb; David W Ritchie; Sabeur Aridhi; Seyed Ziaeddin Alborzi; Marie-Dominique Devignes; Da Chen Emily Koo; Richard Bonneau; Vladimir Gligorijević; Meet Barot; Hai Fang; Stefano Toppo; Enrico Lavezzo; Marco Falda; Michele Berselli; Silvio C E Tosatto; Marco Carraro; Damiano Piovesan; Hafeez Ur Rehman; Qizhong Mao; Shanshan Zhang; Slobodan Vucetic; Gage S Black; Dane Jo; Erica Suh; Jonathan B Dayton; Dallas J Larsen; Ashton R Omdahl; Liam J McGuffin; Danielle A Brackenridge; Patricia C Babbitt; Jeffrey M Yunes; Paolo Fontana; Feng Zhang; Shanfeng Zhu; Ronghui You; Zihan Zhang; Suyang Dai; Shuwei Yao; Weidong Tian; Renzhi Cao; Caleb Chandler; Miguel Amezola; Devon Johnson; Jia-Ming Chang; Wen-Hung Liao; Yi-Wei Liu; Stefano Pascarelli; Yotam Frank; Robert Hoehndorf; Maxat Kulmanov; Imane Boudellioua; Gianfranco Politano; Stefano Di Carlo; Alfredo Benso; Kai Hakala; Filip Ginter; Farrokh Mehryary; Suwisa Kaewphan; Jari Björne; Hans Moen; Martti E E Tolvanen; Tapio Salakoski; Daisuke Kihara; Aashish Jain; Tomislav Šmuc; Adrian Altenhoff; Asa Ben-Hur; Burkhard Rost; Steven E Brenner; Christine A Orengo; Constance J Jeffery; Giovanni Bosco; Deborah A Hogan; Maria J Martin; Claire O'Donovan; Sean D Mooney; Casey S Greene; Predrag Radivojac; Iddo Friedberg
Journal:  Genome Biol       Date:  2019-11-19       Impact factor: 13.583

10.  Phenotype-genotype comorbidity analysis of patients with rare disorders provides insight into their pathological and molecular bases.

Authors:  Elena Díaz-Santiago; Fernando M Jabato; Elena Rojano; Pedro Seoane; Florencio Pazos; James R Perkins; Juan A G Ranea
Journal:  PLoS Genet       Date:  2020-10-01       Impact factor: 5.917

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.